Removed invalid BGRA token from VertexAttribPointerType.

This commit is contained in:
the_fiddler 2009-11-16 15:00:24 +00:00
parent b96aaabcae
commit fa2cdee5ef
2 changed files with 7 additions and 7 deletions

View file

@ -7906,12 +7906,14 @@ GetPName enum:
# ARB_vertex_array_bgra tokens
# http://www.opengl.org/registry/specs/ARB/vertex_array_bgra.txt
# The following tokens are incorrect. They are valid for the <size>
# parameteter, not the <type> parameter - but <size> is not an enum!
# (Maybe something changed between the ARB spec and its core version?)
#ColorPointerType enum:
# BGRA = 0x80E1
ColorPointerType enum:
BGRA = 0x80E1
VertexAttribPointerType enum:
BGRA = 0x80E1
#VertexAttribPointerType enum:
# BGRA = 0x80E1
# ARB_seamless_cube_map tokens
# http://www.opengl.org/registry/specs/ARB/seamless_cube_map.txt

View file

@ -5418,7 +5418,6 @@ namespace OpenTK.Graphics.OpenGL
Float = ((int)0x1406),
Double = ((int)0x140A),
HalfFloat = ((int)0x140B),
Bgra = ((int)0x80E1),
}
public enum ColorTableParameterPName : int
@ -11928,7 +11927,6 @@ namespace OpenTK.Graphics.OpenGL
Float = ((int)0x1406),
Double = ((int)0x140A),
HalfFloat = ((int)0x140B),
Bgra = ((int)0x80E1),
}
public enum VertexAttribPointerTypeArb : int