OpenGLRaw-3.3.4.0: A raw binding for the OpenGL graphics system
Copyright(c) Sven Panne 2019
LicenseBSD3
MaintainerSven Panne <svenpanne@gmail.com>
Stabilitystable
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Graphics.GL.OES.ByteCoordinates

Description

 
Synopsis

Extension Support

glGetOESByteCoordinates :: MonadIO m => m Bool #

Is the OES_byte_coordinates extension supported?

gl_OES_byte_coordinates :: Bool #

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 #

8bit signed two's complement binary integer.

Enums

pattern GL_BYTE :: GLenum #

Functions

glMultiTexCoord1bOES #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> GLbyte

s.

-> m () 

glMultiTexCoord1bvOES #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> Ptr GLbyte

coords pointing to 1 element of type GLbyte.

-> m () 

glMultiTexCoord2bOES #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> GLbyte

s.

-> GLbyte

t.

-> m () 

glMultiTexCoord2bvOES #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> Ptr GLbyte

coords pointing to 2 elements of type GLbyte.

-> m () 

glMultiTexCoord3bOES #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> GLbyte

s.

-> GLbyte

t.

-> GLbyte

r.

-> m () 

glMultiTexCoord3bvOES #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> Ptr GLbyte

coords pointing to 3 elements of type GLbyte.

-> m () 

glMultiTexCoord4bOES #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> GLbyte

s.

-> GLbyte

t.

-> GLbyte

r.

-> GLbyte

q.

-> m () 

glMultiTexCoord4bvOES #

Arguments

:: MonadIO m 
=> GLenum

texture of type TextureUnit.

-> Ptr GLbyte

coords pointing to 4 elements of type GLbyte.

-> m () 

glTexCoord1bOES #

Arguments

:: MonadIO m 
=> GLbyte

s.

-> m () 

glTexCoord1bvOES #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 1 element of type GLbyte.

-> m () 

glTexCoord2bOES #

Arguments

:: MonadIO m 
=> GLbyte

s.

-> GLbyte

t.

-> m () 

glTexCoord2bvOES #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 2 elements of type GLbyte.

-> m () 

glTexCoord3bOES #

Arguments

:: MonadIO m 
=> GLbyte

s.

-> GLbyte

t.

-> GLbyte

r.

-> m () 

glTexCoord3bvOES #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 3 elements of type GLbyte.

-> m () 

glTexCoord4bOES #

Arguments

:: MonadIO m 
=> GLbyte

s.

-> GLbyte

t.

-> GLbyte

r.

-> GLbyte

q.

-> m () 

glTexCoord4bvOES #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 4 elements of type GLbyte.

-> m () 

glVertex2bOES #

Arguments

:: MonadIO m 
=> GLbyte

x.

-> GLbyte

y.

-> m () 

glVertex2bvOES #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 2 elements of type GLbyte.

-> m () 

glVertex3bOES #

Arguments

:: MonadIO m 
=> GLbyte

x.

-> GLbyte

y.

-> GLbyte

z.

-> m () 

glVertex3bvOES #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 3 elements of type GLbyte.

-> m () 

glVertex4bOES #

Arguments

:: MonadIO m 
=> GLbyte

x.

-> GLbyte

y.

-> GLbyte

z.

-> GLbyte

w.

-> m () 

glVertex4bvOES #

Arguments

:: MonadIO m 
=> Ptr GLbyte

coords pointing to 4 elements of type GLbyte.

-> m ()