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

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

Graphics.GL.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.