OpenGLRaw-3.2.5.0: A raw binding for the OpenGL graphics system

Copyright(c) Sven Panne 2016
LicenseBSD3
MaintainerSven Panne <svenpanne@gmail.com>
Stabilitystable
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Graphics.GL.NV.OcclusionQuery

Contents

Description

 

Synopsis

Extension Support

glGetNVOcclusionQuery :: MonadIO m => m Bool Source #

Is the NV_occlusion_query extension supported?

gl_NV_occlusion_query :: Bool Source #

Is the NV_occlusion_query extension supported? Note that in the presence of multiple contexts with different capabilities, this might be wrong. Use glGetNVOcclusionQuery in those cases instead.

Enums

Functions

glBeginOcclusionQueryNV Source #

Arguments

:: MonadIO m 
=> GLuint

id.

-> m () 

glDeleteOcclusionQueriesNV Source #

Arguments

:: MonadIO m 
=> GLsizei

n.

-> Ptr GLuint

ids pointing to n elements of type GLuint.

-> m () 

glGenOcclusionQueriesNV Source #

Arguments

:: MonadIO m 
=> GLsizei

n.

-> Ptr GLuint

ids pointing to n elements of type GLuint.

-> m () 

glGetOcclusionQueryivNV Source #

Arguments

:: MonadIO m 
=> GLuint

id.

-> GLenum

pname of type OcclusionQueryParameterNameNV.

-> Ptr GLint

params pointing to COMPSIZE(pname) elements of type GLint.

-> m () 

glGetOcclusionQueryuivNV Source #

Arguments

:: MonadIO m 
=> GLuint

id.

-> GLenum

pname of type OcclusionQueryParameterNameNV.

-> Ptr GLuint

params pointing to COMPSIZE(pname) elements of type GLuint.

-> m () 

glIsOcclusionQueryNV Source #

Arguments

:: MonadIO m 
=> GLuint

id.

-> m GLboolean

of type Boolean.