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.EXT.PalettedTexture

Contents

Description

All raw functions and tokens from the EXT_paletted_texture extension, see http://www.opengl.org/registry/specs/EXT/paletted_texture.txt.

Synopsis

Functions

glColorTable Source

Arguments

:: GLenum

target of type ColorTableTarget.

-> GLenum

internalformat of type PixelInternalFormat.

-> GLsizei

width.

-> GLenum

format of type PixelFormat.

-> GLenum

type of type PixelType.

-> Ptr a

table pointing to COMPSIZE(format,type,width) elements of type a.

-> IO () 

Manual page for OpenGL 2.x

glColorSubTable Source

Arguments

:: GLenum

target of type ColorTableTarget.

-> GLsizei

start.

-> GLsizei

count.

-> GLenum

format of type PixelFormat.

-> GLenum

type of type PixelType.

-> Ptr a

data pointing to COMPSIZE(format,type,count) elements of type a.

-> IO () 

Manual page for OpenGL 2.x

glGetColorTable Source

Arguments

:: GLenum

target of type ColorTableTarget.

-> GLenum

format of type PixelFormat.

-> GLenum

type of type PixelType.

-> Ptr a

table pointing to COMPSIZE(target,format,type) elements of type a.

-> IO () 

Manual page for OpenGL 2.x

glGetColorTableParameteriv Source

Arguments

:: GLenum

target of type ColorTableTarget.

-> GLenum

pname of type GetColorTableParameterPName.

-> Ptr GLint

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

-> IO () 

Manual page for OpenGL 2.x

glGetColorTableParameterfv Source

Arguments

:: GLenum

target of type ColorTableTarget.

-> GLenum

pname of type GetColorTableParameterPName.

-> Ptr GLfloat

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

-> IO () 

Manual page for OpenGL 2.x

Tokens