{-# LANGUAGE ForeignFunctionInterface, CPP #-} -------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.EXT.DepthBoundsTest -- Copyright : (c) Sven Panne 2013 -- License : BSD3 -- -- Maintainer : Sven Panne -- Stability : stable -- Portability : portable -- -- All raw functions and tokens from the EXT_depth_bounds_test extension, see -- . -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.EXT.DepthBoundsTest ( -- * Functions glDepthBounds, -- * Tokens gl_DEPTH_BOUNDS_TEST, gl_DEPTH_BOUNDS ) where import Foreign.C.Types import Graphics.Rendering.OpenGL.Raw.Core31.Types 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