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

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

Graphics.Rendering.OpenGL.Raw.ARB.GetProgramBinary

Contents

Description

All raw functions and tokens from the ARB_get_program_binary extension, see http://www.opengl.org/registry/specs/ARB/get_program_binary.txt.

Synopsis

Functions

glGetProgramBinary Source

Arguments

:: GLuint

program.

-> GLsizei

bufSize.

-> Ptr GLsizei

length pointing to 1 elements of type GLsizei.

-> Ptr GLenum

binaryFormat pointing to 1 elements of type GLenum.

-> Ptr a

binary pointing to bufSize elements of type a.

-> IO () 

Manual page for OpenGL 4.x

glProgramBinary Source

Arguments

:: GLuint

program.

-> GLenum

binaryFormat.

-> Ptr a

binary pointing to length elements of type a.

-> GLsizei

length.

-> IO () 

Manual page for OpenGL 4.x

glProgramParameteri Source

Arguments

:: GLuint

program.

-> GLenum

pname of type ProgramParameterPName.

-> GLint

value.

-> IO () 

Manual page for OpenGL 4.x

Tokens