OpenGLRaw-2.6.1.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.NV.TransformFeedback2

Contents

Description

 

Synopsis

Extension Support

gl_NV_transform_feedback2 :: Bool Source

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

Enums

Functions

glBindTransformFeedbackNV Source

Arguments

:: MonadIO m 
=> GLenum

target of type BufferTargetARB.

-> GLuint

id.

-> m () 

glDeleteTransformFeedbacksNV Source

Arguments

:: MonadIO m 
=> GLsizei

n.

-> Ptr GLuint

ids pointing to n elements of type GLuint.

-> m () 

This command is an alias for glDeleteTransformFeedbacks.

glDrawTransformFeedbackNV Source

Arguments

:: MonadIO m 
=> GLenum

mode of type PrimitiveType.

-> GLuint

id.

-> m () 

This command is an alias for glDrawTransformFeedback.

glGenTransformFeedbacksNV Source

Arguments

:: MonadIO m 
=> GLsizei

n.

-> Ptr GLuint

ids pointing to n elements of type GLuint.

-> m () 

This command is an alias for glGenTransformFeedbacks.

glIsTransformFeedbackNV Source

Arguments

:: MonadIO m 
=> GLuint

id.

-> m GLboolean

of type Boolean.

This command is an alias for glIsTransformFeedback.

glPauseTransformFeedbackNV :: MonadIO m => m () Source

This command is an alias for glPauseTransformFeedback.

glResumeTransformFeedbackNV :: MonadIO m => m () Source

This command is an alias for glResumeTransformFeedback.