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.FogCoord

Contents

Description

 

Synopsis

Extension Support

glGetEXTFogCoord :: MonadIO m => m Bool Source #

Is the EXT_fog_coord extension supported?

gl_EXT_fog_coord :: Bool Source #

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

Enums

Functions

glFogCoordPointerEXT Source #

Arguments

:: MonadIO m 
=> GLenum

type of type FogPointerTypeEXT.

-> GLsizei

stride.

-> Ptr a

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

-> m () 

This command is an alias for glFogCoordPointer.

glFogCoorddEXT Source #

Arguments

:: MonadIO m 
=> GLdouble

coord of type CoordD.

-> m () 

The vector equivalent of this command is glFogCoorddvEXT. This command is an alias for glFogCoordd.

glFogCoorddvEXT Source #

Arguments

:: MonadIO m 
=> Ptr GLdouble

coord pointing to 1 element of type CoordD.

-> m () 

This command is an alias for glFogCoorddv.

glFogCoordfEXT Source #

Arguments

:: MonadIO m 
=> GLfloat

coord of type CoordF.

-> m () 

The vector equivalent of this command is glFogCoordfvEXT. This command is an alias for glFogCoordf.

glFogCoordfvEXT Source #

Arguments

:: MonadIO m 
=> Ptr GLfloat

coord pointing to 1 element of type CoordF.

-> m () 

This command is an alias for glFogCoordfv.