-------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.ARB.ES3Compatibility -- Copyright : (c) Sven Panne 2013 -- License : BSD3 -- -- Maintainer : Sven Panne -- Stability : stable -- Portability : portable -- -- All raw functions, tokens and types from the ARB_ES3_compatibility extension, -- see . -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.ARB.ES3Compatibility ( -- * Tokens gl_COMPRESSED_RGB8_ETC2, gl_COMPRESSED_SRGB8_ETC2, gl_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2, gl_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2, gl_COMPRESSED_RGBA8_ETC2_EAC, gl_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC, gl_COMPRESSED_R11_EAC, gl_COMPRESSED_SIGNED_R11_EAC, gl_COMPRESSED_RG11_EAC, gl_COMPRESSED_SIGNED_RG11_EAC, gl_PRIMITIVE_RESTART_FIXED_INDEX, gl_ANY_SAMPLES_PASSED_CONSERVATIVE, gl_MAX_ELEMENT_INDEX ) where import Graphics.Rendering.OpenGL.Raw.Core31.Types gl_COMPRESSED_RGB8_ETC2 :: GLenum gl_COMPRESSED_RGB8_ETC2 = 0x9274 gl_COMPRESSED_SRGB8_ETC2 :: GLenum gl_COMPRESSED_SRGB8_ETC2 = 0x9275 gl_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 :: GLenum gl_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276 gl_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 :: GLenum gl_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277 gl_COMPRESSED_RGBA8_ETC2_EAC :: GLenum gl_COMPRESSED_RGBA8_ETC2_EAC = 0x9278 gl_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC :: GLenum gl_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279 gl_COMPRESSED_R11_EAC :: GLenum gl_COMPRESSED_R11_EAC = 0x9270 gl_COMPRESSED_SIGNED_R11_EAC :: GLenum gl_COMPRESSED_SIGNED_R11_EAC = 0x9271 gl_COMPRESSED_RG11_EAC :: GLenum gl_COMPRESSED_RG11_EAC = 0x9272 gl_COMPRESSED_SIGNED_RG11_EAC :: GLenum gl_COMPRESSED_SIGNED_RG11_EAC = 0x9273 gl_PRIMITIVE_RESTART_FIXED_INDEX :: GLenum gl_PRIMITIVE_RESTART_FIXED_INDEX = 0x8D69 gl_ANY_SAMPLES_PASSED_CONSERVATIVE :: GLenum gl_ANY_SAMPLES_PASSED_CONSERVATIVE = 0x8D6A gl_MAX_ELEMENT_INDEX :: GLenum gl_MAX_ELEMENT_INDEX = 0x8D6B