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

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

Graphics.Rendering.OpenGL.Raw.EXT.VertexArray

Contents

Description

 

Synopsis

Extension Support

glGetEXTVertexArray :: MonadIO m => m Bool Source

Is the EXT_vertex_array extension supported?

gl_EXT_vertex_array :: Bool Source

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

Enums

Functions

glArrayElementEXT Source

Arguments

:: MonadIO m 
=> GLint

i.

-> m () 

This command is an alias for glArrayElement.

glColorPointerEXT Source

Arguments

:: MonadIO m 
=> GLint

size.

-> GLenum

type of type ColorPointerType.

-> GLsizei

stride.

-> GLsizei

count.

-> Ptr a

pointer pointing to COMPSIZE(size,type,stride,count) elements of type a.

-> m () 

glDrawArraysEXT Source

Arguments

:: MonadIO m 
=> GLenum

mode of type PrimitiveType.

-> GLint

first.

-> GLsizei

count.

-> m () 

This command is an alias for glDrawArrays.

glEdgeFlagPointerEXT Source

Arguments

:: MonadIO m 
=> GLsizei

stride.

-> GLsizei

count.

-> Ptr GLboolean

pointer pointing to COMPSIZE(stride,count) elements of type Boolean.

-> m () 

glGetPointervEXT Source

Arguments

:: MonadIO m 
=> GLenum

pname of type GetPointervPName.

-> Ptr (Ptr a)

params pointing to 1 element of type Ptr a.

-> m () 

This command is an alias for glGetPointerv.

glIndexPointerEXT Source

Arguments

:: MonadIO m 
=> GLenum

type of type IndexPointerType.

-> GLsizei

stride.

-> GLsizei

count.

-> Ptr a

pointer pointing to COMPSIZE(type,stride,count) elements of type a.

-> m () 

glNormalPointerEXT Source

Arguments

:: MonadIO m 
=> GLenum

type of type NormalPointerType.

-> GLsizei

stride.

-> GLsizei

count.

-> Ptr a

pointer pointing to COMPSIZE(type,stride,count) elements of type a.

-> m () 

glTexCoordPointerEXT Source

Arguments

:: MonadIO m 
=> GLint

size.

-> GLenum

type of type TexCoordPointerType.

-> GLsizei

stride.

-> GLsizei

count.

-> Ptr a

pointer pointing to COMPSIZE(size,type,stride,count) elements of type a.

-> m () 

glVertexPointerEXT Source

Arguments

:: MonadIO m 
=> GLint

size.

-> GLenum

type of type VertexPointerType.

-> GLsizei

stride.

-> GLsizei

count.

-> Ptr a

pointer pointing to COMPSIZE(size,type,stride,count) elements of type a.

-> m ()