mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-09 13:35:27 +00:00
Removed invalid BGRA token from VertexAttribPointerType.
This commit is contained in:
parent
b96aaabcae
commit
fa2cdee5ef
|
@ -7906,12 +7906,14 @@ GetPName enum:
|
||||||
|
|
||||||
# ARB_vertex_array_bgra tokens
|
# ARB_vertex_array_bgra tokens
|
||||||
# http://www.opengl.org/registry/specs/ARB/vertex_array_bgra.txt
|
# 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:
|
#VertexAttribPointerType enum:
|
||||||
BGRA = 0x80E1
|
# BGRA = 0x80E1
|
||||||
|
|
||||||
VertexAttribPointerType enum:
|
|
||||||
BGRA = 0x80E1
|
|
||||||
|
|
||||||
# ARB_seamless_cube_map tokens
|
# ARB_seamless_cube_map tokens
|
||||||
# http://www.opengl.org/registry/specs/ARB/seamless_cube_map.txt
|
# http://www.opengl.org/registry/specs/ARB/seamless_cube_map.txt
|
||||||
|
|
|
@ -5418,7 +5418,6 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
Float = ((int)0x1406),
|
Float = ((int)0x1406),
|
||||||
Double = ((int)0x140A),
|
Double = ((int)0x140A),
|
||||||
HalfFloat = ((int)0x140B),
|
HalfFloat = ((int)0x140B),
|
||||||
Bgra = ((int)0x80E1),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum ColorTableParameterPName : int
|
public enum ColorTableParameterPName : int
|
||||||
|
@ -11928,7 +11927,6 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
Float = ((int)0x1406),
|
Float = ((int)0x1406),
|
||||||
Double = ((int)0x140A),
|
Double = ((int)0x140A),
|
||||||
HalfFloat = ((int)0x140B),
|
HalfFloat = ((int)0x140B),
|
||||||
Bgra = ((int)0x80E1),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum VertexAttribPointerTypeArb : int
|
public enum VertexAttribPointerTypeArb : int
|
||||||
|
|
Loading…
Reference in a new issue