-------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.NV.ConditionalRender -- Copyright : (c) Sven Panne 2013 -- License : BSD3 -- -- Maintainer : Sven Panne -- Stability : stable -- Portability : portable -- -- All raw functions and tokens from the NV_conditional_render extension, see -- . -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.NV.ConditionalRender ( -- * Functions glBeginConditionalRender, glEndConditionalRender, -- * Tokens gl_QUERY_WAIT, gl_QUERY_NO_WAIT, gl_QUERY_BY_REGION_WAIT, gl_QUERY_BY_REGION_NO_WAIT ) where import Graphics.Rendering.OpenGL.Raw.Core32