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.APPLE.ElementArray

Contents

Description

 

Synopsis

Extension Support

glGetAPPLEElementArray :: MonadIO m => m Bool Source #

Is the APPLE_element_array extension supported?

gl_APPLE_element_array :: Bool Source #

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

Enums

Functions

glDrawElementArrayAPPLE Source #

Arguments

:: MonadIO m 
=> GLenum

mode of type PrimitiveType.

-> GLint

first.

-> GLsizei

count.

-> m () 

glDrawRangeElementArrayAPPLE Source #

Arguments

:: MonadIO m 
=> GLenum

mode of type PrimitiveType.

-> GLuint

start.

-> GLuint

end.

-> GLint

first.

-> GLsizei

count.

-> m () 

glElementPointerAPPLE Source #

Arguments

:: MonadIO m 
=> GLenum

type of type ElementPointerTypeATI.

-> Ptr a

pointer pointing to COMPSIZE(type) elements of type a.

-> m () 

glMultiDrawElementArrayAPPLE Source #

Arguments

:: MonadIO m 
=> GLenum

mode of type PrimitiveType.

-> Ptr GLint

first pointing to primcount elements of type GLint.

-> Ptr GLsizei

count pointing to primcount elements of type GLsizei.

-> GLsizei

primcount.

-> m () 

glMultiDrawRangeElementArrayAPPLE Source #

Arguments

:: MonadIO m 
=> GLenum

mode of type PrimitiveType.

-> GLuint

start.

-> GLuint

end.

-> Ptr GLint

first pointing to primcount elements of type GLint.

-> Ptr GLsizei

count pointing to primcount elements of type GLsizei.

-> GLsizei

primcount.

-> m ()