-------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.EXT.DrawBuffers2 -- Copyright : (c) Sven Panne 2013 -- License : BSD3 -- -- Maintainer : Sven Panne -- Stability : stable -- Portability : portable -- -- All raw functions from the EXT_draw_buffers2 extension, see -- . -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.EXT.DrawBuffers2 ( -- * Functions glColorMaskIndexed, glGetBooleanIndexedv, glGetIntegerIndexedv, glEnableIndexed, glDisableIndexed, glIsEnabledIndexed ) where import Graphics.Rendering.OpenGL.Raw.Core31 import Graphics.Rendering.OpenGL.Raw.EXT.DirectStateAccess glColorMaskIndexed :: GLuint -> GLboolean -> GLboolean -> GLboolean -> GLboolean -> IO () glColorMaskIndexed = glColorMaski -- glGetBooleanIndexedv = glGetBooleani_v -- glGetIntegerIndexedv = glGetIntegeri_v -- glEnableIndexed = glEnablei -- glDisableIndexed = glDisablei -- glIsEnabledIndexed = glIsEnabledi