OpenGLRaw-3.3.4.1: 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.EXT.TransformFeedback

Description

 
Synopsis

Extension Support

gl_EXT_transform_feedback :: Bool Source #

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

Enums

Functions

glBeginTransformFeedbackEXT Source #

Arguments

:: MonadIO m 
=> GLenum

primitiveMode of type PrimitiveType.

-> m () 

This command is an alias for glBeginTransformFeedback.

glBindBufferBaseEXT Source #

Arguments

:: MonadIO m 
=> GLenum

target of type BufferTargetARB.

-> GLuint

index.

-> GLuint

buffer.

-> m () 

This command is an alias for glBindBufferBase.

glBindBufferOffsetEXT Source #

Arguments

:: MonadIO m 
=> GLenum

target of type BufferTargetARB.

-> GLuint

index.

-> GLuint

buffer.

-> GLintptr

offset of type BufferOffset.

-> m () 

glBindBufferRangeEXT Source #

Arguments

:: MonadIO m 
=> GLenum

target of type BufferTargetARB.

-> GLuint

index.

-> GLuint

buffer.

-> GLintptr

offset of type BufferOffset.

-> GLsizeiptr

size of type BufferSize.

-> m () 

This command is an alias for glBindBufferRange.

glEndTransformFeedbackEXT :: MonadIO m => m () Source #

This command is an alias for glEndTransformFeedback.

glGetTransformFeedbackVaryingEXT Source #

Arguments

:: MonadIO m 
=> GLuint

program.

-> GLuint

index.

-> GLsizei

bufSize.

-> Ptr GLsizei

length pointing to 1 element of type GLsizei.

-> Ptr GLsizei

size pointing to 1 element of type GLsizei.

-> Ptr GLenum

type pointing to 1 element of type GlslTypeToken.

-> Ptr GLchar

name pointing to bufSize elements of type GLchar.

-> m () 

This command is an alias for glGetTransformFeedbackVarying.

glTransformFeedbackVaryingsEXT Source #

Arguments

:: MonadIO m 
=> GLuint

program.

-> GLsizei

count.

-> Ptr (Ptr GLchar)

varyings pointing to count elements of type Ptr GLchar.

-> GLenum

bufferMode.

-> m () 

This command is an alias for glTransformFeedbackVaryings.