module Graphics.GL.Ext.INTEL.FramebufferCMAA (
gl_INTEL_framebuffer_CMAA
, glApplyFramebufferAttachmentCMAAINTEL
) where
import Control.Monad.IO.Class
import Data.Set
import Foreign.Ptr
import Graphics.GL.Internal.FFI
import Graphics.GL.Internal.Proc
import System.IO.Unsafe
gl_INTEL_framebuffer_CMAA :: Bool
gl_INTEL_framebuffer_CMAA = member "GL_INTEL_framebuffer_CMAA" extensions
glApplyFramebufferAttachmentCMAAINTEL :: MonadIO m => m ()
glApplyFramebufferAttachmentCMAAINTEL = ffiIOV glApplyFramebufferAttachmentCMAAINTELFunPtr
glApplyFramebufferAttachmentCMAAINTELFunPtr :: FunPtr (IO ())
glApplyFramebufferAttachmentCMAAINTELFunPtr = unsafePerformIO (getProcAddress "glApplyFramebufferAttachmentCMAAINTEL")