OpenGLRaw-3.3.0.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.EXT.TextureInteger

Contents

Description

 

Synopsis

Extension Support

glGetEXTTextureInteger :: MonadIO m => m Bool Source #

Is the EXT_texture_integer extension supported?

gl_EXT_texture_integer :: Bool Source #

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

Enums

Functions

glClearColorIiEXT Source #

Arguments

:: MonadIO m 
=> GLint

red.

-> GLint

green.

-> GLint

blue.

-> GLint

alpha.

-> m () 

glClearColorIuiEXT Source #

Arguments

:: MonadIO m 
=> GLuint

red.

-> GLuint

green.

-> GLuint

blue.

-> GLuint

alpha.

-> m () 

glGetTexParameterIivEXT Source #

Arguments

:: MonadIO m 
=> GLenum

target of type TextureTarget.

-> GLenum

pname of type GetTextureParameter.

-> Ptr GLint

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

-> m () 

This command is an alias for glGetTexParameterIiv.

glGetTexParameterIuivEXT Source #

Arguments

:: MonadIO m 
=> GLenum

target of type TextureTarget.

-> GLenum

pname of type GetTextureParameter.

-> Ptr GLuint

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

-> m () 

This command is an alias for glGetTexParameterIuiv.

glTexParameterIivEXT Source #

Arguments

:: MonadIO m 
=> GLenum

target of type TextureTarget.

-> GLenum

pname of type TextureParameterName.

-> Ptr GLint

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

-> m () 

This command is an alias for glTexParameterIiv.

glTexParameterIuivEXT Source #

Arguments

:: MonadIO m 
=> GLenum

target of type TextureTarget.

-> GLenum

pname of type TextureParameterName.

-> Ptr GLuint

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

-> m () 

This command is an alias for glTexParameterIuiv.