{-# LANGUAGE CPP, ScopedTypeVariables, PatternSynonyms #-}
module Graphics.GL.Ext.ARB.SamplerObjects (
gl_ARB_sampler_objects
, glBindSampler
, glDeleteSamplers
, glGenSamplers
, glGetSamplerParameterIiv
, glGetSamplerParameterIuiv
, glGetSamplerParameterfv
, glGetSamplerParameteriv
, glIsSampler
, glSamplerParameterIiv
, glSamplerParameterIuiv
, glSamplerParameterf
, glSamplerParameterfv
, glSamplerParameteri
, glSamplerParameteriv
, pattern GL_SAMPLER_BINDING
) where
import Data.Set
import Graphics.GL.Internal.Proc
import Graphics.GL.Internal.Shared
gl_ARB_sampler_objects :: Bool
gl_ARB_sampler_objects :: Bool
gl_ARB_sampler_objects = [Char] -> Set [Char] -> Bool
forall a. Ord a => a -> Set a -> Bool
member "GL_ARB_sampler_objects" Set [Char]
extensions
{-# NOINLINE gl_ARB_sampler_objects #-}