OpenGLRaw-2.1.0.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.VertexBufferObject

Contents

Description

Synopsis

Enums

Functions

glBindBufferARB Source

Arguments

:: GLenum

target of type BufferTargetARB.

-> GLuint

buffer.

-> IO () 

glBufferDataARB Source

Arguments

:: GLenum

target of type BufferTargetARB.

-> GLsizeiptrARB

size of type BufferSizeARB.

-> Ptr a

data pointing to size elements of type a.

-> GLenum

usage of type BufferUsageARB.

-> IO () 

glBufferSubDataARB Source

Arguments

:: GLenum

target of type BufferTargetARB.

-> GLintptrARB

offset of type BufferOffsetARB.

-> GLsizeiptrARB

size of type BufferSizeARB.

-> Ptr a

data pointing to size elements of type a.

-> IO () 

glDeleteBuffersARB Source

Arguments

:: GLsizei

n.

-> Ptr GLuint

buffers pointing to n elements of type GLuint.

-> IO () 

glGenBuffersARB Source

Arguments

:: GLsizei

n.

-> Ptr GLuint

buffers pointing to n elements of type GLuint.

-> IO () 

glGetBufferParameterivARB Source

Arguments

:: GLenum

target of type BufferTargetARB.

-> GLenum

pname of type BufferPNameARB.

-> Ptr GLint

params pointing to COMPSIZE(pname) elements of type GLint.

-> IO () 

glGetBufferPointervARB Source

Arguments

:: GLenum

target of type BufferTargetARB.

-> GLenum

pname of type BufferPointerNameARB.

-> Ptr (Ptr a)

params pointing to 1 elements of type Ptr a.

-> IO () 

glGetBufferSubDataARB Source

Arguments

:: GLenum

target of type BufferTargetARB.

-> GLintptrARB

offset of type BufferOffsetARB.

-> GLsizeiptrARB

size of type BufferSizeARB.

-> Ptr a

data pointing to size elements of type a.

-> IO () 

glIsBufferARB Source

Arguments

:: GLuint

buffer.

-> IO GLboolean

of type Boolean.

glMapBufferARB Source

Arguments

:: GLenum

target of type BufferTargetARB.

-> GLenum

access of type BufferAccessARB.

-> IO (Ptr a) 

glUnmapBufferARB Source

Arguments

:: GLenum

target of type BufferTargetARB.

-> IO GLboolean

of type Boolean.