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.OES.ByteCoordinates

Contents

Description

 

Synopsis

Extension Support

glGetOESByteCoordinates :: MonadIO m => m Bool Source #

Is the OES_byte_coordinates extension supported?

gl_OES_byte_coordinates :: Bool Source #

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

Types

type GLbyte = Int8 Source #

8bit signed two's complement binary integer.

Enums

pattern GL_BYTE :: GLenum Source #

Functions

glMultiTexCoord1bOES Source #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> GLbyte

s.

-> m () 

glMultiTexCoord1bvOES Source #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> Ptr GLbyte

coords pointing to 1 element of type GLbyte.

-> m () 

glMultiTexCoord2bOES Source #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> GLbyte

s.

-> GLbyte

t.

-> m () 

glMultiTexCoord2bvOES Source #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> Ptr GLbyte

coords pointing to 2 elements of type GLbyte.

-> m () 

glMultiTexCoord3bOES Source #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> GLbyte

s.

-> GLbyte

t.

-> GLbyte

r.

-> m () 

glMultiTexCoord3bvOES Source #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> Ptr GLbyte

coords pointing to 3 elements of type GLbyte.

-> m () 

glMultiTexCoord4bOES Source #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> GLbyte

s.

-> GLbyte

t.

-> GLbyte

r.

-> GLbyte

q.

-> m () 

glMultiTexCoord4bvOES Source #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> Ptr GLbyte

coords pointing to 4 elements of type GLbyte.

-> m () 

glTexCoord1bOES Source #

Arguments

:: MonadIO m 
=> GLbyte

s.

-> m () 

glTexCoord1bvOES Source #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 1 element of type GLbyte.

-> m () 

glTexCoord2bOES Source #

Arguments

:: MonadIO m 
=> GLbyte

s.

-> GLbyte

t.

-> m () 

glTexCoord2bvOES Source #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 2 elements of type GLbyte.

-> m () 

glTexCoord3bOES Source #

Arguments

:: MonadIO m 
=> GLbyte

s.

-> GLbyte

t.

-> GLbyte

r.

-> m () 

glTexCoord3bvOES Source #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 3 elements of type GLbyte.

-> m () 

glTexCoord4bOES Source #

Arguments

:: MonadIO m 
=> GLbyte

s.

-> GLbyte

t.

-> GLbyte

r.

-> GLbyte

q.

-> m () 

glTexCoord4bvOES Source #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 4 elements of type GLbyte.

-> m () 

glVertex2bOES Source #

Arguments

:: MonadIO m 
=> GLbyte

x.

-> GLbyte

y.

-> m () 

glVertex2bvOES Source #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 2 elements of type GLbyte.

-> m () 

glVertex3bOES Source #

Arguments

:: MonadIO m 
=> GLbyte

x.

-> GLbyte

y.

-> GLbyte

z.

-> m () 

glVertex3bvOES Source #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 3 elements of type GLbyte.

-> m () 

glVertex4bOES Source #

Arguments

:: MonadIO m 
=> GLbyte

x.

-> GLbyte

y.

-> GLbyte

z.

-> GLbyte

w.

-> m () 

glVertex4bvOES Source #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 4 elements of type GLbyte.

-> m ()