mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 02:25:34 +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
|
||||
# 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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue