-------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.NV.TexgenEmboss -- Copyright : (c) Sven Panne 2013 -- License : BSD3 -- -- Maintainer : Sven Panne -- Stability : stable -- Portability : portable -- -- All raw functions and tokens from the NV_texgen_emboss not already in the -- OpenGL 3.1 core, see -- . -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.NV.TexgenEmboss ( -- * Tokens gl_EMBOSS_MAP, gl_EMBOSS_LIGHT, gl_EMBOSS_CONSTANT ) where import Graphics.Rendering.OpenGL.Raw.Core32 gl_EMBOSS_MAP :: GLenum gl_EMBOSS_MAP = 0x855F gl_EMBOSS_LIGHT :: GLenum gl_EMBOSS_LIGHT = 0x855D gl_EMBOSS_CONSTANT :: GLenum gl_EMBOSS_CONSTANT = 0x855E