{-# LANGUAGE PatternSynonyms #-}
--------------------------------------------------------------------------------
-- |
-- Module      :  Graphics.GL.EXT.TextureFilterMinmax
-- Copyright   :  (c) Sven Panne 2016
-- License     :  BSD3
--
-- Maintainer  :  Sven Panne <svenpanne@gmail.com>
-- Stability   :  stable
-- Portability :  portable
--
--------------------------------------------------------------------------------

module Graphics.GL.EXT.TextureFilterMinmax (
  -- * Extension Support
  glGetEXTTextureFilterMinmax,
  gl_EXT_texture_filter_minmax,
  -- * Enums
  pattern GL_EFFECTIVE_RASTER_SAMPLES_EXT,
  pattern GL_MAX_RASTER_SAMPLES_EXT,
  pattern GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT,
  pattern GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT,
  pattern GL_RASTER_MULTISAMPLE_EXT,
  pattern GL_RASTER_SAMPLES_EXT,
  -- * Functions
  glRasterSamplesEXT
) where

import Graphics.GL.ExtensionPredicates
import Graphics.GL.Tokens
import Graphics.GL.Functions