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.KHR.Robustness

Contents

Description

 
Synopsis

Extension Support

glGetKHRRobustness :: MonadIO m => m Bool Source #

Is the KHR_robustness extension supported?

gl_KHR_robustness :: Bool Source #

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

Enums

Functions

glGetGraphicsResetStatus Source #

Arguments

:: MonadIO m 
=> m GLenum

of type GraphicsResetStatus.

Manual page for OpenGL 4.x.

glGetnUniformfv Source #

Arguments

:: MonadIO m 
=> GLuint

program.

-> GLint

location.

-> GLsizei

bufSize.

-> Ptr GLfloat

params pointing to bufSize elements of type GLfloat.

-> m () 

Manual page for OpenGL 4.x.

glGetnUniformiv Source #

Arguments

:: MonadIO m 
=> GLuint

program.

-> GLint

location.

-> GLsizei

bufSize.

-> Ptr GLint

params pointing to bufSize elements of type GLint.

-> m () 

Manual page for OpenGL 4.x.

glGetnUniformuiv Source #

Arguments

:: MonadIO m 
=> GLuint

program.

-> GLint

location.

-> GLsizei

bufSize.

-> Ptr GLuint

params pointing to bufSize elements of type GLuint.

-> m () 

Manual page for OpenGL 4.x.

glReadnPixels Source #

Arguments

:: MonadIO m 
=> GLint

x.

-> GLint

y.

-> GLsizei

width.

-> GLsizei

height.

-> GLenum

format of type PixelFormat.

-> GLenum

type of type PixelType.

-> GLsizei

bufSize.

-> Ptr a

data pointing to bufSize elements of type a.

-> m () 

Manual page for OpenGL 4.x.