
Enum: EXT Fog (Version14) [done!]
Posted Tuesday, 1 January, 2008 - 11:00 by Inertia inhttp://www.opengl.org/registry/specs/EXT/fog_coord.txt
The new Enums (see below) affect these functions:
old: GL.FogCoordPointer( Version14 type, XXXXX, XXXXX );
new: GL.FogCoordPointer( FogPointerType type, XXXXX, XXXXX );
The XXXXX marks unmodified parameters.
public enum FogPointerType : int
{
Float = (int) All.Float,
Double = (int) All.Double,
}
// add to Enum: FogParameter
FogCoordinateSource = ( (int) 0x8450 ),
// add to Enum: FogMode
FogCoordinate = ( (int) 0x8451 ),
FragmentDepth = ( (int) 0x8452 ),
// add to Enum: GetPName
CurrentFogCoordinate = ( (int) 0x8453 ),
FogCoordinateArrayType = ( (int) 0x8454 ),
FogCoordinateArrayStride = ( (int) 0x8455 ),
// add to Enum: GetPointervPName
FogCoordinateArrayPointer = ( (int) 0x8456 ),
// add to Enum: EnableCap
FogCoordinateArray = ( (int) 0x8457 ),
