{-# LANGUAGE ForeignFunctionInterface, CPP #-} -------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.EXT.StencilTwoSide -- 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_stencil_two_side extension, see -- . -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.EXT.StencilTwoSide ( -- * Functions glActiveStencilFace, -- * Tokens gl_STENCIL_TEST_TWO_SIDE, gl_ACTIVE_STENCIL_FACE ) where import Graphics.Rendering.OpenGL.Raw.Core32 import Graphics.Rendering.OpenGL.Raw.Extensions #include "HsOpenGLRaw.h" extensionNameString :: String extensionNameString = "GL_EXT_stencil_two_side" EXTENSION_ENTRY(glActiveStencilFace,GLenum -> IO ()) gl_STENCIL_TEST_TWO_SIDE :: GLenum gl_STENCIL_TEST_TWO_SIDE = 0x8910 gl_ACTIVE_STENCIL_FACE :: GLenum gl_ACTIVE_STENCIL_FACE = 0x8911