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

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

Graphics.Rendering.OpenGL.Raw.ARB.TransformFeedback2

Contents

Description

 

Synopsis

Extension Support

gl_ARB_transform_feedback2 :: Bool Source

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

Enums

Functions

glBindTransformFeedback Source

Arguments

:: MonadIO m 
=> GLenum

target.

-> GLuint

id.

-> m () 

Manual page for OpenGL 4.x.

glDeleteTransformFeedbacks Source

Arguments

:: MonadIO m 
=> GLsizei

n.

-> Ptr GLuint

ids pointing to n elements of type GLuint.

-> m () 

Manual page for OpenGL 4.x.

glDrawTransformFeedback Source

Arguments

:: MonadIO m 
=> GLenum

mode of type PrimitiveType.

-> GLuint

id.

-> m () 

Manual page for OpenGL 4.x.

glGenTransformFeedbacks Source

Arguments

:: MonadIO m 
=> GLsizei

n.

-> Ptr GLuint

ids pointing to n elements of type GLuint.

-> m () 

Manual page for OpenGL 4.x.

glIsTransformFeedback Source

Arguments

:: MonadIO m 
=> GLuint

id.

-> m GLboolean

of type Boolean.

Manual page for OpenGL 4.x.

glPauseTransformFeedback :: MonadIO m => m () Source

Manual page for OpenGL 4.x.

glResumeTransformFeedback :: MonadIO m => m () Source

Manual page for OpenGL 4.x.