Specific enums for Version20 feature: "GLSL Shaders".

Added MatrixMode.Color enum.
This commit is contained in:
the_fiddler 2008-01-03 12:36:24 +00:00
parent 2c680b09e3
commit 57a28a5b2b
2 changed files with 5069 additions and 5000 deletions

File diff suppressed because it is too large Load diff

View file

@ -5944,7 +5944,7 @@ CreateProgram()
CreateShader(type) CreateShader(type)
return UInt32 return UInt32
param type ShaderObjectType in value # GLenum in value param type ShaderType in value # GLenum in value
category VERSION_2_0 category VERSION_2_0
version 2.0 version 2.0
extension extension
@ -6016,7 +6016,7 @@ GetActiveAttrib(program, index, bufSize, length, size, type, name)
param bufSize SizeI in value param bufSize SizeI in value
param length SizeI out array [1] param length SizeI out array [1]
param size Int32 out array [1] param size Int32 out array [1]
param type GLenum out array [1] param type ActiveAttribType out array [1] # GLenum out array [1]
param name Char out array [] param name Char out array []
category VERSION_2_0 category VERSION_2_0
dlflags notlistable dlflags notlistable
@ -6202,7 +6202,7 @@ GetUniformiv(program, location, params)
GetVertexAttribdv(index, pname, params) GetVertexAttribdv(index, pname, params)
return void return void
param index UInt32 in value param index UInt32 in value
param pname VertexAttribPropertyARB in value param pname VertexAttribParameter in value # VertexAttribPropertyARB in value
param params Float64 out array [4] param params Float64 out array [4]
dlflags notlistable dlflags notlistable
category VERSION_2_0 category VERSION_2_0
@ -6216,7 +6216,7 @@ GetVertexAttribdv(index, pname, params)
GetVertexAttribfv(index, pname, params) GetVertexAttribfv(index, pname, params)
return void return void
param index UInt32 in value param index UInt32 in value
param pname VertexAttribPropertyARB in value param pname VertexAttribParameter in value # VertexAttribPropertyARB in value
param params Float32 out array [4] param params Float32 out array [4]
dlflags notlistable dlflags notlistable
category VERSION_2_0 category VERSION_2_0
@ -6230,7 +6230,7 @@ GetVertexAttribfv(index, pname, params)
GetVertexAttribiv(index, pname, params) GetVertexAttribiv(index, pname, params)
return void return void
param index UInt32 in value param index UInt32 in value
param pname VertexAttribPropertyARB in value param pname VertexAttribParameter in value # VertexAttribPropertyARB in value
param params Int32 out array [4] param params Int32 out array [4]
dlflags notlistable dlflags notlistable
category VERSION_2_0 category VERSION_2_0
@ -6244,7 +6244,7 @@ GetVertexAttribiv(index, pname, params)
GetVertexAttribPointerv(index, pname, pointer) GetVertexAttribPointerv(index, pname, pointer)
return void return void
param index UInt32 in value param index UInt32 in value
param pname VertexAttribPointerPropertyARB in value param pname VertexAttribPointerParameter in value # VertexAttribPointerPropertyARB in value
param pointer VoidPointer out array [1] param pointer VoidPointer out array [1]
dlflags notlistable dlflags notlistable
category VERSION_2_0 category VERSION_2_0
@ -7017,7 +7017,7 @@ VertexAttribPointer(index, size, type, normalized, stride, pointer)
return void return void
param index UInt32 in value param index UInt32 in value
param size Int32 in value param size Int32 in value
param type VertexAttribPointerTypeARB in value param type VertexAttribPointerType in value # VertexAttribPointerTypeARB in value
param normalized Boolean in value param normalized Boolean in value
param stride SizeI in value param stride SizeI in value
param pointer Void in array [COMPSIZE(size/type/stride)] retained param pointer Void in array [COMPSIZE(size/type/stride)] retained