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

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

Graphics.GL.NV.Fence

Contents

Description

 
Synopsis

Extension Support

glGetNVFence :: MonadIO m => m Bool Source #

Is the NV_fence extension supported?

gl_NV_fence :: Bool Source #

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

Enums

Functions

glDeleteFencesNV Source #

Arguments

:: MonadIO m 
=> GLsizei

n.

-> Ptr GLuint

fences pointing to n elements of type FenceNV.

-> m () 

glFinishFenceNV Source #

Arguments

:: MonadIO m 
=> GLuint

fence of type FenceNV.

-> m () 

glGenFencesNV Source #

Arguments

:: MonadIO m 
=> GLsizei

n.

-> Ptr GLuint

fences pointing to n elements of type FenceNV.

-> m () 

glGetFenceivNV Source #

Arguments

:: MonadIO m 
=> GLuint

fence of type FenceNV.

-> GLenum

pname of type FenceParameterNameNV.

-> Ptr GLint

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

-> m () 

glIsFenceNV Source #

Arguments

:: MonadIO m 
=> GLuint

fence of type FenceNV.

-> m GLboolean

of type Boolean.

glSetFenceNV Source #

Arguments

:: MonadIO m 
=> GLuint

fence of type FenceNV.

-> GLenum

condition of type FenceConditionNV.

-> m () 

glTestFenceNV Source #

Arguments

:: MonadIO m 
=> GLuint

fence of type FenceNV.

-> m GLboolean

of type Boolean.