-------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.EXT.TextureSwizzle -- Copyright : (c) Sven Panne 2009 -- License : BSD-style (see the file LICENSE) -- -- Maintainer : sven.panne@aedion.de -- Stability : stable -- Portability : portable -- -- All raw functions and tokens from the EXT_texture_swizzle extension not -- already in the OpenGL 3.1 core, see -- . -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.EXT.TextureSwizzle ( -- * Tokens gl_TEXTURE_SWIZZLE_R, gl_TEXTURE_SWIZZLE_G, gl_TEXTURE_SWIZZLE_B, gl_TEXTURE_SWIZZLE_A ) where import Graphics.Rendering.OpenGL.Raw.Core32 gl_TEXTURE_SWIZZLE_R :: GLenum gl_TEXTURE_SWIZZLE_R = 0x8E42 gl_TEXTURE_SWIZZLE_G :: GLenum gl_TEXTURE_SWIZZLE_G = 0x8E43 gl_TEXTURE_SWIZZLE_B :: GLenum gl_TEXTURE_SWIZZLE_B = 0x8E44 gl_TEXTURE_SWIZZLE_A :: GLenum gl_TEXTURE_SWIZZLE_A = 0x8E45