{-# LANGUAGE ForeignFunctionInterface, CPP #-} -------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.EXT.DepthBoundsTest -- 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_depth_bounds_test extension not -- already in the OpenGL 3.1 core, see -- . -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.EXT.DepthBoundsTest ( -- * Functions glDepthBounds, -- * Tokens gl_DEPTH_BOUNDS_TEST, gl_DEPTH_BOUNDS ) where import Graphics.Rendering.OpenGL.Raw.Core31 import Graphics.Rendering.OpenGL.Raw.Extensions #include "HsOpenGLRaw.h" extensionNameString :: String extensionNameString = "GL_EXT_depth_bounds_test" EXTENSION_ENTRY(glDepthBounds,GLclampd -> GLclampd -> IO()) gl_DEPTH_BOUNDS_TEST :: GLenum gl_DEPTH_BOUNDS_TEST = 0x8890 gl_DEPTH_BOUNDS :: GLenum gl_DEPTH_BOUNDS = 0x8891