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

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

Graphics.GL.EXT.VertexAttrib64Bit

Contents

Description

 

Synopsis

Extension Support

gl_EXT_vertex_attrib_64bit :: Bool Source #

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

Enums

Functions

glGetVertexAttribLdvEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> GLenum

pname.

-> Ptr GLdouble

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

-> m () 

This command is an alias for glGetVertexAttribLdv.

glVertexAttribL1dEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> GLdouble

x.

-> m () 

This command is an alias for glVertexAttribL1d.

glVertexAttribL1dvEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> Ptr GLdouble

v pointing to 1 element of type GLdouble.

-> m () 

This command is an alias for glVertexAttribL1dv.

glVertexAttribL2dEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> GLdouble

x.

-> GLdouble

y.

-> m () 

This command is an alias for glVertexAttribL2d.

glVertexAttribL2dvEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> Ptr GLdouble

v pointing to 2 elements of type GLdouble.

-> m () 

This command is an alias for glVertexAttribL2dv.

glVertexAttribL3dEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> GLdouble

x.

-> GLdouble

y.

-> GLdouble

z.

-> m () 

This command is an alias for glVertexAttribL3d.

glVertexAttribL3dvEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> Ptr GLdouble

v pointing to 3 elements of type GLdouble.

-> m () 

This command is an alias for glVertexAttribL3dv.

glVertexAttribL4dEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> GLdouble

x.

-> GLdouble

y.

-> GLdouble

z.

-> GLdouble

w.

-> m () 

This command is an alias for glVertexAttribL4d.

glVertexAttribL4dvEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> Ptr GLdouble

v pointing to 4 elements of type GLdouble.

-> m () 

This command is an alias for glVertexAttribL4dv.

glVertexAttribLPointerEXT Source #

Arguments

:: MonadIO m 
=> GLuint

index.

-> GLint

size.

-> GLenum

type.

-> GLsizei

stride.

-> Ptr a

pointer pointing to size elements of type a.

-> m () 

This command is an alias for glVertexAttribLPointer.