From 0f98f0e00b6d4e9656dee8a7f03958ae82c4bf13 Mon Sep 17 00:00:00 2001 From: Stefanos A Date: Thu, 7 Nov 2013 09:47:27 +0100 Subject: [PATCH] Fixed misspelled and missing enums --- Source/Bind/Specifications/GL2/overrides.xml | 19 +++++++++---------- Source/OpenTK/Graphics/ES30/ES30Enums.cs | 16 ++++++++++++++++ 2 files changed, 25 insertions(+), 10 deletions(-) diff --git a/Source/Bind/Specifications/GL2/overrides.xml b/Source/Bind/Specifications/GL2/overrides.xml index d54a058a..e6422fc3 100644 --- a/Source/Bind/Specifications/GL2/overrides.xml +++ b/Source/Bind/Specifications/GL2/overrides.xml @@ -4529,8 +4529,8 @@ - - + + @@ -5572,8 +5572,7 @@ - - + @@ -5961,8 +5960,8 @@ - - + + @@ -6007,7 +6006,7 @@ - + @@ -6015,13 +6014,13 @@ - + - + @@ -6210,7 +6209,7 @@ - + diff --git a/Source/OpenTK/Graphics/ES30/ES30Enums.cs b/Source/OpenTK/Graphics/ES30/ES30Enums.cs index 932d8c44..79129feb 100644 --- a/Source/OpenTK/Graphics/ES30/ES30Enums.cs +++ b/Source/OpenTK/Graphics/ES30/ES30Enums.cs @@ -9534,6 +9534,10 @@ namespace OpenTK.Graphics.ES30 /// BufferMapPointer = ((int)0x88BD) , /// + /// Original was GL_BUFFER_ACCESS_FLAGS = 0x911F + /// + BufferAccessFlags = ((int)0x911F) , + /// /// Original was GL_BUFFER_MAP_LENGTH = 0x9120 /// BufferMapLength = ((int)0x9120) , @@ -17202,6 +17206,14 @@ namespace OpenTK.Graphics.ES30 /// public enum GetQueryObjectParam : int { + /// + /// Original was GL_QUERY_RESULT = 0x8866 + /// + QueryResult = ((int)0x8866) , + /// + /// Original was GL_QUERY_RESULT_AVAILABLE = 0x8867 + /// + QueryResultAvailable = ((int)0x8867) , } /// @@ -21099,6 +21111,10 @@ namespace OpenTK.Graphics.ES30 /// DepthStencil = ((int)0x84F9) , /// + /// Original was GL_RED_INTEGER = 0x8D94 + /// + RedInteger = ((int)0x8D94) , + /// /// Original was GL_RGB_INTEGER = 0x8D98 /// RgbInteger = ((int)0x8D98) ,