From ac2a2f9a7091bbf23f82cbfc7157713a746aa719 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 10 Aug 2007 20:16:05 +0000 Subject: [PATCH] Improved opengl overload trimming. --- Source/Bind/Structures/Delegate.cs | 5 + Source/Bind/Structures/Function.cs | 98 +- Source/Examples/Tests/S01_Call_Performance.cs | 6 +- Source/Examples/WinForms/Cube.cs | 20 +- Source/OpenTK/OpenGL/Bindings/GL.cs | 7745 +++++----- Source/OpenTK/OpenGL/Bindings/GLEnums.cs | 11792 ++++++++-------- 6 files changed, 9852 insertions(+), 9814 deletions(-) diff --git a/Source/Bind/Structures/Delegate.cs b/Source/Bind/Structures/Delegate.cs index 44be586e..c7beb33b 100644 --- a/Source/Bind/Structures/Delegate.cs +++ b/Source/Bind/Structures/Delegate.cs @@ -22,6 +22,9 @@ namespace Bind.Structures internal static DelegateCollection Delegates; private static bool delegatesLoaded; + + #region internal static void Initialize(string glSpec, string glSpecExt) + internal static void Initialize(string glSpec, string glSpecExt) { if (!delegatesLoaded) @@ -45,6 +48,8 @@ namespace Bind.Structures } } + #endregion + #region --- Constructors --- public Delegate() diff --git a/Source/Bind/Structures/Function.cs b/Source/Bind/Structures/Function.cs index 953a83f1..c0bd1fdc 100644 --- a/Source/Bind/Structures/Function.cs +++ b/Source/Bind/Structures/Function.cs @@ -17,6 +17,9 @@ namespace Bind.Structures internal static FunctionCollection Wrappers; private static bool loaded; + + #region internal static void Initialize() + internal static void Initialize() { if (!loaded) @@ -25,26 +28,24 @@ namespace Bind.Structures loaded = true; } } + + #endregion + Regex functionsNotToTrim = new Regex(@"(Coord1|Attrib(I?)1(u?)|Stream1|Uniform2(u?))[dfis]v"); + + //Regex endings = new Regex(@"(.)+[df(u?[isb])]v?"); + private static List endings = new List( new string[] { - "fv", - "f", - "dv", - "d", - "i", - "iv", - "s", - "sv", - "b", - "bv", - "ui", - "uiv", - "us", - "usv", - "ub", - "ubv" + "fv", "f", + "dv", "d", + "i", "iv", + "s", "sv", + "b", "bv", + "ui", "uiv", + "us", "usv", + "ub", "ubv" }); #region --- Constructors --- @@ -139,45 +140,42 @@ namespace Bind.Structures // TODO: Use some regex's here, to reduce clutter. if (Settings.Compatibility != Settings.Legacy.Tao) { - string ext = Utilities.GetGL2Extension(value); - string trimmedName = value; - - // Remove extension - if (!String.IsNullOrEmpty(ext)) + TrimmedName = value; + TrimmedName = Utilities.StripGL2Extension(value); + + //if (TrimmedName.Contains("Uniform2iv")) { - trimmedName = trimmedName.Substring(0, trimmedName.Length - ext.Length); + //Console.Write("niar"); } // Remove overload - if (endings.Contains(trimmedName.Substring(trimmedName.Length - 3))) + for (int i = 3; i >= 1; i--) { - if (!trimmedName.EndsWith("v")) - TrimmedName = trimmedName.Substring(0, trimmedName.Length - 3); - else - TrimmedName = trimmedName.Substring(0, trimmedName.Length - 3) + "v"; - return; - } - - if (endings.Contains(trimmedName.Substring(trimmedName.Length - 2))) - { - if (!trimmedName.EndsWith("v")) - TrimmedName = trimmedName.Substring(0, trimmedName.Length - 2); - else - TrimmedName = trimmedName.Substring(0, trimmedName.Length - 2) + "v"; - return; - } - - if (endings.Contains(trimmedName.Substring(trimmedName.Length - 1))) - { - // An ending 's' may be either a plural form (glCallLists), which we - // do not want to change, or an actual overload (glColor3s). We assume - // (perhaps incorrectly), that an 's' preceeded be a digit indicates an - // overload. If there is no digit, we assume a plural form (no change). - if (!trimmedName.EndsWith("v")) - if (Char.IsDigit(trimmedName[trimmedName.Length - 2])) - TrimmedName = trimmedName.Substring(0, trimmedName.Length - 1); - - return; + if (endings.Contains(TrimmedName.Substring(TrimmedName.Length - i))) + { + // If there is a digit before the ending (e.g. 3fv) then we will remove + // the ending (some functions are blacklisted for CLS-Compliance). + // Otherwise, if there is no digit, but it ends with a 'v', do not remove + // the 'v' (CLS-Compliance). If no digit and it ends with a (plural) 's', + // do not remove anything (e.g. glCallLists) + // TODO: Add better handling for CLS-Compliance on ref ('v') functions. + if (Char.IsDigit(TrimmedName[TrimmedName.Length - (i + 1)])) + { + if (!functionsNotToTrim.IsMatch(Name)) + { + TrimmedName = TrimmedName.Substring(0, TrimmedName.Length - i); + } + else + { + Console.WriteLine("Function {0} blacklisted from trimming (CLS-Compliance).", Name); + } + } + else if (TrimmedName.EndsWith("v")) + { + TrimmedName = TrimmedName.Substring(0, TrimmedName.Length - i) + "v"; + } + return; + } } } } diff --git a/Source/Examples/Tests/S01_Call_Performance.cs b/Source/Examples/Tests/S01_Call_Performance.cs index 5573a0a1..ba8f036f 100644 --- a/Source/Examples/Tests/S01_Call_Performance.cs +++ b/Source/Examples/Tests/S01_Call_Performance.cs @@ -87,11 +87,11 @@ namespace Examples.Tests while (!stop) { - GL.Vertex2(0.0f, 0.0f); - GL.Vertex2v(v); + //GL.Vertex2(0.0f, 0.0f); + GL.Vertex2(v); //GL.ARB.ActiveTexture(GL.Enums.ARB_multitexture.TEXTURE0_ARB); //dummy(); - GL.ColorPointer(2, GL.Enums.ColorPointerType.FLOAT, 0, v); + //GL.ColorPointer(2, GL.Enums.ColorPointerType.FLOAT, 0, v); //glVertex2f_1(0.0f, 0.0f); //glVertex2f_2(0.0f, 0.0f); //glVertex2fv(v); diff --git a/Source/Examples/WinForms/Cube.cs b/Source/Examples/WinForms/Cube.cs index 6384ff1f..fa8970f2 100644 --- a/Source/Examples/WinForms/Cube.cs +++ b/Source/Examples/WinForms/Cube.cs @@ -165,42 +165,43 @@ namespace Examples.WinForms #endregion - #region DrawCube - public void DrawCube() + #region private void DrawCube() + + private void DrawCube() { GL.Begin(GL.Enums.BeginMode.QUADS); - GL.Color3(1, 0, 0); + GL.Color3(1.0f, 0.0f, 0.0f); GL.Vertex3(-1.0f, -1.0f, -1.0f); GL.Vertex3(-1.0f, 1.0f, -1.0f); GL.Vertex3(1.0f, 1.0f, -1.0f); GL.Vertex3(1.0f, -1.0f, -1.0f); - GL.Color3(1, 1, 0); + GL.Color3(1.0f, 1.0f, 0.0f); GL.Vertex3(-1.0f, -1.0f, -1.0f); GL.Vertex3(1.0f, -1.0f, -1.0f); GL.Vertex3(1.0f, -1.0f, 1.0f); GL.Vertex3(-1.0f, -1.0f, 1.0f); - GL.Color3(1, 0, 1); + GL.Color3(1.0f, 0.0f, 1.0f); GL.Vertex3(-1.0f, -1.0f, -1.0f); GL.Vertex3(-1.0f, -1.0f, 1.0f); GL.Vertex3(-1.0f, 1.0f, 1.0f); GL.Vertex3(-1.0f, 1.0f, -1.0f); - GL.Color3(0, 1, 0); + GL.Color3(0.0f, 1.0f, 0.0f); GL.Vertex3(-1.0f, -1.0f, 1.0f); GL.Vertex3(1.0f, -1.0f, 1.0f); GL.Vertex3(1.0f, 1.0f, 1.0f); GL.Vertex3(-1.0f, 1.0f, 1.0f); - GL.Color3(0, 0, 1); + GL.Color3(0.0f, 0.0f, 1.0f); GL.Vertex3(-1.0f, 1.0f, -1.0f); GL.Vertex3(-1.0f, 1.0f, 1.0f); GL.Vertex3(1.0f, 1.0f, 1.0f); GL.Vertex3(1.0f, 1.0f, -1.0f); - GL.Color3(0, 1, 1); + GL.Color3(0.0f, 1.0f, 1.0f); GL.Vertex3(1.0f, -1.0f, -1.0f); GL.Vertex3(1.0f, 1.0f, -1.0f); GL.Vertex3(1.0f, 1.0f, 1.0f); @@ -208,8 +209,9 @@ namespace Examples.WinForms GL.End(); } - #endregion + #endregion + #region IExample Members public void Launch() diff --git a/Source/OpenTK/OpenGL/Bindings/GL.cs b/Source/OpenTK/OpenGL/Bindings/GL.cs index b39ba52e..e8ee3ffa 100644 --- a/Source/OpenTK/OpenGL/Bindings/GL.cs +++ b/Source/OpenTK/OpenGL/Bindings/GL.cs @@ -147,14 +147,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3v(SByte* v) + unsafe void Color3(SByte* v) { unsafe { Delegates.glColor3bv((SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void Color3v(Byte* v) + unsafe void Color3(Byte* v) { { Delegates.glColor3bv((SByte*)v); @@ -163,7 +163,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color3v([In, Out] SByte[] v) + void Color3([In, Out] SByte[] v) { unsafe { @@ -175,7 +175,7 @@ namespace OpenTK.OpenGL } public static - void Color3v([In, Out] Byte[] v) + void Color3([In, Out] Byte[] v) { unsafe { @@ -188,7 +188,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color3v(ref SByte v) + void Color3(ref SByte v) { unsafe { @@ -200,7 +200,7 @@ namespace OpenTK.OpenGL } public static - void Color3v(ref Byte v) + void Color3(ref Byte v) { unsafe { @@ -219,13 +219,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3v(Double* v) + unsafe void Color3(Double* v) { unsafe { Delegates.glColor3dv((Double*)v); } } public static - void Color3v([In, Out] Double[] v) + void Color3([In, Out] Double[] v) { unsafe { @@ -237,7 +237,7 @@ namespace OpenTK.OpenGL } public static - void Color3v(ref Double v) + void Color3(ref Double v) { unsafe { @@ -256,13 +256,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3v(Single* v) + unsafe void Color3(Single* v) { unsafe { Delegates.glColor3fv((Single*)v); } } public static - void Color3v([In, Out] Single[] v) + void Color3([In, Out] Single[] v) { unsafe { @@ -274,7 +274,7 @@ namespace OpenTK.OpenGL } public static - void Color3v(ref Single v) + void Color3(ref Single v) { unsafe { @@ -293,13 +293,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3v(Int32* v) + unsafe void Color3(Int32* v) { unsafe { Delegates.glColor3iv((Int32*)v); } } public static - void Color3v([In, Out] Int32[] v) + void Color3([In, Out] Int32[] v) { unsafe { @@ -311,7 +311,7 @@ namespace OpenTK.OpenGL } public static - void Color3v(ref Int32 v) + void Color3(ref Int32 v) { unsafe { @@ -330,13 +330,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3v(Int16* v) + unsafe void Color3(Int16* v) { unsafe { Delegates.glColor3sv((Int16*)v); } } public static - void Color3v([In, Out] Int16[] v) + void Color3([In, Out] Int16[] v) { unsafe { @@ -348,7 +348,7 @@ namespace OpenTK.OpenGL } public static - void Color3v(ref Int16 v) + void Color3(ref Int16 v) { unsafe { @@ -368,14 +368,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3v(UInt32* v) + unsafe void Color3(UInt32* v) { unsafe { Delegates.glColor3uiv((UInt32*)v); } } [System.CLSCompliant(false)] public static - void Color3v([In, Out] UInt32[] v) + void Color3([In, Out] UInt32[] v) { unsafe { @@ -388,7 +388,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color3v(ref UInt32 v) + void Color3(ref UInt32 v) { unsafe { @@ -408,14 +408,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3v(UInt16* v) + unsafe void Color3(UInt16* v) { unsafe { Delegates.glColor3usv((UInt16*)v); } } [System.CLSCompliant(false)] public static - void Color3v([In, Out] UInt16[] v) + void Color3([In, Out] UInt16[] v) { unsafe { @@ -428,7 +428,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color3v(ref UInt16 v) + void Color3(ref UInt16 v) { unsafe { @@ -454,14 +454,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4v(SByte* v) + unsafe void Color4(SByte* v) { unsafe { Delegates.glColor4bv((SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void Color4v(Byte* v) + unsafe void Color4(Byte* v) { { Delegates.glColor4bv((SByte*)v); @@ -470,7 +470,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color4v([In, Out] SByte[] v) + void Color4([In, Out] SByte[] v) { unsafe { @@ -482,7 +482,7 @@ namespace OpenTK.OpenGL } public static - void Color4v([In, Out] Byte[] v) + void Color4([In, Out] Byte[] v) { unsafe { @@ -495,7 +495,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color4v(ref SByte v) + void Color4(ref SByte v) { unsafe { @@ -507,7 +507,7 @@ namespace OpenTK.OpenGL } public static - void Color4v(ref Byte v) + void Color4(ref Byte v) { unsafe { @@ -526,13 +526,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4v(Double* v) + unsafe void Color4(Double* v) { unsafe { Delegates.glColor4dv((Double*)v); } } public static - void Color4v([In, Out] Double[] v) + void Color4([In, Out] Double[] v) { unsafe { @@ -544,7 +544,7 @@ namespace OpenTK.OpenGL } public static - void Color4v(ref Double v) + void Color4(ref Double v) { unsafe { @@ -563,13 +563,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4v(Single* v) + unsafe void Color4(Single* v) { unsafe { Delegates.glColor4fv((Single*)v); } } public static - void Color4v([In, Out] Single[] v) + void Color4([In, Out] Single[] v) { unsafe { @@ -581,7 +581,7 @@ namespace OpenTK.OpenGL } public static - void Color4v(ref Single v) + void Color4(ref Single v) { unsafe { @@ -600,13 +600,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4v(Int32* v) + unsafe void Color4(Int32* v) { unsafe { Delegates.glColor4iv((Int32*)v); } } public static - void Color4v([In, Out] Int32[] v) + void Color4([In, Out] Int32[] v) { unsafe { @@ -618,7 +618,7 @@ namespace OpenTK.OpenGL } public static - void Color4v(ref Int32 v) + void Color4(ref Int32 v) { unsafe { @@ -637,13 +637,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4v(Int16* v) + unsafe void Color4(Int16* v) { unsafe { Delegates.glColor4sv((Int16*)v); } } public static - void Color4v([In, Out] Int16[] v) + void Color4([In, Out] Int16[] v) { unsafe { @@ -655,7 +655,7 @@ namespace OpenTK.OpenGL } public static - void Color4v(ref Int16 v) + void Color4(ref Int16 v) { unsafe { @@ -675,14 +675,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4v(UInt32* v) + unsafe void Color4(UInt32* v) { unsafe { Delegates.glColor4uiv((UInt32*)v); } } [System.CLSCompliant(false)] public static - void Color4v([In, Out] UInt32[] v) + void Color4([In, Out] UInt32[] v) { unsafe { @@ -695,7 +695,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color4v(ref UInt32 v) + void Color4(ref UInt32 v) { unsafe { @@ -715,14 +715,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4v(UInt16* v) + unsafe void Color4(UInt16* v) { unsafe { Delegates.glColor4usv((UInt16*)v); } } [System.CLSCompliant(false)] public static - void Color4v([In, Out] UInt16[] v) + void Color4([In, Out] UInt16[] v) { unsafe { @@ -735,7 +735,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color4v(ref UInt16 v) + void Color4(ref UInt16 v) { unsafe { @@ -928,14 +928,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Normal3v(SByte* v) + unsafe void Normal3(SByte* v) { unsafe { Delegates.glNormal3bv((SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void Normal3v(Byte* v) + unsafe void Normal3(Byte* v) { { Delegates.glNormal3bv((SByte*)v); @@ -944,7 +944,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Normal3v([In, Out] SByte[] v) + void Normal3([In, Out] SByte[] v) { unsafe { @@ -956,7 +956,7 @@ namespace OpenTK.OpenGL } public static - void Normal3v([In, Out] Byte[] v) + void Normal3([In, Out] Byte[] v) { unsafe { @@ -969,7 +969,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Normal3v(ref SByte v) + void Normal3(ref SByte v) { unsafe { @@ -981,7 +981,7 @@ namespace OpenTK.OpenGL } public static - void Normal3v(ref Byte v) + void Normal3(ref Byte v) { unsafe { @@ -1000,13 +1000,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Normal3v(Double* v) + unsafe void Normal3(Double* v) { unsafe { Delegates.glNormal3dv((Double*)v); } } public static - void Normal3v([In, Out] Double[] v) + void Normal3([In, Out] Double[] v) { unsafe { @@ -1018,7 +1018,7 @@ namespace OpenTK.OpenGL } public static - void Normal3v(ref Double v) + void Normal3(ref Double v) { unsafe { @@ -1037,13 +1037,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Normal3v(Single* v) + unsafe void Normal3(Single* v) { unsafe { Delegates.glNormal3fv((Single*)v); } } public static - void Normal3v([In, Out] Single[] v) + void Normal3([In, Out] Single[] v) { unsafe { @@ -1055,7 +1055,7 @@ namespace OpenTK.OpenGL } public static - void Normal3v(ref Single v) + void Normal3(ref Single v) { unsafe { @@ -1074,13 +1074,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Normal3v(Int32* v) + unsafe void Normal3(Int32* v) { unsafe { Delegates.glNormal3iv((Int32*)v); } } public static - void Normal3v([In, Out] Int32[] v) + void Normal3([In, Out] Int32[] v) { unsafe { @@ -1092,7 +1092,7 @@ namespace OpenTK.OpenGL } public static - void Normal3v(ref Int32 v) + void Normal3(ref Int32 v) { unsafe { @@ -1111,13 +1111,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Normal3v(Int16* v) + unsafe void Normal3(Int16* v) { unsafe { Delegates.glNormal3sv((Int16*)v); } } public static - void Normal3v([In, Out] Int16[] v) + void Normal3([In, Out] Int16[] v) { unsafe { @@ -1129,7 +1129,7 @@ namespace OpenTK.OpenGL } public static - void Normal3v(ref Int16 v) + void Normal3(ref Int16 v) { unsafe { @@ -1148,13 +1148,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos2v(Double* v) + unsafe void RasterPos2(Double* v) { unsafe { Delegates.glRasterPos2dv((Double*)v); } } public static - void RasterPos2v([In, Out] Double[] v) + void RasterPos2([In, Out] Double[] v) { unsafe { @@ -1166,7 +1166,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos2v(ref Double v) + void RasterPos2(ref Double v) { unsafe { @@ -1185,13 +1185,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos2v(Single* v) + unsafe void RasterPos2(Single* v) { unsafe { Delegates.glRasterPos2fv((Single*)v); } } public static - void RasterPos2v([In, Out] Single[] v) + void RasterPos2([In, Out] Single[] v) { unsafe { @@ -1203,7 +1203,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos2v(ref Single v) + void RasterPos2(ref Single v) { unsafe { @@ -1222,13 +1222,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos2v(Int32* v) + unsafe void RasterPos2(Int32* v) { unsafe { Delegates.glRasterPos2iv((Int32*)v); } } public static - void RasterPos2v([In, Out] Int32[] v) + void RasterPos2([In, Out] Int32[] v) { unsafe { @@ -1240,7 +1240,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos2v(ref Int32 v) + void RasterPos2(ref Int32 v) { unsafe { @@ -1259,13 +1259,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos2v(Int16* v) + unsafe void RasterPos2(Int16* v) { unsafe { Delegates.glRasterPos2sv((Int16*)v); } } public static - void RasterPos2v([In, Out] Int16[] v) + void RasterPos2([In, Out] Int16[] v) { unsafe { @@ -1277,7 +1277,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos2v(ref Int16 v) + void RasterPos2(ref Int16 v) { unsafe { @@ -1296,13 +1296,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos3v(Double* v) + unsafe void RasterPos3(Double* v) { unsafe { Delegates.glRasterPos3dv((Double*)v); } } public static - void RasterPos3v([In, Out] Double[] v) + void RasterPos3([In, Out] Double[] v) { unsafe { @@ -1314,7 +1314,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos3v(ref Double v) + void RasterPos3(ref Double v) { unsafe { @@ -1333,13 +1333,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos3v(Single* v) + unsafe void RasterPos3(Single* v) { unsafe { Delegates.glRasterPos3fv((Single*)v); } } public static - void RasterPos3v([In, Out] Single[] v) + void RasterPos3([In, Out] Single[] v) { unsafe { @@ -1351,7 +1351,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos3v(ref Single v) + void RasterPos3(ref Single v) { unsafe { @@ -1370,13 +1370,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos3v(Int32* v) + unsafe void RasterPos3(Int32* v) { unsafe { Delegates.glRasterPos3iv((Int32*)v); } } public static - void RasterPos3v([In, Out] Int32[] v) + void RasterPos3([In, Out] Int32[] v) { unsafe { @@ -1388,7 +1388,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos3v(ref Int32 v) + void RasterPos3(ref Int32 v) { unsafe { @@ -1407,13 +1407,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos3v(Int16* v) + unsafe void RasterPos3(Int16* v) { unsafe { Delegates.glRasterPos3sv((Int16*)v); } } public static - void RasterPos3v([In, Out] Int16[] v) + void RasterPos3([In, Out] Int16[] v) { unsafe { @@ -1425,7 +1425,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos3v(ref Int16 v) + void RasterPos3(ref Int16 v) { unsafe { @@ -1444,13 +1444,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos4v(Double* v) + unsafe void RasterPos4(Double* v) { unsafe { Delegates.glRasterPos4dv((Double*)v); } } public static - void RasterPos4v([In, Out] Double[] v) + void RasterPos4([In, Out] Double[] v) { unsafe { @@ -1462,7 +1462,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos4v(ref Double v) + void RasterPos4(ref Double v) { unsafe { @@ -1481,13 +1481,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos4v(Single* v) + unsafe void RasterPos4(Single* v) { unsafe { Delegates.glRasterPos4fv((Single*)v); } } public static - void RasterPos4v([In, Out] Single[] v) + void RasterPos4([In, Out] Single[] v) { unsafe { @@ -1499,7 +1499,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos4v(ref Single v) + void RasterPos4(ref Single v) { unsafe { @@ -1518,13 +1518,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos4v(Int32* v) + unsafe void RasterPos4(Int32* v) { unsafe { Delegates.glRasterPos4iv((Int32*)v); } } public static - void RasterPos4v([In, Out] Int32[] v) + void RasterPos4([In, Out] Int32[] v) { unsafe { @@ -1536,7 +1536,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos4v(ref Int32 v) + void RasterPos4(ref Int32 v) { unsafe { @@ -1555,13 +1555,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RasterPos4v(Int16* v) + unsafe void RasterPos4(Int16* v) { unsafe { Delegates.glRasterPos4sv((Int16*)v); } } public static - void RasterPos4v([In, Out] Int16[] v) + void RasterPos4([In, Out] Int16[] v) { unsafe { @@ -1573,7 +1573,7 @@ namespace OpenTK.OpenGL } public static - void RasterPos4v(ref Int16 v) + void RasterPos4(ref Int16 v) { unsafe { @@ -2012,13 +2012,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord1v(Double* v) + unsafe void TexCoord1dv(Double* v) { unsafe { Delegates.glTexCoord1dv((Double*)v); } } public static - void TexCoord1v([In, Out] Double[] v) + void TexCoord1dv([In, Out] Double[] v) { unsafe { @@ -2030,7 +2030,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1v(ref Double v) + void TexCoord1dv(ref Double v) { unsafe { @@ -2049,13 +2049,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord1v(Single* v) + unsafe void TexCoord1fv(Single* v) { unsafe { Delegates.glTexCoord1fv((Single*)v); } } public static - void TexCoord1v([In, Out] Single[] v) + void TexCoord1fv([In, Out] Single[] v) { unsafe { @@ -2067,7 +2067,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1v(ref Single v) + void TexCoord1fv(ref Single v) { unsafe { @@ -2086,13 +2086,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord1v(Int32* v) + unsafe void TexCoord1iv(Int32* v) { unsafe { Delegates.glTexCoord1iv((Int32*)v); } } public static - void TexCoord1v([In, Out] Int32[] v) + void TexCoord1iv([In, Out] Int32[] v) { unsafe { @@ -2104,7 +2104,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1v(ref Int32 v) + void TexCoord1iv(ref Int32 v) { unsafe { @@ -2123,13 +2123,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord1v(Int16* v) + unsafe void TexCoord1sv(Int16* v) { unsafe { Delegates.glTexCoord1sv((Int16*)v); } } public static - void TexCoord1v([In, Out] Int16[] v) + void TexCoord1sv([In, Out] Int16[] v) { unsafe { @@ -2141,7 +2141,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1v(ref Int16 v) + void TexCoord1sv(ref Int16 v) { unsafe { @@ -2160,13 +2160,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2v(Double* v) + unsafe void TexCoord2(Double* v) { unsafe { Delegates.glTexCoord2dv((Double*)v); } } public static - void TexCoord2v([In, Out] Double[] v) + void TexCoord2([In, Out] Double[] v) { unsafe { @@ -2178,7 +2178,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2v(ref Double v) + void TexCoord2(ref Double v) { unsafe { @@ -2197,13 +2197,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2v(Single* v) + unsafe void TexCoord2(Single* v) { unsafe { Delegates.glTexCoord2fv((Single*)v); } } public static - void TexCoord2v([In, Out] Single[] v) + void TexCoord2([In, Out] Single[] v) { unsafe { @@ -2215,7 +2215,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2v(ref Single v) + void TexCoord2(ref Single v) { unsafe { @@ -2234,13 +2234,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2v(Int32* v) + unsafe void TexCoord2(Int32* v) { unsafe { Delegates.glTexCoord2iv((Int32*)v); } } public static - void TexCoord2v([In, Out] Int32[] v) + void TexCoord2([In, Out] Int32[] v) { unsafe { @@ -2252,7 +2252,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2v(ref Int32 v) + void TexCoord2(ref Int32 v) { unsafe { @@ -2271,13 +2271,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2v(Int16* v) + unsafe void TexCoord2(Int16* v) { unsafe { Delegates.glTexCoord2sv((Int16*)v); } } public static - void TexCoord2v([In, Out] Int16[] v) + void TexCoord2([In, Out] Int16[] v) { unsafe { @@ -2289,7 +2289,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2v(ref Int16 v) + void TexCoord2(ref Int16 v) { unsafe { @@ -2308,13 +2308,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord3v(Double* v) + unsafe void TexCoord3(Double* v) { unsafe { Delegates.glTexCoord3dv((Double*)v); } } public static - void TexCoord3v([In, Out] Double[] v) + void TexCoord3([In, Out] Double[] v) { unsafe { @@ -2326,7 +2326,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord3v(ref Double v) + void TexCoord3(ref Double v) { unsafe { @@ -2345,13 +2345,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord3v(Single* v) + unsafe void TexCoord3(Single* v) { unsafe { Delegates.glTexCoord3fv((Single*)v); } } public static - void TexCoord3v([In, Out] Single[] v) + void TexCoord3([In, Out] Single[] v) { unsafe { @@ -2363,7 +2363,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord3v(ref Single v) + void TexCoord3(ref Single v) { unsafe { @@ -2382,13 +2382,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord3v(Int32* v) + unsafe void TexCoord3(Int32* v) { unsafe { Delegates.glTexCoord3iv((Int32*)v); } } public static - void TexCoord3v([In, Out] Int32[] v) + void TexCoord3([In, Out] Int32[] v) { unsafe { @@ -2400,7 +2400,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord3v(ref Int32 v) + void TexCoord3(ref Int32 v) { unsafe { @@ -2419,13 +2419,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord3v(Int16* v) + unsafe void TexCoord3(Int16* v) { unsafe { Delegates.glTexCoord3sv((Int16*)v); } } public static - void TexCoord3v([In, Out] Int16[] v) + void TexCoord3([In, Out] Int16[] v) { unsafe { @@ -2437,7 +2437,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord3v(ref Int16 v) + void TexCoord3(ref Int16 v) { unsafe { @@ -2456,13 +2456,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4v(Double* v) + unsafe void TexCoord4(Double* v) { unsafe { Delegates.glTexCoord4dv((Double*)v); } } public static - void TexCoord4v([In, Out] Double[] v) + void TexCoord4([In, Out] Double[] v) { unsafe { @@ -2474,7 +2474,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4v(ref Double v) + void TexCoord4(ref Double v) { unsafe { @@ -2493,13 +2493,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4v(Single* v) + unsafe void TexCoord4(Single* v) { unsafe { Delegates.glTexCoord4fv((Single*)v); } } public static - void TexCoord4v([In, Out] Single[] v) + void TexCoord4([In, Out] Single[] v) { unsafe { @@ -2511,7 +2511,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4v(ref Single v) + void TexCoord4(ref Single v) { unsafe { @@ -2530,13 +2530,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4v(Int32* v) + unsafe void TexCoord4(Int32* v) { unsafe { Delegates.glTexCoord4iv((Int32*)v); } } public static - void TexCoord4v([In, Out] Int32[] v) + void TexCoord4([In, Out] Int32[] v) { unsafe { @@ -2548,7 +2548,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4v(ref Int32 v) + void TexCoord4(ref Int32 v) { unsafe { @@ -2567,13 +2567,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4v(Int16* v) + unsafe void TexCoord4(Int16* v) { unsafe { Delegates.glTexCoord4sv((Int16*)v); } } public static - void TexCoord4v([In, Out] Int16[] v) + void TexCoord4([In, Out] Int16[] v) { unsafe { @@ -2585,7 +2585,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4v(ref Int16 v) + void TexCoord4(ref Int16 v) { unsafe { @@ -2604,13 +2604,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex2v(Double* v) + unsafe void Vertex2(Double* v) { unsafe { Delegates.glVertex2dv((Double*)v); } } public static - void Vertex2v([In, Out] Double[] v) + void Vertex2([In, Out] Double[] v) { unsafe { @@ -2622,7 +2622,7 @@ namespace OpenTK.OpenGL } public static - void Vertex2v(ref Double v) + void Vertex2(ref Double v) { unsafe { @@ -2641,13 +2641,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex2v(Single* v) + unsafe void Vertex2(Single* v) { unsafe { Delegates.glVertex2fv((Single*)v); } } public static - void Vertex2v([In, Out] Single[] v) + void Vertex2([In, Out] Single[] v) { unsafe { @@ -2659,7 +2659,7 @@ namespace OpenTK.OpenGL } public static - void Vertex2v(ref Single v) + void Vertex2(ref Single v) { unsafe { @@ -2678,13 +2678,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex2v(Int32* v) + unsafe void Vertex2(Int32* v) { unsafe { Delegates.glVertex2iv((Int32*)v); } } public static - void Vertex2v([In, Out] Int32[] v) + void Vertex2([In, Out] Int32[] v) { unsafe { @@ -2696,7 +2696,7 @@ namespace OpenTK.OpenGL } public static - void Vertex2v(ref Int32 v) + void Vertex2(ref Int32 v) { unsafe { @@ -2715,13 +2715,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex2v(Int16* v) + unsafe void Vertex2(Int16* v) { unsafe { Delegates.glVertex2sv((Int16*)v); } } public static - void Vertex2v([In, Out] Int16[] v) + void Vertex2([In, Out] Int16[] v) { unsafe { @@ -2733,7 +2733,7 @@ namespace OpenTK.OpenGL } public static - void Vertex2v(ref Int16 v) + void Vertex2(ref Int16 v) { unsafe { @@ -2752,13 +2752,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex3v(Double* v) + unsafe void Vertex3(Double* v) { unsafe { Delegates.glVertex3dv((Double*)v); } } public static - void Vertex3v([In, Out] Double[] v) + void Vertex3([In, Out] Double[] v) { unsafe { @@ -2770,7 +2770,7 @@ namespace OpenTK.OpenGL } public static - void Vertex3v(ref Double v) + void Vertex3(ref Double v) { unsafe { @@ -2789,13 +2789,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex3v(Single* v) + unsafe void Vertex3(Single* v) { unsafe { Delegates.glVertex3fv((Single*)v); } } public static - void Vertex3v([In, Out] Single[] v) + void Vertex3([In, Out] Single[] v) { unsafe { @@ -2807,7 +2807,7 @@ namespace OpenTK.OpenGL } public static - void Vertex3v(ref Single v) + void Vertex3(ref Single v) { unsafe { @@ -2826,13 +2826,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex3v(Int32* v) + unsafe void Vertex3(Int32* v) { unsafe { Delegates.glVertex3iv((Int32*)v); } } public static - void Vertex3v([In, Out] Int32[] v) + void Vertex3([In, Out] Int32[] v) { unsafe { @@ -2844,7 +2844,7 @@ namespace OpenTK.OpenGL } public static - void Vertex3v(ref Int32 v) + void Vertex3(ref Int32 v) { unsafe { @@ -2863,13 +2863,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex3v(Int16* v) + unsafe void Vertex3(Int16* v) { unsafe { Delegates.glVertex3sv((Int16*)v); } } public static - void Vertex3v([In, Out] Int16[] v) + void Vertex3([In, Out] Int16[] v) { unsafe { @@ -2881,7 +2881,7 @@ namespace OpenTK.OpenGL } public static - void Vertex3v(ref Int16 v) + void Vertex3(ref Int16 v) { unsafe { @@ -2900,13 +2900,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex4v(Double* v) + unsafe void Vertex4(Double* v) { unsafe { Delegates.glVertex4dv((Double*)v); } } public static - void Vertex4v([In, Out] Double[] v) + void Vertex4([In, Out] Double[] v) { unsafe { @@ -2918,7 +2918,7 @@ namespace OpenTK.OpenGL } public static - void Vertex4v(ref Double v) + void Vertex4(ref Double v) { unsafe { @@ -2937,13 +2937,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex4v(Single* v) + unsafe void Vertex4(Single* v) { unsafe { Delegates.glVertex4fv((Single*)v); } } public static - void Vertex4v([In, Out] Single[] v) + void Vertex4([In, Out] Single[] v) { unsafe { @@ -2955,7 +2955,7 @@ namespace OpenTK.OpenGL } public static - void Vertex4v(ref Single v) + void Vertex4(ref Single v) { unsafe { @@ -2974,13 +2974,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex4v(Int32* v) + unsafe void Vertex4(Int32* v) { unsafe { Delegates.glVertex4iv((Int32*)v); } } public static - void Vertex4v([In, Out] Int32[] v) + void Vertex4([In, Out] Int32[] v) { unsafe { @@ -2992,7 +2992,7 @@ namespace OpenTK.OpenGL } public static - void Vertex4v(ref Int32 v) + void Vertex4(ref Int32 v) { unsafe { @@ -3011,13 +3011,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Vertex4v(Int16* v) + unsafe void Vertex4(Int16* v) { unsafe { Delegates.glVertex4sv((Int16*)v); } } public static - void Vertex4v([In, Out] Int16[] v) + void Vertex4([In, Out] Int16[] v) { unsafe { @@ -3029,7 +3029,7 @@ namespace OpenTK.OpenGL } public static - void Vertex4v(ref Int16 v) + void Vertex4(ref Int16 v) { unsafe { @@ -4209,13 +4209,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void EvalCoord1v(Double* u) + unsafe void EvalCoord1dv(Double* u) { unsafe { Delegates.glEvalCoord1dv((Double*)u); } } public static - void EvalCoord1v([In, Out] Double[] u) + void EvalCoord1dv([In, Out] Double[] u) { unsafe { @@ -4227,7 +4227,7 @@ namespace OpenTK.OpenGL } public static - void EvalCoord1v(ref Double u) + void EvalCoord1dv(ref Double u) { unsafe { @@ -4246,13 +4246,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void EvalCoord1v(Single* u) + unsafe void EvalCoord1fv(Single* u) { unsafe { Delegates.glEvalCoord1fv((Single*)u); } } public static - void EvalCoord1v([In, Out] Single[] u) + void EvalCoord1fv([In, Out] Single[] u) { unsafe { @@ -4264,7 +4264,7 @@ namespace OpenTK.OpenGL } public static - void EvalCoord1v(ref Single u) + void EvalCoord1fv(ref Single u) { unsafe { @@ -4283,13 +4283,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void EvalCoord2v(Double* u) + unsafe void EvalCoord2(Double* u) { unsafe { Delegates.glEvalCoord2dv((Double*)u); } } public static - void EvalCoord2v([In, Out] Double[] u) + void EvalCoord2([In, Out] Double[] u) { unsafe { @@ -4301,7 +4301,7 @@ namespace OpenTK.OpenGL } public static - void EvalCoord2v(ref Double u) + void EvalCoord2(ref Double u) { unsafe { @@ -4320,13 +4320,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void EvalCoord2v(Single* u) + unsafe void EvalCoord2(Single* u) { unsafe { Delegates.glEvalCoord2fv((Single*)u); } } public static - void EvalCoord2v([In, Out] Single[] u) + void EvalCoord2([In, Out] Single[] u) { unsafe { @@ -4338,7 +4338,7 @@ namespace OpenTK.OpenGL } public static - void EvalCoord2v(ref Single u) + void EvalCoord2(ref Single u) { unsafe { @@ -6559,7 +6559,7 @@ namespace OpenTK.OpenGL } public static - void Index(Byte c) + void Indexub(Byte c) { Delegates.glIndexub((Byte)c); } @@ -7539,13 +7539,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Double* v) + unsafe void MultiTexCoord1dv(GL.Enums.VERSION_1_3 target, Double* v) { unsafe { Delegates.glMultiTexCoord1dv((GL.Enums.VERSION_1_3)target, (Double*)v); } } public static - void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, [In, Out] Double[] v) + void MultiTexCoord1dv(GL.Enums.VERSION_1_3 target, [In, Out] Double[] v) { unsafe { @@ -7557,7 +7557,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, ref Double v) + void MultiTexCoord1dv(GL.Enums.VERSION_1_3 target, ref Double v) { unsafe { @@ -7576,13 +7576,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Single* v) + unsafe void MultiTexCoord1fv(GL.Enums.VERSION_1_3 target, Single* v) { unsafe { Delegates.glMultiTexCoord1fv((GL.Enums.VERSION_1_3)target, (Single*)v); } } public static - void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, [In, Out] Single[] v) + void MultiTexCoord1fv(GL.Enums.VERSION_1_3 target, [In, Out] Single[] v) { unsafe { @@ -7594,7 +7594,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, ref Single v) + void MultiTexCoord1fv(GL.Enums.VERSION_1_3 target, ref Single v) { unsafe { @@ -7613,13 +7613,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Int32* v) + unsafe void MultiTexCoord1iv(GL.Enums.VERSION_1_3 target, Int32* v) { unsafe { Delegates.glMultiTexCoord1iv((GL.Enums.VERSION_1_3)target, (Int32*)v); } } public static - void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, [In, Out] Int32[] v) + void MultiTexCoord1iv(GL.Enums.VERSION_1_3 target, [In, Out] Int32[] v) { unsafe { @@ -7631,7 +7631,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, ref Int32 v) + void MultiTexCoord1iv(GL.Enums.VERSION_1_3 target, ref Int32 v) { unsafe { @@ -7650,13 +7650,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, Int16* v) + unsafe void MultiTexCoord1sv(GL.Enums.VERSION_1_3 target, Int16* v) { unsafe { Delegates.glMultiTexCoord1sv((GL.Enums.VERSION_1_3)target, (Int16*)v); } } public static - void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, [In, Out] Int16[] v) + void MultiTexCoord1sv(GL.Enums.VERSION_1_3 target, [In, Out] Int16[] v) { unsafe { @@ -7668,7 +7668,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1v(GL.Enums.VERSION_1_3 target, ref Int16 v) + void MultiTexCoord1sv(GL.Enums.VERSION_1_3 target, ref Int16 v) { unsafe { @@ -7687,13 +7687,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, Double* v) + unsafe void MultiTexCoord2(GL.Enums.VERSION_1_3 target, Double* v) { unsafe { Delegates.glMultiTexCoord2dv((GL.Enums.VERSION_1_3)target, (Double*)v); } } public static - void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, [In, Out] Double[] v) + void MultiTexCoord2(GL.Enums.VERSION_1_3 target, [In, Out] Double[] v) { unsafe { @@ -7705,7 +7705,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, ref Double v) + void MultiTexCoord2(GL.Enums.VERSION_1_3 target, ref Double v) { unsafe { @@ -7724,13 +7724,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, Single* v) + unsafe void MultiTexCoord2(GL.Enums.VERSION_1_3 target, Single* v) { unsafe { Delegates.glMultiTexCoord2fv((GL.Enums.VERSION_1_3)target, (Single*)v); } } public static - void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, [In, Out] Single[] v) + void MultiTexCoord2(GL.Enums.VERSION_1_3 target, [In, Out] Single[] v) { unsafe { @@ -7742,7 +7742,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, ref Single v) + void MultiTexCoord2(GL.Enums.VERSION_1_3 target, ref Single v) { unsafe { @@ -7761,13 +7761,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, Int32* v) + unsafe void MultiTexCoord2(GL.Enums.VERSION_1_3 target, Int32* v) { unsafe { Delegates.glMultiTexCoord2iv((GL.Enums.VERSION_1_3)target, (Int32*)v); } } public static - void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, [In, Out] Int32[] v) + void MultiTexCoord2(GL.Enums.VERSION_1_3 target, [In, Out] Int32[] v) { unsafe { @@ -7779,7 +7779,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, ref Int32 v) + void MultiTexCoord2(GL.Enums.VERSION_1_3 target, ref Int32 v) { unsafe { @@ -7798,13 +7798,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, Int16* v) + unsafe void MultiTexCoord2(GL.Enums.VERSION_1_3 target, Int16* v) { unsafe { Delegates.glMultiTexCoord2sv((GL.Enums.VERSION_1_3)target, (Int16*)v); } } public static - void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, [In, Out] Int16[] v) + void MultiTexCoord2(GL.Enums.VERSION_1_3 target, [In, Out] Int16[] v) { unsafe { @@ -7816,7 +7816,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2v(GL.Enums.VERSION_1_3 target, ref Int16 v) + void MultiTexCoord2(GL.Enums.VERSION_1_3 target, ref Int16 v) { unsafe { @@ -7835,13 +7835,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, Double* v) + unsafe void MultiTexCoord3(GL.Enums.VERSION_1_3 target, Double* v) { unsafe { Delegates.glMultiTexCoord3dv((GL.Enums.VERSION_1_3)target, (Double*)v); } } public static - void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, [In, Out] Double[] v) + void MultiTexCoord3(GL.Enums.VERSION_1_3 target, [In, Out] Double[] v) { unsafe { @@ -7853,7 +7853,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, ref Double v) + void MultiTexCoord3(GL.Enums.VERSION_1_3 target, ref Double v) { unsafe { @@ -7872,13 +7872,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, Single* v) + unsafe void MultiTexCoord3(GL.Enums.VERSION_1_3 target, Single* v) { unsafe { Delegates.glMultiTexCoord3fv((GL.Enums.VERSION_1_3)target, (Single*)v); } } public static - void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, [In, Out] Single[] v) + void MultiTexCoord3(GL.Enums.VERSION_1_3 target, [In, Out] Single[] v) { unsafe { @@ -7890,7 +7890,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, ref Single v) + void MultiTexCoord3(GL.Enums.VERSION_1_3 target, ref Single v) { unsafe { @@ -7909,13 +7909,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, Int32* v) + unsafe void MultiTexCoord3(GL.Enums.VERSION_1_3 target, Int32* v) { unsafe { Delegates.glMultiTexCoord3iv((GL.Enums.VERSION_1_3)target, (Int32*)v); } } public static - void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, [In, Out] Int32[] v) + void MultiTexCoord3(GL.Enums.VERSION_1_3 target, [In, Out] Int32[] v) { unsafe { @@ -7927,7 +7927,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, ref Int32 v) + void MultiTexCoord3(GL.Enums.VERSION_1_3 target, ref Int32 v) { unsafe { @@ -7946,13 +7946,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, Int16* v) + unsafe void MultiTexCoord3(GL.Enums.VERSION_1_3 target, Int16* v) { unsafe { Delegates.glMultiTexCoord3sv((GL.Enums.VERSION_1_3)target, (Int16*)v); } } public static - void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, [In, Out] Int16[] v) + void MultiTexCoord3(GL.Enums.VERSION_1_3 target, [In, Out] Int16[] v) { unsafe { @@ -7964,7 +7964,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3v(GL.Enums.VERSION_1_3 target, ref Int16 v) + void MultiTexCoord3(GL.Enums.VERSION_1_3 target, ref Int16 v) { unsafe { @@ -7983,13 +7983,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, Double* v) + unsafe void MultiTexCoord4(GL.Enums.VERSION_1_3 target, Double* v) { unsafe { Delegates.glMultiTexCoord4dv((GL.Enums.VERSION_1_3)target, (Double*)v); } } public static - void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, [In, Out] Double[] v) + void MultiTexCoord4(GL.Enums.VERSION_1_3 target, [In, Out] Double[] v) { unsafe { @@ -8001,7 +8001,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, ref Double v) + void MultiTexCoord4(GL.Enums.VERSION_1_3 target, ref Double v) { unsafe { @@ -8020,13 +8020,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, Single* v) + unsafe void MultiTexCoord4(GL.Enums.VERSION_1_3 target, Single* v) { unsafe { Delegates.glMultiTexCoord4fv((GL.Enums.VERSION_1_3)target, (Single*)v); } } public static - void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, [In, Out] Single[] v) + void MultiTexCoord4(GL.Enums.VERSION_1_3 target, [In, Out] Single[] v) { unsafe { @@ -8038,7 +8038,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, ref Single v) + void MultiTexCoord4(GL.Enums.VERSION_1_3 target, ref Single v) { unsafe { @@ -8057,13 +8057,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, Int32* v) + unsafe void MultiTexCoord4(GL.Enums.VERSION_1_3 target, Int32* v) { unsafe { Delegates.glMultiTexCoord4iv((GL.Enums.VERSION_1_3)target, (Int32*)v); } } public static - void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, [In, Out] Int32[] v) + void MultiTexCoord4(GL.Enums.VERSION_1_3 target, [In, Out] Int32[] v) { unsafe { @@ -8075,7 +8075,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, ref Int32 v) + void MultiTexCoord4(GL.Enums.VERSION_1_3 target, ref Int32 v) { unsafe { @@ -8094,13 +8094,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, Int16* v) + unsafe void MultiTexCoord4(GL.Enums.VERSION_1_3 target, Int16* v) { unsafe { Delegates.glMultiTexCoord4sv((GL.Enums.VERSION_1_3)target, (Int16*)v); } } public static - void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, [In, Out] Int16[] v) + void MultiTexCoord4(GL.Enums.VERSION_1_3 target, [In, Out] Int16[] v) { unsafe { @@ -8112,7 +8112,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4v(GL.Enums.VERSION_1_3 target, ref Int16 v) + void MultiTexCoord4(GL.Enums.VERSION_1_3 target, ref Int16 v) { unsafe { @@ -8807,14 +8807,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(SByte* v) + unsafe void SecondaryColor3(SByte* v) { unsafe { Delegates.glSecondaryColor3bv((SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Byte* v) + unsafe void SecondaryColor3(Byte* v) { { Delegates.glSecondaryColor3bv((SByte*)v); @@ -8823,7 +8823,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3v([In, Out] SByte[] v) + void SecondaryColor3([In, Out] SByte[] v) { unsafe { @@ -8835,7 +8835,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v([In, Out] Byte[] v) + void SecondaryColor3([In, Out] Byte[] v) { unsafe { @@ -8848,7 +8848,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3v(ref SByte v) + void SecondaryColor3(ref SByte v) { unsafe { @@ -8860,7 +8860,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Byte v) + void SecondaryColor3(ref Byte v) { unsafe { @@ -8879,13 +8879,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Double* v) + unsafe void SecondaryColor3(Double* v) { unsafe { Delegates.glSecondaryColor3dv((Double*)v); } } public static - void SecondaryColor3v([In, Out] Double[] v) + void SecondaryColor3([In, Out] Double[] v) { unsafe { @@ -8897,7 +8897,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Double v) + void SecondaryColor3(ref Double v) { unsafe { @@ -8916,13 +8916,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Single* v) + unsafe void SecondaryColor3(Single* v) { unsafe { Delegates.glSecondaryColor3fv((Single*)v); } } public static - void SecondaryColor3v([In, Out] Single[] v) + void SecondaryColor3([In, Out] Single[] v) { unsafe { @@ -8934,7 +8934,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Single v) + void SecondaryColor3(ref Single v) { unsafe { @@ -8953,13 +8953,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Int32* v) + unsafe void SecondaryColor3(Int32* v) { unsafe { Delegates.glSecondaryColor3iv((Int32*)v); } } public static - void SecondaryColor3v([In, Out] Int32[] v) + void SecondaryColor3([In, Out] Int32[] v) { unsafe { @@ -8971,7 +8971,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Int32 v) + void SecondaryColor3(ref Int32 v) { unsafe { @@ -8990,13 +8990,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Int16* v) + unsafe void SecondaryColor3(Int16* v) { unsafe { Delegates.glSecondaryColor3sv((Int16*)v); } } public static - void SecondaryColor3v([In, Out] Int16[] v) + void SecondaryColor3([In, Out] Int16[] v) { unsafe { @@ -9008,7 +9008,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Int16 v) + void SecondaryColor3(ref Int16 v) { unsafe { @@ -9028,14 +9028,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(UInt32* v) + unsafe void SecondaryColor3(UInt32* v) { unsafe { Delegates.glSecondaryColor3uiv((UInt32*)v); } } [System.CLSCompliant(false)] public static - void SecondaryColor3v([In, Out] UInt32[] v) + void SecondaryColor3([In, Out] UInt32[] v) { unsafe { @@ -9048,7 +9048,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3v(ref UInt32 v) + void SecondaryColor3(ref UInt32 v) { unsafe { @@ -9068,14 +9068,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(UInt16* v) + unsafe void SecondaryColor3(UInt16* v) { unsafe { Delegates.glSecondaryColor3usv((UInt16*)v); } } [System.CLSCompliant(false)] public static - void SecondaryColor3v([In, Out] UInt16[] v) + void SecondaryColor3([In, Out] UInt16[] v) { unsafe { @@ -9088,7 +9088,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3v(ref UInt16 v) + void SecondaryColor3(ref UInt16 v) { unsafe { @@ -9131,13 +9131,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Double* v) + unsafe void WindowPos2(Double* v) { unsafe { Delegates.glWindowPos2dv((Double*)v); } } public static - void WindowPos2v([In, Out] Double[] v) + void WindowPos2([In, Out] Double[] v) { unsafe { @@ -9149,7 +9149,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Double v) + void WindowPos2(ref Double v) { unsafe { @@ -9168,13 +9168,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Single* v) + unsafe void WindowPos2(Single* v) { unsafe { Delegates.glWindowPos2fv((Single*)v); } } public static - void WindowPos2v([In, Out] Single[] v) + void WindowPos2([In, Out] Single[] v) { unsafe { @@ -9186,7 +9186,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Single v) + void WindowPos2(ref Single v) { unsafe { @@ -9205,13 +9205,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Int32* v) + unsafe void WindowPos2(Int32* v) { unsafe { Delegates.glWindowPos2iv((Int32*)v); } } public static - void WindowPos2v([In, Out] Int32[] v) + void WindowPos2([In, Out] Int32[] v) { unsafe { @@ -9223,7 +9223,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Int32 v) + void WindowPos2(ref Int32 v) { unsafe { @@ -9242,13 +9242,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Int16* v) + unsafe void WindowPos2(Int16* v) { unsafe { Delegates.glWindowPos2sv((Int16*)v); } } public static - void WindowPos2v([In, Out] Int16[] v) + void WindowPos2([In, Out] Int16[] v) { unsafe { @@ -9260,7 +9260,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Int16 v) + void WindowPos2(ref Int16 v) { unsafe { @@ -9279,13 +9279,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Double* v) + unsafe void WindowPos3(Double* v) { unsafe { Delegates.glWindowPos3dv((Double*)v); } } public static - void WindowPos3v([In, Out] Double[] v) + void WindowPos3([In, Out] Double[] v) { unsafe { @@ -9297,7 +9297,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Double v) + void WindowPos3(ref Double v) { unsafe { @@ -9316,13 +9316,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Single* v) + unsafe void WindowPos3(Single* v) { unsafe { Delegates.glWindowPos3fv((Single*)v); } } public static - void WindowPos3v([In, Out] Single[] v) + void WindowPos3([In, Out] Single[] v) { unsafe { @@ -9334,7 +9334,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Single v) + void WindowPos3(ref Single v) { unsafe { @@ -9353,13 +9353,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Int32* v) + unsafe void WindowPos3(Int32* v) { unsafe { Delegates.glWindowPos3iv((Int32*)v); } } public static - void WindowPos3v([In, Out] Int32[] v) + void WindowPos3([In, Out] Int32[] v) { unsafe { @@ -9371,7 +9371,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Int32 v) + void WindowPos3(ref Int32 v) { unsafe { @@ -9390,13 +9390,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Int16* v) + unsafe void WindowPos3(Int16* v) { unsafe { Delegates.glWindowPos3sv((Int16*)v); } } public static - void WindowPos3v([In, Out] Int16[] v) + void WindowPos3([In, Out] Int16[] v) { unsafe { @@ -9408,7 +9408,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Int16 v) + void WindowPos3(ref Int16 v) { unsafe { @@ -13113,13 +13113,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform1v(Int32 location, Int32 count, Single* value) + unsafe void Uniform1(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform1v(Int32 location, Int32 count, [In, Out] Single[] value) + void Uniform1(Int32 location, Int32 count, [In, Out] Single[] value) { unsafe { @@ -13131,7 +13131,7 @@ namespace OpenTK.OpenGL } public static - void Uniform1v(Int32 location, Int32 count, ref Single value) + void Uniform1(Int32 location, Int32 count, ref Single value) { unsafe { @@ -13144,13 +13144,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2v(Int32 location, Int32 count, Single* value) + unsafe void Uniform2fv(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform2v(Int32 location, Int32 count, [In, Out] Single[] value) + void Uniform2fv(Int32 location, Int32 count, [In, Out] Single[] value) { unsafe { @@ -13162,7 +13162,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2v(Int32 location, Int32 count, ref Single value) + void Uniform2fv(Int32 location, Int32 count, ref Single value) { unsafe { @@ -13175,13 +13175,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform3v(Int32 location, Int32 count, Single* value) + unsafe void Uniform3(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform3v(Int32 location, Int32 count, [In, Out] Single[] value) + void Uniform3(Int32 location, Int32 count, [In, Out] Single[] value) { unsafe { @@ -13193,7 +13193,7 @@ namespace OpenTK.OpenGL } public static - void Uniform3v(Int32 location, Int32 count, ref Single value) + void Uniform3(Int32 location, Int32 count, ref Single value) { unsafe { @@ -13206,13 +13206,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform4v(Int32 location, Int32 count, Single* value) + unsafe void Uniform4(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform4v(Int32 location, Int32 count, [In, Out] Single[] value) + void Uniform4(Int32 location, Int32 count, [In, Out] Single[] value) { unsafe { @@ -13224,7 +13224,7 @@ namespace OpenTK.OpenGL } public static - void Uniform4v(Int32 location, Int32 count, ref Single value) + void Uniform4(Int32 location, Int32 count, ref Single value) { unsafe { @@ -13237,13 +13237,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform1v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform1(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform1v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform1(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -13255,7 +13255,7 @@ namespace OpenTK.OpenGL } public static - void Uniform1v(Int32 location, Int32 count, ref Int32 value) + void Uniform1(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -13268,13 +13268,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform2iv(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform2v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform2iv(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -13286,7 +13286,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2v(Int32 location, Int32 count, ref Int32 value) + void Uniform2iv(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -13299,13 +13299,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform3v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform3(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform3v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform3(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -13317,7 +13317,7 @@ namespace OpenTK.OpenGL } public static - void Uniform3v(Int32 location, Int32 count, ref Int32 value) + void Uniform3(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -13330,13 +13330,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform4v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform4(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform4v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform4(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -13348,7 +13348,7 @@ namespace OpenTK.OpenGL } public static - void Uniform4v(Int32 location, Int32 count, ref Int32 value) + void Uniform4(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -13361,21 +13361,21 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void UniformMatrix2v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix2(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void UniformMatrix3v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix3(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void UniformMatrix4v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix4(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } @@ -13408,14 +13408,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(UInt32 index, Double* v) + unsafe void VertexAttrib1dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib1dv((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(Int32 index, Double* v) + unsafe void VertexAttrib1dv(Int32 index, Double* v) { { Delegates.glVertexAttrib1dv((UInt32)index, (Double*)v); @@ -13424,7 +13424,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib1dv(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -13436,7 +13436,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, [In, Out] Double[] v) + void VertexAttrib1dv(Int32 index, [In, Out] Double[] v) { unsafe { @@ -13449,7 +13449,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, ref Double v) + void VertexAttrib1dv(UInt32 index, ref Double v) { unsafe { @@ -13461,7 +13461,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, ref Double v) + void VertexAttrib1dv(Int32 index, ref Double v) { unsafe { @@ -13487,14 +13487,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(UInt32 index, Single* v) + unsafe void VertexAttrib1fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(Int32 index, Single* v) + unsafe void VertexAttrib1fv(Int32 index, Single* v) { { Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); @@ -13503,7 +13503,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib1fv(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -13515,7 +13515,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, [In, Out] Single[] v) + void VertexAttrib1fv(Int32 index, [In, Out] Single[] v) { unsafe { @@ -13528,7 +13528,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, ref Single v) + void VertexAttrib1fv(UInt32 index, ref Single v) { unsafe { @@ -13540,7 +13540,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, ref Single v) + void VertexAttrib1fv(Int32 index, ref Single v) { unsafe { @@ -13566,14 +13566,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(UInt32 index, Int16* v) + unsafe void VertexAttrib1sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib1sv((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(Int32 index, Int16* v) + unsafe void VertexAttrib1sv(Int32 index, Int16* v) { { Delegates.glVertexAttrib1sv((UInt32)index, (Int16*)v); @@ -13582,7 +13582,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib1sv(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -13594,7 +13594,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib1sv(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -13607,7 +13607,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, ref Int16 v) + void VertexAttrib1sv(UInt32 index, ref Int16 v) { unsafe { @@ -13619,7 +13619,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, ref Int16 v) + void VertexAttrib1sv(Int32 index, ref Int16 v) { unsafe { @@ -13645,14 +13645,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(UInt32 index, Double* v) + unsafe void VertexAttrib2(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(Int32 index, Double* v) + unsafe void VertexAttrib2(Int32 index, Double* v) { { Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v); @@ -13661,7 +13661,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib2(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -13673,7 +13673,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, [In, Out] Double[] v) + void VertexAttrib2(Int32 index, [In, Out] Double[] v) { unsafe { @@ -13686,7 +13686,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, ref Double v) + void VertexAttrib2(UInt32 index, ref Double v) { unsafe { @@ -13698,7 +13698,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, ref Double v) + void VertexAttrib2(Int32 index, ref Double v) { unsafe { @@ -13724,14 +13724,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(UInt32 index, Single* v) + unsafe void VertexAttrib2(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(Int32 index, Single* v) + unsafe void VertexAttrib2(Int32 index, Single* v) { { Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); @@ -13740,7 +13740,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib2(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -13752,7 +13752,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, [In, Out] Single[] v) + void VertexAttrib2(Int32 index, [In, Out] Single[] v) { unsafe { @@ -13765,7 +13765,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, ref Single v) + void VertexAttrib2(UInt32 index, ref Single v) { unsafe { @@ -13777,7 +13777,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, ref Single v) + void VertexAttrib2(Int32 index, ref Single v) { unsafe { @@ -13803,14 +13803,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(UInt32 index, Int16* v) + unsafe void VertexAttrib2(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(Int32 index, Int16* v) + unsafe void VertexAttrib2(Int32 index, Int16* v) { { Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v); @@ -13819,7 +13819,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib2(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -13831,7 +13831,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib2(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -13844,7 +13844,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, ref Int16 v) + void VertexAttrib2(UInt32 index, ref Int16 v) { unsafe { @@ -13856,7 +13856,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, ref Int16 v) + void VertexAttrib2(Int32 index, ref Int16 v) { unsafe { @@ -13882,14 +13882,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(UInt32 index, Double* v) + unsafe void VertexAttrib3(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(Int32 index, Double* v) + unsafe void VertexAttrib3(Int32 index, Double* v) { { Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v); @@ -13898,7 +13898,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib3(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -13910,7 +13910,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, [In, Out] Double[] v) + void VertexAttrib3(Int32 index, [In, Out] Double[] v) { unsafe { @@ -13923,7 +13923,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, ref Double v) + void VertexAttrib3(UInt32 index, ref Double v) { unsafe { @@ -13935,7 +13935,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, ref Double v) + void VertexAttrib3(Int32 index, ref Double v) { unsafe { @@ -13961,14 +13961,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(UInt32 index, Single* v) + unsafe void VertexAttrib3(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(Int32 index, Single* v) + unsafe void VertexAttrib3(Int32 index, Single* v) { { Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); @@ -13977,7 +13977,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib3(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -13989,7 +13989,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, [In, Out] Single[] v) + void VertexAttrib3(Int32 index, [In, Out] Single[] v) { unsafe { @@ -14002,7 +14002,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, ref Single v) + void VertexAttrib3(UInt32 index, ref Single v) { unsafe { @@ -14014,7 +14014,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, ref Single v) + void VertexAttrib3(Int32 index, ref Single v) { unsafe { @@ -14040,14 +14040,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(UInt32 index, Int16* v) + unsafe void VertexAttrib3(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(Int32 index, Int16* v) + unsafe void VertexAttrib3(Int32 index, Int16* v) { { Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v); @@ -14056,7 +14056,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib3(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -14068,7 +14068,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib3(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -14081,7 +14081,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, ref Int16 v) + void VertexAttrib3(UInt32 index, ref Int16 v) { unsafe { @@ -14093,7 +14093,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, ref Int16 v) + void VertexAttrib3(Int32 index, ref Int16 v) { unsafe { @@ -14304,13 +14304,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) + void VertexAttrib4Nub(UInt32 index, Byte x, Byte y, Byte z, Byte w) { Delegates.glVertexAttrib4Nub((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); } public static - void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) + void VertexAttrib4Nub(Int32 index, Byte x, Byte y, Byte z, Byte w) { Delegates.glVertexAttrib4Nub((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); } @@ -14416,14 +14416,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, SByte* v) + unsafe void VertexAttrib4(UInt32 index, SByte* v) { unsafe { Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Byte* v) + unsafe void VertexAttrib4(Int32 index, Byte* v) { { Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v); @@ -14432,7 +14432,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] SByte[] v) + void VertexAttrib4(UInt32 index, [In, Out] SByte[] v) { unsafe { @@ -14444,7 +14444,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Byte[] v) + void VertexAttrib4(Int32 index, [In, Out] Byte[] v) { unsafe { @@ -14457,7 +14457,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref SByte v) + void VertexAttrib4(UInt32 index, ref SByte v) { unsafe { @@ -14469,7 +14469,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Byte v) + void VertexAttrib4(Int32 index, ref Byte v) { unsafe { @@ -14495,14 +14495,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Double* v) + unsafe void VertexAttrib4(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Double* v) + unsafe void VertexAttrib4(Int32 index, Double* v) { { Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v); @@ -14511,7 +14511,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib4(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -14523,7 +14523,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Double[] v) + void VertexAttrib4(Int32 index, [In, Out] Double[] v) { unsafe { @@ -14536,7 +14536,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Double v) + void VertexAttrib4(UInt32 index, ref Double v) { unsafe { @@ -14548,7 +14548,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Double v) + void VertexAttrib4(Int32 index, ref Double v) { unsafe { @@ -14574,14 +14574,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Single* v) + unsafe void VertexAttrib4(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Single* v) + unsafe void VertexAttrib4(Int32 index, Single* v) { { Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); @@ -14590,7 +14590,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib4(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -14602,7 +14602,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Single[] v) + void VertexAttrib4(Int32 index, [In, Out] Single[] v) { unsafe { @@ -14615,7 +14615,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Single v) + void VertexAttrib4(UInt32 index, ref Single v) { unsafe { @@ -14627,7 +14627,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Single v) + void VertexAttrib4(Int32 index, ref Single v) { unsafe { @@ -14640,14 +14640,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Int32* v) + unsafe void VertexAttrib4(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Int32* v) + unsafe void VertexAttrib4(Int32 index, Int32* v) { { Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v); @@ -14656,7 +14656,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Int32[] v) + void VertexAttrib4(UInt32 index, [In, Out] Int32[] v) { unsafe { @@ -14668,7 +14668,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Int32[] v) + void VertexAttrib4(Int32 index, [In, Out] Int32[] v) { unsafe { @@ -14681,7 +14681,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Int32 v) + void VertexAttrib4(UInt32 index, ref Int32 v) { unsafe { @@ -14693,7 +14693,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Int32 v) + void VertexAttrib4(Int32 index, ref Int32 v) { unsafe { @@ -14719,14 +14719,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Int16* v) + unsafe void VertexAttrib4(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Int16* v) + unsafe void VertexAttrib4(Int32 index, Int16* v) { { Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v); @@ -14735,7 +14735,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib4(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -14747,7 +14747,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib4(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -14760,7 +14760,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Int16 v) + void VertexAttrib4(UInt32 index, ref Int16 v) { unsafe { @@ -14772,7 +14772,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Int16 v) + void VertexAttrib4(Int32 index, ref Int16 v) { unsafe { @@ -14785,14 +14785,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Byte* v) + unsafe void VertexAttrib4(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Byte[] v) + void VertexAttrib4(UInt32 index, [In, Out] Byte[] v) { unsafe { @@ -14805,7 +14805,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Byte v) + void VertexAttrib4(UInt32 index, ref Byte v) { unsafe { @@ -14818,14 +14818,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, UInt32* v) + unsafe void VertexAttrib4(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttrib4uiv((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] UInt32[] v) + void VertexAttrib4(UInt32 index, [In, Out] UInt32[] v) { unsafe { @@ -14838,7 +14838,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref UInt32 v) + void VertexAttrib4(UInt32 index, ref UInt32 v) { unsafe { @@ -14851,14 +14851,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, UInt16* v) + unsafe void VertexAttrib4(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib4usv((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] UInt16[] v) + void VertexAttrib4(UInt32 index, [In, Out] UInt16[] v) { unsafe { @@ -14871,7 +14871,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref UInt16 v) + void VertexAttrib4(UInt32 index, ref UInt16 v) { unsafe { @@ -14900,42 +14900,42 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void UniformMatrix2x3v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix2x3(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void UniformMatrix3x2v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix3x2(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void UniformMatrix2x4v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix2x4(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void UniformMatrix4x2v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix4x2(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void UniformMatrix3x4v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix3x4(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void UniformMatrix4x3v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix4x3(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } @@ -15052,13 +15052,13 @@ namespace OpenTK.OpenGL public static class ARB { public static - void ActiveTextureARB(GL.Enums.ARB_multitexture texture) + void ActiveTexture(GL.Enums.ARB_multitexture texture) { Delegates.glActiveTextureARB((GL.Enums.ARB_multitexture)texture); } public static - void ClientActiveTextureARB(GL.Enums.ARB_multitexture texture) + void ClientActiveTexture(GL.Enums.ARB_multitexture texture) { Delegates.glClientActiveTextureARB((GL.Enums.ARB_multitexture)texture); } @@ -15071,13 +15071,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Double* v) + unsafe void MultiTexCoord1dv(GL.Enums.ARB_multitexture target, Double* v) { unsafe { Delegates.glMultiTexCoord1dvARB((GL.Enums.ARB_multitexture)target, (Double*)v); } } public static - void MultiTexCoord1v(GL.Enums.ARB_multitexture target, [In, Out] Double[] v) + void MultiTexCoord1dv(GL.Enums.ARB_multitexture target, [In, Out] Double[] v) { unsafe { @@ -15089,7 +15089,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1v(GL.Enums.ARB_multitexture target, ref Double v) + void MultiTexCoord1dv(GL.Enums.ARB_multitexture target, ref Double v) { unsafe { @@ -15108,13 +15108,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Single* v) + unsafe void MultiTexCoord1fv(GL.Enums.ARB_multitexture target, Single* v) { unsafe { Delegates.glMultiTexCoord1fvARB((GL.Enums.ARB_multitexture)target, (Single*)v); } } public static - void MultiTexCoord1v(GL.Enums.ARB_multitexture target, [In, Out] Single[] v) + void MultiTexCoord1fv(GL.Enums.ARB_multitexture target, [In, Out] Single[] v) { unsafe { @@ -15126,7 +15126,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1v(GL.Enums.ARB_multitexture target, ref Single v) + void MultiTexCoord1fv(GL.Enums.ARB_multitexture target, ref Single v) { unsafe { @@ -15145,13 +15145,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Int32* v) + unsafe void MultiTexCoord1iv(GL.Enums.ARB_multitexture target, Int32* v) { unsafe { Delegates.glMultiTexCoord1ivARB((GL.Enums.ARB_multitexture)target, (Int32*)v); } } public static - void MultiTexCoord1v(GL.Enums.ARB_multitexture target, [In, Out] Int32[] v) + void MultiTexCoord1iv(GL.Enums.ARB_multitexture target, [In, Out] Int32[] v) { unsafe { @@ -15163,7 +15163,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1v(GL.Enums.ARB_multitexture target, ref Int32 v) + void MultiTexCoord1iv(GL.Enums.ARB_multitexture target, ref Int32 v) { unsafe { @@ -15182,13 +15182,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1v(GL.Enums.ARB_multitexture target, Int16* v) + unsafe void MultiTexCoord1sv(GL.Enums.ARB_multitexture target, Int16* v) { unsafe { Delegates.glMultiTexCoord1svARB((GL.Enums.ARB_multitexture)target, (Int16*)v); } } public static - void MultiTexCoord1v(GL.Enums.ARB_multitexture target, [In, Out] Int16[] v) + void MultiTexCoord1sv(GL.Enums.ARB_multitexture target, [In, Out] Int16[] v) { unsafe { @@ -15200,7 +15200,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1v(GL.Enums.ARB_multitexture target, ref Int16 v) + void MultiTexCoord1sv(GL.Enums.ARB_multitexture target, ref Int16 v) { unsafe { @@ -15219,13 +15219,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2v(GL.Enums.ARB_multitexture target, Double* v) + unsafe void MultiTexCoord2(GL.Enums.ARB_multitexture target, Double* v) { unsafe { Delegates.glMultiTexCoord2dvARB((GL.Enums.ARB_multitexture)target, (Double*)v); } } public static - void MultiTexCoord2v(GL.Enums.ARB_multitexture target, [In, Out] Double[] v) + void MultiTexCoord2(GL.Enums.ARB_multitexture target, [In, Out] Double[] v) { unsafe { @@ -15237,7 +15237,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2v(GL.Enums.ARB_multitexture target, ref Double v) + void MultiTexCoord2(GL.Enums.ARB_multitexture target, ref Double v) { unsafe { @@ -15256,13 +15256,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2v(GL.Enums.ARB_multitexture target, Single* v) + unsafe void MultiTexCoord2(GL.Enums.ARB_multitexture target, Single* v) { unsafe { Delegates.glMultiTexCoord2fvARB((GL.Enums.ARB_multitexture)target, (Single*)v); } } public static - void MultiTexCoord2v(GL.Enums.ARB_multitexture target, [In, Out] Single[] v) + void MultiTexCoord2(GL.Enums.ARB_multitexture target, [In, Out] Single[] v) { unsafe { @@ -15274,7 +15274,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2v(GL.Enums.ARB_multitexture target, ref Single v) + void MultiTexCoord2(GL.Enums.ARB_multitexture target, ref Single v) { unsafe { @@ -15293,13 +15293,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2v(GL.Enums.ARB_multitexture target, Int32* v) + unsafe void MultiTexCoord2(GL.Enums.ARB_multitexture target, Int32* v) { unsafe { Delegates.glMultiTexCoord2ivARB((GL.Enums.ARB_multitexture)target, (Int32*)v); } } public static - void MultiTexCoord2v(GL.Enums.ARB_multitexture target, [In, Out] Int32[] v) + void MultiTexCoord2(GL.Enums.ARB_multitexture target, [In, Out] Int32[] v) { unsafe { @@ -15311,7 +15311,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2v(GL.Enums.ARB_multitexture target, ref Int32 v) + void MultiTexCoord2(GL.Enums.ARB_multitexture target, ref Int32 v) { unsafe { @@ -15330,13 +15330,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2v(GL.Enums.ARB_multitexture target, Int16* v) + unsafe void MultiTexCoord2(GL.Enums.ARB_multitexture target, Int16* v) { unsafe { Delegates.glMultiTexCoord2svARB((GL.Enums.ARB_multitexture)target, (Int16*)v); } } public static - void MultiTexCoord2v(GL.Enums.ARB_multitexture target, [In, Out] Int16[] v) + void MultiTexCoord2(GL.Enums.ARB_multitexture target, [In, Out] Int16[] v) { unsafe { @@ -15348,7 +15348,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2v(GL.Enums.ARB_multitexture target, ref Int16 v) + void MultiTexCoord2(GL.Enums.ARB_multitexture target, ref Int16 v) { unsafe { @@ -15367,13 +15367,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3v(GL.Enums.ARB_multitexture target, Double* v) + unsafe void MultiTexCoord3(GL.Enums.ARB_multitexture target, Double* v) { unsafe { Delegates.glMultiTexCoord3dvARB((GL.Enums.ARB_multitexture)target, (Double*)v); } } public static - void MultiTexCoord3v(GL.Enums.ARB_multitexture target, [In, Out] Double[] v) + void MultiTexCoord3(GL.Enums.ARB_multitexture target, [In, Out] Double[] v) { unsafe { @@ -15385,7 +15385,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3v(GL.Enums.ARB_multitexture target, ref Double v) + void MultiTexCoord3(GL.Enums.ARB_multitexture target, ref Double v) { unsafe { @@ -15404,13 +15404,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3v(GL.Enums.ARB_multitexture target, Single* v) + unsafe void MultiTexCoord3(GL.Enums.ARB_multitexture target, Single* v) { unsafe { Delegates.glMultiTexCoord3fvARB((GL.Enums.ARB_multitexture)target, (Single*)v); } } public static - void MultiTexCoord3v(GL.Enums.ARB_multitexture target, [In, Out] Single[] v) + void MultiTexCoord3(GL.Enums.ARB_multitexture target, [In, Out] Single[] v) { unsafe { @@ -15422,7 +15422,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3v(GL.Enums.ARB_multitexture target, ref Single v) + void MultiTexCoord3(GL.Enums.ARB_multitexture target, ref Single v) { unsafe { @@ -15441,13 +15441,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3v(GL.Enums.ARB_multitexture target, Int32* v) + unsafe void MultiTexCoord3(GL.Enums.ARB_multitexture target, Int32* v) { unsafe { Delegates.glMultiTexCoord3ivARB((GL.Enums.ARB_multitexture)target, (Int32*)v); } } public static - void MultiTexCoord3v(GL.Enums.ARB_multitexture target, [In, Out] Int32[] v) + void MultiTexCoord3(GL.Enums.ARB_multitexture target, [In, Out] Int32[] v) { unsafe { @@ -15459,7 +15459,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3v(GL.Enums.ARB_multitexture target, ref Int32 v) + void MultiTexCoord3(GL.Enums.ARB_multitexture target, ref Int32 v) { unsafe { @@ -15478,13 +15478,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3v(GL.Enums.ARB_multitexture target, Int16* v) + unsafe void MultiTexCoord3(GL.Enums.ARB_multitexture target, Int16* v) { unsafe { Delegates.glMultiTexCoord3svARB((GL.Enums.ARB_multitexture)target, (Int16*)v); } } public static - void MultiTexCoord3v(GL.Enums.ARB_multitexture target, [In, Out] Int16[] v) + void MultiTexCoord3(GL.Enums.ARB_multitexture target, [In, Out] Int16[] v) { unsafe { @@ -15496,7 +15496,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3v(GL.Enums.ARB_multitexture target, ref Int16 v) + void MultiTexCoord3(GL.Enums.ARB_multitexture target, ref Int16 v) { unsafe { @@ -15515,13 +15515,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4v(GL.Enums.ARB_multitexture target, Double* v) + unsafe void MultiTexCoord4(GL.Enums.ARB_multitexture target, Double* v) { unsafe { Delegates.glMultiTexCoord4dvARB((GL.Enums.ARB_multitexture)target, (Double*)v); } } public static - void MultiTexCoord4v(GL.Enums.ARB_multitexture target, [In, Out] Double[] v) + void MultiTexCoord4(GL.Enums.ARB_multitexture target, [In, Out] Double[] v) { unsafe { @@ -15533,7 +15533,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4v(GL.Enums.ARB_multitexture target, ref Double v) + void MultiTexCoord4(GL.Enums.ARB_multitexture target, ref Double v) { unsafe { @@ -15552,13 +15552,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4v(GL.Enums.ARB_multitexture target, Single* v) + unsafe void MultiTexCoord4(GL.Enums.ARB_multitexture target, Single* v) { unsafe { Delegates.glMultiTexCoord4fvARB((GL.Enums.ARB_multitexture)target, (Single*)v); } } public static - void MultiTexCoord4v(GL.Enums.ARB_multitexture target, [In, Out] Single[] v) + void MultiTexCoord4(GL.Enums.ARB_multitexture target, [In, Out] Single[] v) { unsafe { @@ -15570,7 +15570,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4v(GL.Enums.ARB_multitexture target, ref Single v) + void MultiTexCoord4(GL.Enums.ARB_multitexture target, ref Single v) { unsafe { @@ -15589,13 +15589,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4v(GL.Enums.ARB_multitexture target, Int32* v) + unsafe void MultiTexCoord4(GL.Enums.ARB_multitexture target, Int32* v) { unsafe { Delegates.glMultiTexCoord4ivARB((GL.Enums.ARB_multitexture)target, (Int32*)v); } } public static - void MultiTexCoord4v(GL.Enums.ARB_multitexture target, [In, Out] Int32[] v) + void MultiTexCoord4(GL.Enums.ARB_multitexture target, [In, Out] Int32[] v) { unsafe { @@ -15607,7 +15607,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4v(GL.Enums.ARB_multitexture target, ref Int32 v) + void MultiTexCoord4(GL.Enums.ARB_multitexture target, ref Int32 v) { unsafe { @@ -15626,13 +15626,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4v(GL.Enums.ARB_multitexture target, Int16* v) + unsafe void MultiTexCoord4(GL.Enums.ARB_multitexture target, Int16* v) { unsafe { Delegates.glMultiTexCoord4svARB((GL.Enums.ARB_multitexture)target, (Int16*)v); } } public static - void MultiTexCoord4v(GL.Enums.ARB_multitexture target, [In, Out] Int16[] v) + void MultiTexCoord4(GL.Enums.ARB_multitexture target, [In, Out] Int16[] v) { unsafe { @@ -15644,7 +15644,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4v(GL.Enums.ARB_multitexture target, ref Int16 v) + void MultiTexCoord4(GL.Enums.ARB_multitexture target, ref Int16 v) { unsafe { @@ -15657,13 +15657,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void LoadTransposeMatrixfARB(Single* m) + unsafe void LoadTransposeMatrixf(Single* m) { unsafe { Delegates.glLoadTransposeMatrixfARB((Single*)m); } } public static - void LoadTransposeMatrixfARB([In, Out] Single[] m) + void LoadTransposeMatrixf([In, Out] Single[] m) { unsafe { @@ -15675,7 +15675,7 @@ namespace OpenTK.OpenGL } public static - void LoadTransposeMatrixfARB(ref Single m) + void LoadTransposeMatrixf(ref Single m) { unsafe { @@ -15688,13 +15688,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void LoadTransposeMatrixdARB(Double* m) + unsafe void LoadTransposeMatrixd(Double* m) { unsafe { Delegates.glLoadTransposeMatrixdARB((Double*)m); } } public static - void LoadTransposeMatrixdARB([In, Out] Double[] m) + void LoadTransposeMatrixd([In, Out] Double[] m) { unsafe { @@ -15706,7 +15706,7 @@ namespace OpenTK.OpenGL } public static - void LoadTransposeMatrixdARB(ref Double m) + void LoadTransposeMatrixd(ref Double m) { unsafe { @@ -15719,13 +15719,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultTransposeMatrixfARB(Single* m) + unsafe void MultTransposeMatrixf(Single* m) { unsafe { Delegates.glMultTransposeMatrixfARB((Single*)m); } } public static - void MultTransposeMatrixfARB([In, Out] Single[] m) + void MultTransposeMatrixf([In, Out] Single[] m) { unsafe { @@ -15737,7 +15737,7 @@ namespace OpenTK.OpenGL } public static - void MultTransposeMatrixfARB(ref Single m) + void MultTransposeMatrixf(ref Single m) { unsafe { @@ -15750,13 +15750,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultTransposeMatrixdARB(Double* m) + unsafe void MultTransposeMatrixd(Double* m) { unsafe { Delegates.glMultTransposeMatrixdARB((Double*)m); } } public static - void MultTransposeMatrixdARB([In, Out] Double[] m) + void MultTransposeMatrixd([In, Out] Double[] m) { unsafe { @@ -15768,7 +15768,7 @@ namespace OpenTK.OpenGL } public static - void MultTransposeMatrixdARB(ref Double m) + void MultTransposeMatrixd(ref Double m) { unsafe { @@ -15780,20 +15780,20 @@ namespace OpenTK.OpenGL } public static - void SampleCoverageARB(Single value, GL.Enums.Boolean invert) + void SampleCoverage(Single value, GL.Enums.Boolean invert) { Delegates.glSampleCoverageARB((Single)value, (GL.Enums.Boolean)invert); } [System.CLSCompliant(false)] public static - unsafe void CompressedTexImage3DARB(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, void* data) + unsafe void CompressedTexImage3D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, void* data) { unsafe { Delegates.glCompressedTexImage3DARB((GL.Enums.TextureTarget)target, (Int32)level, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (void*)data); } } public static - void CompressedTexImage3DARB(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object data) + void CompressedTexImage3D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -15811,13 +15811,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void CompressedTexImage2DARB(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, void* data) + unsafe void CompressedTexImage2D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, void* data) { unsafe { Delegates.glCompressedTexImage2DARB((GL.Enums.TextureTarget)target, (Int32)level, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (void*)data); } } public static - void CompressedTexImage2DARB(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object data) + void CompressedTexImage2D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -15835,13 +15835,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void CompressedTexImage1DARB(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, void* data) + unsafe void CompressedTexImage1D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, void* data) { unsafe { Delegates.glCompressedTexImage1DARB((GL.Enums.TextureTarget)target, (Int32)level, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (void*)data); } } public static - void CompressedTexImage1DARB(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object data) + void CompressedTexImage1D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -15859,13 +15859,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void CompressedTexSubImage3DARB(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, GL.Enums.PixelFormat format, Int32 imageSize, void* data) + unsafe void CompressedTexSubImage3D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, GL.Enums.PixelFormat format, Int32 imageSize, void* data) { unsafe { Delegates.glCompressedTexSubImage3DARB((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (GL.Enums.PixelFormat)format, (Int32)imageSize, (void*)data); } } public static - void CompressedTexSubImage3DARB(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, GL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) + void CompressedTexSubImage3D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, GL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -15883,13 +15883,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void CompressedTexSubImage2DARB(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, GL.Enums.PixelFormat format, Int32 imageSize, void* data) + unsafe void CompressedTexSubImage2D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, GL.Enums.PixelFormat format, Int32 imageSize, void* data) { unsafe { Delegates.glCompressedTexSubImage2DARB((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (GL.Enums.PixelFormat)format, (Int32)imageSize, (void*)data); } } public static - void CompressedTexSubImage2DARB(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, GL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) + void CompressedTexSubImage2D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, GL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -15907,13 +15907,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void CompressedTexSubImage1DARB(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, GL.Enums.PixelFormat format, Int32 imageSize, void* data) + unsafe void CompressedTexSubImage1D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, GL.Enums.PixelFormat format, Int32 imageSize, void* data) { unsafe { Delegates.glCompressedTexSubImage1DARB((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (GL.Enums.PixelFormat)format, (Int32)imageSize, (void*)data); } } public static - void CompressedTexSubImage1DARB(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, GL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) + void CompressedTexSubImage1D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, GL.Enums.PixelFormat format, Int32 imageSize, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -15931,13 +15931,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetCompressedTexImageARB(GL.Enums.TextureTarget target, Int32 level, [Out] void* img) + unsafe void GetCompressedTexImage(GL.Enums.TextureTarget target, Int32 level, [Out] void* img) { unsafe { Delegates.glGetCompressedTexImageARB((GL.Enums.TextureTarget)target, (Int32)level, (void*)img); } } public static - void GetCompressedTexImageARB(GL.Enums.TextureTarget target, Int32 level, [In, Out] object img) + void GetCompressedTexImage(GL.Enums.TextureTarget target, Int32 level, [In, Out] object img) { System.Runtime.InteropServices.GCHandle img_ptr = System.Runtime.InteropServices.GCHandle.Alloc(img, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -15954,7 +15954,7 @@ namespace OpenTK.OpenGL } public static - void PointParameterfARB(GL.Enums.ARB_point_parameters pname, Single param) + void PointParameterf(GL.Enums.ARB_point_parameters pname, Single param) { Delegates.glPointParameterfARB((GL.Enums.ARB_point_parameters)pname, (Single)param); } @@ -16248,13 +16248,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WeightPointerARB(Int32 size, GL.Enums.ARB_vertex_blend type, Int32 stride, void* pointer) + unsafe void WeightPointer(Int32 size, GL.Enums.ARB_vertex_blend type, Int32 stride, void* pointer) { unsafe { Delegates.glWeightPointerARB((Int32)size, (GL.Enums.ARB_vertex_blend)type, (Int32)stride, (void*)pointer); } } public static - void WeightPointerARB(Int32 size, GL.Enums.ARB_vertex_blend type, Int32 stride, [In, Out] object pointer) + void WeightPointer(Int32 size, GL.Enums.ARB_vertex_blend type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -16271,13 +16271,13 @@ namespace OpenTK.OpenGL } public static - void VertexBlendARB(Int32 count) + void VertexBlend(Int32 count) { Delegates.glVertexBlendARB((Int32)count); } public static - void CurrentPaletteMatrixARB(Int32 index) + void CurrentPaletteMatrix(Int32 index) { Delegates.glCurrentPaletteMatrixARB((Int32)index); } @@ -16447,13 +16447,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MatrixIndexPointerARB(Int32 size, GL.Enums.ARB_matrix_palette type, Int32 stride, void* pointer) + unsafe void MatrixIndexPointer(Int32 size, GL.Enums.ARB_matrix_palette type, Int32 stride, void* pointer) { unsafe { Delegates.glMatrixIndexPointerARB((Int32)size, (GL.Enums.ARB_matrix_palette)type, (Int32)stride, (void*)pointer); } } public static - void MatrixIndexPointerARB(Int32 size, GL.Enums.ARB_matrix_palette type, Int32 stride, [In, Out] object pointer) + void MatrixIndexPointer(Int32 size, GL.Enums.ARB_matrix_palette type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -16477,13 +16477,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Double* v) + unsafe void WindowPos2(Double* v) { unsafe { Delegates.glWindowPos2dvARB((Double*)v); } } public static - void WindowPos2v([In, Out] Double[] v) + void WindowPos2([In, Out] Double[] v) { unsafe { @@ -16495,7 +16495,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Double v) + void WindowPos2(ref Double v) { unsafe { @@ -16514,13 +16514,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Single* v) + unsafe void WindowPos2(Single* v) { unsafe { Delegates.glWindowPos2fvARB((Single*)v); } } public static - void WindowPos2v([In, Out] Single[] v) + void WindowPos2([In, Out] Single[] v) { unsafe { @@ -16532,7 +16532,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Single v) + void WindowPos2(ref Single v) { unsafe { @@ -16551,13 +16551,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Int32* v) + unsafe void WindowPos2(Int32* v) { unsafe { Delegates.glWindowPos2ivARB((Int32*)v); } } public static - void WindowPos2v([In, Out] Int32[] v) + void WindowPos2([In, Out] Int32[] v) { unsafe { @@ -16569,7 +16569,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Int32 v) + void WindowPos2(ref Int32 v) { unsafe { @@ -16588,13 +16588,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Int16* v) + unsafe void WindowPos2(Int16* v) { unsafe { Delegates.glWindowPos2svARB((Int16*)v); } } public static - void WindowPos2v([In, Out] Int16[] v) + void WindowPos2([In, Out] Int16[] v) { unsafe { @@ -16606,7 +16606,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Int16 v) + void WindowPos2(ref Int16 v) { unsafe { @@ -16625,13 +16625,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Double* v) + unsafe void WindowPos3(Double* v) { unsafe { Delegates.glWindowPos3dvARB((Double*)v); } } public static - void WindowPos3v([In, Out] Double[] v) + void WindowPos3([In, Out] Double[] v) { unsafe { @@ -16643,7 +16643,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Double v) + void WindowPos3(ref Double v) { unsafe { @@ -16662,13 +16662,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Single* v) + unsafe void WindowPos3(Single* v) { unsafe { Delegates.glWindowPos3fvARB((Single*)v); } } public static - void WindowPos3v([In, Out] Single[] v) + void WindowPos3([In, Out] Single[] v) { unsafe { @@ -16680,7 +16680,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Single v) + void WindowPos3(ref Single v) { unsafe { @@ -16699,13 +16699,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Int32* v) + unsafe void WindowPos3(Int32* v) { unsafe { Delegates.glWindowPos3ivARB((Int32*)v); } } public static - void WindowPos3v([In, Out] Int32[] v) + void WindowPos3([In, Out] Int32[] v) { unsafe { @@ -16717,7 +16717,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Int32 v) + void WindowPos3(ref Int32 v) { unsafe { @@ -16736,13 +16736,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Int16* v) + unsafe void WindowPos3(Int16* v) { unsafe { Delegates.glWindowPos3svARB((Int16*)v); } } public static - void WindowPos3v([In, Out] Int16[] v) + void WindowPos3([In, Out] Int16[] v) { unsafe { @@ -16754,7 +16754,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Int16 v) + void WindowPos3(ref Int16 v) { unsafe { @@ -16780,14 +16780,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(UInt32 index, Double* v) + unsafe void VertexAttrib1dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(Int32 index, Double* v) + unsafe void VertexAttrib1dv(Int32 index, Double* v) { { Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v); @@ -16796,7 +16796,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib1dv(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -16808,7 +16808,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, [In, Out] Double[] v) + void VertexAttrib1dv(Int32 index, [In, Out] Double[] v) { unsafe { @@ -16821,7 +16821,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, ref Double v) + void VertexAttrib1dv(UInt32 index, ref Double v) { unsafe { @@ -16833,7 +16833,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, ref Double v) + void VertexAttrib1dv(Int32 index, ref Double v) { unsafe { @@ -16859,14 +16859,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(UInt32 index, Single* v) + unsafe void VertexAttrib1fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(Int32 index, Single* v) + unsafe void VertexAttrib1fv(Int32 index, Single* v) { { Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v); @@ -16875,7 +16875,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib1fv(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -16887,7 +16887,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, [In, Out] Single[] v) + void VertexAttrib1fv(Int32 index, [In, Out] Single[] v) { unsafe { @@ -16900,7 +16900,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, ref Single v) + void VertexAttrib1fv(UInt32 index, ref Single v) { unsafe { @@ -16912,7 +16912,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, ref Single v) + void VertexAttrib1fv(Int32 index, ref Single v) { unsafe { @@ -16938,14 +16938,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(UInt32 index, Int16* v) + unsafe void VertexAttrib1sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(Int32 index, Int16* v) + unsafe void VertexAttrib1sv(Int32 index, Int16* v) { { Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v); @@ -16954,7 +16954,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib1sv(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -16966,7 +16966,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib1sv(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -16979,7 +16979,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, ref Int16 v) + void VertexAttrib1sv(UInt32 index, ref Int16 v) { unsafe { @@ -16991,7 +16991,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, ref Int16 v) + void VertexAttrib1sv(Int32 index, ref Int16 v) { unsafe { @@ -17017,14 +17017,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(UInt32 index, Double* v) + unsafe void VertexAttrib2(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(Int32 index, Double* v) + unsafe void VertexAttrib2(Int32 index, Double* v) { { Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v); @@ -17033,7 +17033,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib2(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -17045,7 +17045,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, [In, Out] Double[] v) + void VertexAttrib2(Int32 index, [In, Out] Double[] v) { unsafe { @@ -17058,7 +17058,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, ref Double v) + void VertexAttrib2(UInt32 index, ref Double v) { unsafe { @@ -17070,7 +17070,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, ref Double v) + void VertexAttrib2(Int32 index, ref Double v) { unsafe { @@ -17096,14 +17096,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(UInt32 index, Single* v) + unsafe void VertexAttrib2(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(Int32 index, Single* v) + unsafe void VertexAttrib2(Int32 index, Single* v) { { Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v); @@ -17112,7 +17112,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib2(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -17124,7 +17124,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, [In, Out] Single[] v) + void VertexAttrib2(Int32 index, [In, Out] Single[] v) { unsafe { @@ -17137,7 +17137,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, ref Single v) + void VertexAttrib2(UInt32 index, ref Single v) { unsafe { @@ -17149,7 +17149,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, ref Single v) + void VertexAttrib2(Int32 index, ref Single v) { unsafe { @@ -17175,14 +17175,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(UInt32 index, Int16* v) + unsafe void VertexAttrib2(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(Int32 index, Int16* v) + unsafe void VertexAttrib2(Int32 index, Int16* v) { { Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v); @@ -17191,7 +17191,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib2(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -17203,7 +17203,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib2(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -17216,7 +17216,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, ref Int16 v) + void VertexAttrib2(UInt32 index, ref Int16 v) { unsafe { @@ -17228,7 +17228,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, ref Int16 v) + void VertexAttrib2(Int32 index, ref Int16 v) { unsafe { @@ -17254,14 +17254,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(UInt32 index, Double* v) + unsafe void VertexAttrib3(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(Int32 index, Double* v) + unsafe void VertexAttrib3(Int32 index, Double* v) { { Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v); @@ -17270,7 +17270,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib3(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -17282,7 +17282,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, [In, Out] Double[] v) + void VertexAttrib3(Int32 index, [In, Out] Double[] v) { unsafe { @@ -17295,7 +17295,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, ref Double v) + void VertexAttrib3(UInt32 index, ref Double v) { unsafe { @@ -17307,7 +17307,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, ref Double v) + void VertexAttrib3(Int32 index, ref Double v) { unsafe { @@ -17333,14 +17333,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(UInt32 index, Single* v) + unsafe void VertexAttrib3(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(Int32 index, Single* v) + unsafe void VertexAttrib3(Int32 index, Single* v) { { Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v); @@ -17349,7 +17349,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib3(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -17361,7 +17361,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, [In, Out] Single[] v) + void VertexAttrib3(Int32 index, [In, Out] Single[] v) { unsafe { @@ -17374,7 +17374,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, ref Single v) + void VertexAttrib3(UInt32 index, ref Single v) { unsafe { @@ -17386,7 +17386,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, ref Single v) + void VertexAttrib3(Int32 index, ref Single v) { unsafe { @@ -17412,14 +17412,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(UInt32 index, Int16* v) + unsafe void VertexAttrib3(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(Int32 index, Int16* v) + unsafe void VertexAttrib3(Int32 index, Int16* v) { { Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v); @@ -17428,7 +17428,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib3(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -17440,7 +17440,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib3(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -17453,7 +17453,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, ref Int16 v) + void VertexAttrib3(UInt32 index, ref Int16 v) { unsafe { @@ -17465,7 +17465,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, ref Int16 v) + void VertexAttrib3(Int32 index, ref Int16 v) { unsafe { @@ -17676,13 +17676,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) + void VertexAttrib4Nub(UInt32 index, Byte x, Byte y, Byte z, Byte w) { Delegates.glVertexAttrib4NubARB((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); } public static - void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) + void VertexAttrib4Nub(Int32 index, Byte x, Byte y, Byte z, Byte w) { Delegates.glVertexAttrib4NubARB((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); } @@ -17788,14 +17788,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, SByte* v) + unsafe void VertexAttrib4(UInt32 index, SByte* v) { unsafe { Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Byte* v) + unsafe void VertexAttrib4(Int32 index, Byte* v) { { Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v); @@ -17804,7 +17804,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] SByte[] v) + void VertexAttrib4(UInt32 index, [In, Out] SByte[] v) { unsafe { @@ -17816,7 +17816,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Byte[] v) + void VertexAttrib4(Int32 index, [In, Out] Byte[] v) { unsafe { @@ -17829,7 +17829,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref SByte v) + void VertexAttrib4(UInt32 index, ref SByte v) { unsafe { @@ -17841,7 +17841,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Byte v) + void VertexAttrib4(Int32 index, ref Byte v) { unsafe { @@ -17867,14 +17867,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Double* v) + unsafe void VertexAttrib4(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Double* v) + unsafe void VertexAttrib4(Int32 index, Double* v) { { Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v); @@ -17883,7 +17883,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib4(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -17895,7 +17895,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Double[] v) + void VertexAttrib4(Int32 index, [In, Out] Double[] v) { unsafe { @@ -17908,7 +17908,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Double v) + void VertexAttrib4(UInt32 index, ref Double v) { unsafe { @@ -17920,7 +17920,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Double v) + void VertexAttrib4(Int32 index, ref Double v) { unsafe { @@ -17946,14 +17946,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Single* v) + unsafe void VertexAttrib4(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Single* v) + unsafe void VertexAttrib4(Int32 index, Single* v) { { Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v); @@ -17962,7 +17962,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib4(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -17974,7 +17974,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Single[] v) + void VertexAttrib4(Int32 index, [In, Out] Single[] v) { unsafe { @@ -17987,7 +17987,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Single v) + void VertexAttrib4(UInt32 index, ref Single v) { unsafe { @@ -17999,7 +17999,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Single v) + void VertexAttrib4(Int32 index, ref Single v) { unsafe { @@ -18012,14 +18012,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Int32* v) + unsafe void VertexAttrib4(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Int32* v) + unsafe void VertexAttrib4(Int32 index, Int32* v) { { Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v); @@ -18028,7 +18028,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Int32[] v) + void VertexAttrib4(UInt32 index, [In, Out] Int32[] v) { unsafe { @@ -18040,7 +18040,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Int32[] v) + void VertexAttrib4(Int32 index, [In, Out] Int32[] v) { unsafe { @@ -18053,7 +18053,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Int32 v) + void VertexAttrib4(UInt32 index, ref Int32 v) { unsafe { @@ -18065,7 +18065,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Int32 v) + void VertexAttrib4(Int32 index, ref Int32 v) { unsafe { @@ -18091,14 +18091,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Int16* v) + unsafe void VertexAttrib4(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Int16* v) + unsafe void VertexAttrib4(Int32 index, Int16* v) { { Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v); @@ -18107,7 +18107,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib4(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -18119,7 +18119,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib4(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -18132,7 +18132,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Int16 v) + void VertexAttrib4(UInt32 index, ref Int16 v) { unsafe { @@ -18144,7 +18144,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Int16 v) + void VertexAttrib4(Int32 index, ref Int16 v) { unsafe { @@ -18157,14 +18157,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Byte* v) + unsafe void VertexAttrib4(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Byte[] v) + void VertexAttrib4(UInt32 index, [In, Out] Byte[] v) { unsafe { @@ -18177,7 +18177,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Byte v) + void VertexAttrib4(UInt32 index, ref Byte v) { unsafe { @@ -18190,14 +18190,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, UInt32* v) + unsafe void VertexAttrib4(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] UInt32[] v) + void VertexAttrib4(UInt32 index, [In, Out] UInt32[] v) { unsafe { @@ -18210,7 +18210,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref UInt32 v) + void VertexAttrib4(UInt32 index, ref UInt32 v) { unsafe { @@ -18223,14 +18223,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, UInt16* v) + unsafe void VertexAttrib4(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] UInt16[] v) + void VertexAttrib4(UInt32 index, [In, Out] UInt16[] v) { unsafe { @@ -18243,7 +18243,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref UInt16 v) + void VertexAttrib4(UInt32 index, ref UInt16 v) { unsafe { @@ -18256,14 +18256,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribPointerARB(UInt32 index, Int32 size, GL.Enums.ARB_vertex_program type, GL.Enums.Boolean normalized, Int32 stride, void* pointer) + unsafe void VertexAttribPointer(UInt32 index, Int32 size, GL.Enums.ARB_vertex_program type, GL.Enums.Boolean normalized, Int32 stride, void* pointer) { unsafe { Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (GL.Enums.ARB_vertex_program)type, (GL.Enums.Boolean)normalized, (Int32)stride, (void*)pointer); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribPointerARB(Int32 index, Int32 size, GL.Enums.ARB_vertex_program type, GL.Enums.Boolean normalized, Int32 stride, void* pointer) + unsafe void VertexAttribPointer(Int32 index, Int32 size, GL.Enums.ARB_vertex_program type, GL.Enums.Boolean normalized, Int32 stride, void* pointer) { { Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (GL.Enums.ARB_vertex_program)type, (GL.Enums.Boolean)normalized, (Int32)stride, (void*)pointer); @@ -18272,39 +18272,39 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void EnableVertexAttribArrayARB(UInt32 index) + void EnableVertexAttribArray(UInt32 index) { Delegates.glEnableVertexAttribArrayARB((UInt32)index); } public static - void EnableVertexAttribArrayARB(Int32 index) + void EnableVertexAttribArray(Int32 index) { Delegates.glEnableVertexAttribArrayARB((UInt32)index); } [System.CLSCompliant(false)] public static - void DisableVertexAttribArrayARB(UInt32 index) + void DisableVertexAttribArray(UInt32 index) { Delegates.glDisableVertexAttribArrayARB((UInt32)index); } public static - void DisableVertexAttribArrayARB(Int32 index) + void DisableVertexAttribArray(Int32 index) { Delegates.glDisableVertexAttribArrayARB((UInt32)index); } [System.CLSCompliant(false)] public static - unsafe void ProgramStringARB(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program format, Int32 len, void* @string) + unsafe void ProgramString(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program format, Int32 len, void* @string) { unsafe { Delegates.glProgramStringARB((GL.Enums.ARB_vertex_program)target, (GL.Enums.ARB_vertex_program)format, (Int32)len, (void*)@string); } } public static - void ProgramStringARB(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program format, Int32 len, [In, Out] object @string) + void ProgramString(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program format, Int32 len, [In, Out] object @string) { System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -18322,27 +18322,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void BindProgramARB(GL.Enums.ARB_vertex_program target, UInt32 program) + void BindProgram(GL.Enums.ARB_vertex_program target, UInt32 program) { Delegates.glBindProgramARB((GL.Enums.ARB_vertex_program)target, (UInt32)program); } public static - void BindProgramARB(GL.Enums.ARB_vertex_program target, Int32 program) + void BindProgram(GL.Enums.ARB_vertex_program target, Int32 program) { Delegates.glBindProgramARB((GL.Enums.ARB_vertex_program)target, (UInt32)program); } [System.CLSCompliant(false)] public static - unsafe void DeleteProgramsARB(Int32 n, UInt32* programs) + unsafe void DeletePrograms(Int32 n, UInt32* programs) { unsafe { Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void DeleteProgramsARB(Int32 n, Int32* programs) + unsafe void DeletePrograms(Int32 n, Int32* programs) { { Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs); @@ -18351,7 +18351,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteProgramsARB(Int32 n, [In, Out] UInt32[] programs) + void DeletePrograms(Int32 n, [In, Out] UInt32[] programs) { unsafe { @@ -18363,7 +18363,7 @@ namespace OpenTK.OpenGL } public static - void DeleteProgramsARB(Int32 n, [In, Out] Int32[] programs) + void DeletePrograms(Int32 n, [In, Out] Int32[] programs) { unsafe { @@ -18376,7 +18376,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteProgramsARB(Int32 n, ref UInt32 programs) + void DeletePrograms(Int32 n, ref UInt32 programs) { unsafe { @@ -18388,7 +18388,7 @@ namespace OpenTK.OpenGL } public static - void DeleteProgramsARB(Int32 n, ref Int32 programs) + void DeletePrograms(Int32 n, ref Int32 programs) { unsafe { @@ -18401,14 +18401,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenProgramsARB(Int32 n, [Out] UInt32* programs) + unsafe void GenPrograms(Int32 n, [Out] UInt32* programs) { unsafe { Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void GenProgramsARB(Int32 n, [Out] Int32* programs) + unsafe void GenPrograms(Int32 n, [Out] Int32* programs) { programs = default(Int32*); { @@ -18418,7 +18418,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenProgramsARB(Int32 n, [In, Out] UInt32[] programs) + void GenPrograms(Int32 n, [In, Out] UInt32[] programs) { unsafe { @@ -18430,7 +18430,7 @@ namespace OpenTK.OpenGL } public static - void GenProgramsARB(Int32 n, [In, Out] Int32[] programs) + void GenPrograms(Int32 n, [In, Out] Int32[] programs) { unsafe { @@ -18443,7 +18443,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenProgramsARB(Int32 n, [Out] out UInt32 programs) + void GenPrograms(Int32 n, [Out] out UInt32 programs) { programs = default(UInt32); unsafe @@ -18457,7 +18457,7 @@ namespace OpenTK.OpenGL } public static - void GenProgramsARB(Int32 n, [Out] out Int32 programs) + void GenPrograms(Int32 n, [Out] out Int32 programs) { programs = default(Int32); unsafe @@ -18485,14 +18485,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Double* @params) + unsafe void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Double* @params) { unsafe { Delegates.glProgramEnvParameter4dvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Double*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Double* @params) + unsafe void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Double* @params) { { Delegates.glProgramEnvParameter4dvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Double*)@params); @@ -18501,7 +18501,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, [In, Out] Double[] @params) + void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, [In, Out] Double[] @params) { unsafe { @@ -18513,7 +18513,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, [In, Out] Double[] @params) + void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, [In, Out] Double[] @params) { unsafe { @@ -18526,7 +18526,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, ref Double @params) + void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, ref Double @params) { unsafe { @@ -18538,7 +18538,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, ref Double @params) + void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, ref Double @params) { unsafe { @@ -18564,14 +18564,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Single* @params) + unsafe void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Single* @params) { unsafe { Delegates.glProgramEnvParameter4fvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Single* @params) + unsafe void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Single* @params) { { Delegates.glProgramEnvParameter4fvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Single*)@params); @@ -18580,7 +18580,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, [In, Out] Single[] @params) + void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, [In, Out] Single[] @params) { unsafe { @@ -18592,7 +18592,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, [In, Out] Single[] @params) + void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, [In, Out] Single[] @params) { unsafe { @@ -18605,7 +18605,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, ref Single @params) + void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, ref Single @params) { unsafe { @@ -18617,7 +18617,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, ref Single @params) + void ProgramEnvParameter4(GL.Enums.ARB_vertex_program target, Int32 index, ref Single @params) { unsafe { @@ -18643,14 +18643,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Double* @params) + unsafe void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Double* @params) { unsafe { Delegates.glProgramLocalParameter4dvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Double*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Double* @params) + unsafe void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Double* @params) { { Delegates.glProgramLocalParameter4dvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Double*)@params); @@ -18659,7 +18659,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, [In, Out] Double[] @params) + void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, [In, Out] Double[] @params) { unsafe { @@ -18671,7 +18671,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, [In, Out] Double[] @params) + void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, [In, Out] Double[] @params) { unsafe { @@ -18684,7 +18684,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, ref Double @params) + void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, ref Double @params) { unsafe { @@ -18696,7 +18696,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, ref Double @params) + void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, ref Double @params) { unsafe { @@ -18722,14 +18722,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, Single* @params) + unsafe void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, Single* @params) { unsafe { Delegates.glProgramLocalParameter4fvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, Single* @params) + unsafe void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, Single* @params) { { Delegates.glProgramLocalParameter4fvARB((GL.Enums.ARB_vertex_program)target, (UInt32)index, (Single*)@params); @@ -18738,7 +18738,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, [In, Out] Single[] @params) + void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, [In, Out] Single[] @params) { unsafe { @@ -18750,7 +18750,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, [In, Out] Single[] @params) + void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, [In, Out] Single[] @params) { unsafe { @@ -18763,7 +18763,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, UInt32 index, ref Single @params) + void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, UInt32 index, ref Single @params) { unsafe { @@ -18775,7 +18775,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameter4v(GL.Enums.ARB_vertex_program target, Int32 index, ref Single @params) + void ProgramLocalParameter4(GL.Enums.ARB_vertex_program target, Int32 index, ref Single @params) { unsafe { @@ -19105,13 +19105,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramStringARB(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [Out] void* @string) + unsafe void GetProgramString(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [Out] void* @string) { unsafe { Delegates.glGetProgramStringARB((GL.Enums.ARB_vertex_program)target, (GL.Enums.ARB_vertex_program)pname, (void*)@string); } } public static - void GetProgramStringARB(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [In, Out] object @string) + void GetProgramString(GL.Enums.ARB_vertex_program target, GL.Enums.ARB_vertex_program pname, [In, Out] object @string) { System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -19342,14 +19342,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribPointervARB(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] void* pointer) + unsafe void GetVertexAttribPointerv(UInt32 index, GL.Enums.ARB_vertex_program pname, [Out] void* pointer) { unsafe { Delegates.glGetVertexAttribPointervARB((UInt32)index, (GL.Enums.ARB_vertex_program)pname, (void*)pointer); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribPointervARB(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] void* pointer) + unsafe void GetVertexAttribPointerv(Int32 index, GL.Enums.ARB_vertex_program pname, [Out] void* pointer) { pointer = default(void*); { @@ -19359,7 +19359,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribPointervARB(UInt32 index, GL.Enums.ARB_vertex_program pname, [In, Out] object pointer) + void GetVertexAttribPointerv(UInt32 index, GL.Enums.ARB_vertex_program pname, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -19376,7 +19376,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribPointervARB(Int32 index, GL.Enums.ARB_vertex_program pname, [In, Out] object pointer) + void GetVertexAttribPointerv(Int32 index, GL.Enums.ARB_vertex_program pname, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -19394,40 +19394,40 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsProgramARB(UInt32 program) + Boolean IsProgram(UInt32 program) { return Delegates.glIsProgramARB((UInt32)program); } public static - Boolean IsProgramARB(Int32 program) + Boolean IsProgram(Int32 program) { return Delegates.glIsProgramARB((UInt32)program); } [System.CLSCompliant(false)] public static - void BindBufferARB(GL.Enums.ARB_vertex_buffer_object target, UInt32 buffer) + void BindBuffer(GL.Enums.ARB_vertex_buffer_object target, UInt32 buffer) { Delegates.glBindBufferARB((GL.Enums.ARB_vertex_buffer_object)target, (UInt32)buffer); } public static - void BindBufferARB(GL.Enums.ARB_vertex_buffer_object target, Int32 buffer) + void BindBuffer(GL.Enums.ARB_vertex_buffer_object target, Int32 buffer) { Delegates.glBindBufferARB((GL.Enums.ARB_vertex_buffer_object)target, (UInt32)buffer); } [System.CLSCompliant(false)] public static - unsafe void DeleteBuffersARB(Int32 n, UInt32* buffers) + unsafe void DeleteBuffers(Int32 n, UInt32* buffers) { unsafe { Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers); } } [System.CLSCompliant(false)] public static - unsafe void DeleteBuffersARB(Int32 n, Int32* buffers) + unsafe void DeleteBuffers(Int32 n, Int32* buffers) { { Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers); @@ -19436,7 +19436,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteBuffersARB(Int32 n, [In, Out] UInt32[] buffers) + void DeleteBuffers(Int32 n, [In, Out] UInt32[] buffers) { unsafe { @@ -19448,7 +19448,7 @@ namespace OpenTK.OpenGL } public static - void DeleteBuffersARB(Int32 n, [In, Out] Int32[] buffers) + void DeleteBuffers(Int32 n, [In, Out] Int32[] buffers) { unsafe { @@ -19461,7 +19461,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteBuffersARB(Int32 n, ref UInt32 buffers) + void DeleteBuffers(Int32 n, ref UInt32 buffers) { unsafe { @@ -19473,7 +19473,7 @@ namespace OpenTK.OpenGL } public static - void DeleteBuffersARB(Int32 n, ref Int32 buffers) + void DeleteBuffers(Int32 n, ref Int32 buffers) { unsafe { @@ -19486,14 +19486,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenBuffersARB(Int32 n, [Out] UInt32* buffers) + unsafe void GenBuffers(Int32 n, [Out] UInt32* buffers) { unsafe { Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers); } } [System.CLSCompliant(false)] public static - unsafe void GenBuffersARB(Int32 n, [Out] Int32* buffers) + unsafe void GenBuffers(Int32 n, [Out] Int32* buffers) { buffers = default(Int32*); { @@ -19503,7 +19503,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenBuffersARB(Int32 n, [In, Out] UInt32[] buffers) + void GenBuffers(Int32 n, [In, Out] UInt32[] buffers) { unsafe { @@ -19515,7 +19515,7 @@ namespace OpenTK.OpenGL } public static - void GenBuffersARB(Int32 n, [In, Out] Int32[] buffers) + void GenBuffers(Int32 n, [In, Out] Int32[] buffers) { unsafe { @@ -19528,7 +19528,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenBuffersARB(Int32 n, [Out] out UInt32 buffers) + void GenBuffers(Int32 n, [Out] out UInt32 buffers) { buffers = default(UInt32); unsafe @@ -19542,7 +19542,7 @@ namespace OpenTK.OpenGL } public static - void GenBuffersARB(Int32 n, [Out] out Int32 buffers) + void GenBuffers(Int32 n, [Out] out Int32 buffers) { buffers = default(Int32); unsafe @@ -19557,26 +19557,26 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsBufferARB(UInt32 buffer) + Boolean IsBuffer(UInt32 buffer) { return Delegates.glIsBufferARB((UInt32)buffer); } public static - Boolean IsBufferARB(Int32 buffer) + Boolean IsBuffer(Int32 buffer) { return Delegates.glIsBufferARB((UInt32)buffer); } [System.CLSCompliant(false)] public static - unsafe void BufferDataARB(GL.Enums.ARB_vertex_buffer_object target, IntPtr size, void* data, GL.Enums.ARB_vertex_buffer_object usage) + unsafe void BufferData(GL.Enums.ARB_vertex_buffer_object target, IntPtr size, void* data, GL.Enums.ARB_vertex_buffer_object usage) { unsafe { Delegates.glBufferDataARB((GL.Enums.ARB_vertex_buffer_object)target, (IntPtr)size, (void*)data, (GL.Enums.ARB_vertex_buffer_object)usage); } } public static - void BufferDataARB(GL.Enums.ARB_vertex_buffer_object target, IntPtr size, [In, Out] object data, GL.Enums.ARB_vertex_buffer_object usage) + void BufferData(GL.Enums.ARB_vertex_buffer_object target, IntPtr size, [In, Out] object data, GL.Enums.ARB_vertex_buffer_object usage) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -19594,13 +19594,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void BufferSubDataARB(GL.Enums.ARB_vertex_buffer_object target, IntPtr offset, IntPtr size, void* data) + unsafe void BufferSubData(GL.Enums.ARB_vertex_buffer_object target, IntPtr offset, IntPtr size, void* data) { unsafe { Delegates.glBufferSubDataARB((GL.Enums.ARB_vertex_buffer_object)target, (IntPtr)offset, (IntPtr)size, (void*)data); } } public static - void BufferSubDataARB(GL.Enums.ARB_vertex_buffer_object target, IntPtr offset, IntPtr size, [In, Out] object data) + void BufferSubData(GL.Enums.ARB_vertex_buffer_object target, IntPtr offset, IntPtr size, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -19618,13 +19618,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetBufferSubDataARB(GL.Enums.ARB_vertex_buffer_object target, IntPtr offset, IntPtr size, [Out] void* data) + unsafe void GetBufferSubData(GL.Enums.ARB_vertex_buffer_object target, IntPtr offset, IntPtr size, [Out] void* data) { unsafe { Delegates.glGetBufferSubDataARB((GL.Enums.ARB_vertex_buffer_object)target, (IntPtr)offset, (IntPtr)size, (void*)data); } } public static - void GetBufferSubDataARB(GL.Enums.ARB_vertex_buffer_object target, IntPtr offset, IntPtr size, [In, Out] object data) + void GetBufferSubData(GL.Enums.ARB_vertex_buffer_object target, IntPtr offset, IntPtr size, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -19641,13 +19641,13 @@ namespace OpenTK.OpenGL } public static - IntPtr MapBufferARB(GL.Enums.ARB_vertex_buffer_object target, GL.Enums.ARB_vertex_buffer_object access) + IntPtr MapBuffer(GL.Enums.ARB_vertex_buffer_object target, GL.Enums.ARB_vertex_buffer_object access) { return Delegates.glMapBufferARB((GL.Enums.ARB_vertex_buffer_object)target, (GL.Enums.ARB_vertex_buffer_object)access); } public static - Boolean UnmapBufferARB(GL.Enums.ARB_vertex_buffer_object target) + Boolean UnmapBuffer(GL.Enums.ARB_vertex_buffer_object target) { return Delegates.glUnmapBufferARB((GL.Enums.ARB_vertex_buffer_object)target); } @@ -19687,13 +19687,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetBufferPointervARB(GL.Enums.ARB_vertex_buffer_object target, GL.Enums.ARB_vertex_buffer_object pname, [Out] void* @params) + unsafe void GetBufferPointerv(GL.Enums.ARB_vertex_buffer_object target, GL.Enums.ARB_vertex_buffer_object pname, [Out] void* @params) { unsafe { Delegates.glGetBufferPointervARB((GL.Enums.ARB_vertex_buffer_object)target, (GL.Enums.ARB_vertex_buffer_object)pname, (void*)@params); } } public static - void GetBufferPointervARB(GL.Enums.ARB_vertex_buffer_object target, GL.Enums.ARB_vertex_buffer_object pname, [In, Out] object @params) + void GetBufferPointerv(GL.Enums.ARB_vertex_buffer_object target, GL.Enums.ARB_vertex_buffer_object pname, [In, Out] object @params) { System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -19711,14 +19711,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenQueriesARB(Int32 n, [Out] UInt32* ids) + unsafe void GenQueries(Int32 n, [Out] UInt32* ids) { unsafe { Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void GenQueriesARB(Int32 n, [Out] Int32* ids) + unsafe void GenQueries(Int32 n, [Out] Int32* ids) { ids = default(Int32*); { @@ -19728,7 +19728,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenQueriesARB(Int32 n, [In, Out] UInt32[] ids) + void GenQueries(Int32 n, [In, Out] UInt32[] ids) { unsafe { @@ -19740,7 +19740,7 @@ namespace OpenTK.OpenGL } public static - void GenQueriesARB(Int32 n, [In, Out] Int32[] ids) + void GenQueries(Int32 n, [In, Out] Int32[] ids) { unsafe { @@ -19753,7 +19753,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenQueriesARB(Int32 n, [Out] out UInt32 ids) + void GenQueries(Int32 n, [Out] out UInt32 ids) { ids = default(UInt32); unsafe @@ -19767,7 +19767,7 @@ namespace OpenTK.OpenGL } public static - void GenQueriesARB(Int32 n, [Out] out Int32 ids) + void GenQueries(Int32 n, [Out] out Int32 ids) { ids = default(Int32); unsafe @@ -19782,14 +19782,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteQueriesARB(Int32 n, UInt32* ids) + unsafe void DeleteQueries(Int32 n, UInt32* ids) { unsafe { Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void DeleteQueriesARB(Int32 n, Int32* ids) + unsafe void DeleteQueries(Int32 n, Int32* ids) { { Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids); @@ -19798,7 +19798,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteQueriesARB(Int32 n, [In, Out] UInt32[] ids) + void DeleteQueries(Int32 n, [In, Out] UInt32[] ids) { unsafe { @@ -19810,7 +19810,7 @@ namespace OpenTK.OpenGL } public static - void DeleteQueriesARB(Int32 n, [In, Out] Int32[] ids) + void DeleteQueries(Int32 n, [In, Out] Int32[] ids) { unsafe { @@ -19823,7 +19823,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteQueriesARB(Int32 n, ref UInt32 ids) + void DeleteQueries(Int32 n, ref UInt32 ids) { unsafe { @@ -19835,7 +19835,7 @@ namespace OpenTK.OpenGL } public static - void DeleteQueriesARB(Int32 n, ref Int32 ids) + void DeleteQueries(Int32 n, ref Int32 ids) { unsafe { @@ -19848,32 +19848,32 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsQueryARB(UInt32 id) + Boolean IsQuery(UInt32 id) { return Delegates.glIsQueryARB((UInt32)id); } public static - Boolean IsQueryARB(Int32 id) + Boolean IsQuery(Int32 id) { return Delegates.glIsQueryARB((UInt32)id); } [System.CLSCompliant(false)] public static - void BeginQueryARB(GL.Enums.ARB_occlusion_query target, UInt32 id) + void BeginQuery(GL.Enums.ARB_occlusion_query target, UInt32 id) { Delegates.glBeginQueryARB((GL.Enums.ARB_occlusion_query)target, (UInt32)id); } public static - void BeginQueryARB(GL.Enums.ARB_occlusion_query target, Int32 id) + void BeginQuery(GL.Enums.ARB_occlusion_query target, Int32 id) { Delegates.glBeginQueryARB((GL.Enums.ARB_occlusion_query)target, (UInt32)id); } public static - void EndQueryARB(GL.Enums.ARB_occlusion_query target) + void EndQuery(GL.Enums.ARB_occlusion_query target) { Delegates.glEndQueryARB((GL.Enums.ARB_occlusion_query)target); } @@ -20019,52 +20019,52 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteObjectARB(UInt32 obj) + void DeleteObject(UInt32 obj) { Delegates.glDeleteObjectARB((UInt32)obj); } public static - void DeleteObjectARB(Int32 obj) + void DeleteObject(Int32 obj) { Delegates.glDeleteObjectARB((UInt32)obj); } public static - Int32 GetHandleARB(GL.Enums.ARB_shader_objects pname) + Int32 GetHandle(GL.Enums.ARB_shader_objects pname) { return Delegates.glGetHandleARB((GL.Enums.ARB_shader_objects)pname); } [System.CLSCompliant(false)] public static - void DetachObjectARB(UInt32 containerObj, UInt32 attachedObj) + void DetachObject(UInt32 containerObj, UInt32 attachedObj) { Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj); } public static - void DetachObjectARB(Int32 containerObj, Int32 attachedObj) + void DetachObject(Int32 containerObj, Int32 attachedObj) { Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj); } public static - Int32 CreateShaderObjectARB(GL.Enums.ARB_shader_objects shaderType) + Int32 CreateShaderObject(GL.Enums.ARB_shader_objects shaderType) { return Delegates.glCreateShaderObjectARB((GL.Enums.ARB_shader_objects)shaderType); } [System.CLSCompliant(false)] public static - unsafe void ShaderSourceARB(UInt32 shaderObj, Int32 count, System.String[] @string, Int32* length) + unsafe void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, Int32* length) { unsafe { Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length); } } [System.CLSCompliant(false)] public static - unsafe void ShaderSourceARB(Int32 shaderObj, Int32 count, System.String[] @string, Int32* length) + unsafe void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, Int32* length) { { Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (System.String[])@string, (Int32*)length); @@ -20073,7 +20073,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ShaderSourceARB(UInt32 shaderObj, Int32 count, System.String[] @string, [In, Out] Int32[] length) + void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, [In, Out] Int32[] length) { unsafe { @@ -20085,7 +20085,7 @@ namespace OpenTK.OpenGL } public static - void ShaderSourceARB(Int32 shaderObj, Int32 count, System.String[] @string, [In, Out] Int32[] length) + void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, [In, Out] Int32[] length) { unsafe { @@ -20098,7 +20098,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ShaderSourceARB(UInt32 shaderObj, Int32 count, System.String[] @string, ref Int32 length) + void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, ref Int32 length) { unsafe { @@ -20110,7 +20110,7 @@ namespace OpenTK.OpenGL } public static - void ShaderSourceARB(Int32 shaderObj, Int32 count, System.String[] @string, ref Int32 length) + void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, ref Int32 length) { unsafe { @@ -20123,71 +20123,71 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void CompileShaderARB(UInt32 shaderObj) + void CompileShader(UInt32 shaderObj) { Delegates.glCompileShaderARB((UInt32)shaderObj); } public static - void CompileShaderARB(Int32 shaderObj) + void CompileShader(Int32 shaderObj) { Delegates.glCompileShaderARB((UInt32)shaderObj); } public static - Int32 CreateProgramObjectARB() + Int32 CreateProgramObject() { return Delegates.glCreateProgramObjectARB(); } [System.CLSCompliant(false)] public static - void AttachObjectARB(UInt32 containerObj, UInt32 obj) + void AttachObject(UInt32 containerObj, UInt32 obj) { Delegates.glAttachObjectARB((UInt32)containerObj, (UInt32)obj); } public static - void AttachObjectARB(Int32 containerObj, Int32 obj) + void AttachObject(Int32 containerObj, Int32 obj) { Delegates.glAttachObjectARB((UInt32)containerObj, (UInt32)obj); } [System.CLSCompliant(false)] public static - void LinkProgramARB(UInt32 programObj) + void LinkProgram(UInt32 programObj) { Delegates.glLinkProgramARB((UInt32)programObj); } public static - void LinkProgramARB(Int32 programObj) + void LinkProgram(Int32 programObj) { Delegates.glLinkProgramARB((UInt32)programObj); } [System.CLSCompliant(false)] public static - void UseProgramObjectARB(UInt32 programObj) + void UseProgramObject(UInt32 programObj) { Delegates.glUseProgramObjectARB((UInt32)programObj); } public static - void UseProgramObjectARB(Int32 programObj) + void UseProgramObject(Int32 programObj) { Delegates.glUseProgramObjectARB((UInt32)programObj); } [System.CLSCompliant(false)] public static - void ValidateProgramARB(UInt32 programObj) + void ValidateProgram(UInt32 programObj) { Delegates.glValidateProgramARB((UInt32)programObj); } public static - void ValidateProgramARB(Int32 programObj) + void ValidateProgram(Int32 programObj) { Delegates.glValidateProgramARB((UInt32)programObj); } @@ -20242,13 +20242,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform1v(Int32 location, Int32 count, Single* value) + unsafe void Uniform1(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform1v(Int32 location, Int32 count, [In, Out] Single[] value) + void Uniform1(Int32 location, Int32 count, [In, Out] Single[] value) { unsafe { @@ -20260,7 +20260,7 @@ namespace OpenTK.OpenGL } public static - void Uniform1v(Int32 location, Int32 count, ref Single value) + void Uniform1(Int32 location, Int32 count, ref Single value) { unsafe { @@ -20273,13 +20273,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2v(Int32 location, Int32 count, Single* value) + unsafe void Uniform2fv(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform2v(Int32 location, Int32 count, [In, Out] Single[] value) + void Uniform2fv(Int32 location, Int32 count, [In, Out] Single[] value) { unsafe { @@ -20291,7 +20291,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2v(Int32 location, Int32 count, ref Single value) + void Uniform2fv(Int32 location, Int32 count, ref Single value) { unsafe { @@ -20304,13 +20304,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform3v(Int32 location, Int32 count, Single* value) + unsafe void Uniform3(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform3v(Int32 location, Int32 count, [In, Out] Single[] value) + void Uniform3(Int32 location, Int32 count, [In, Out] Single[] value) { unsafe { @@ -20322,7 +20322,7 @@ namespace OpenTK.OpenGL } public static - void Uniform3v(Int32 location, Int32 count, ref Single value) + void Uniform3(Int32 location, Int32 count, ref Single value) { unsafe { @@ -20335,13 +20335,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform4v(Int32 location, Int32 count, Single* value) + unsafe void Uniform4(Int32 location, Int32 count, Single* value) { unsafe { Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value); } } public static - void Uniform4v(Int32 location, Int32 count, [In, Out] Single[] value) + void Uniform4(Int32 location, Int32 count, [In, Out] Single[] value) { unsafe { @@ -20353,7 +20353,7 @@ namespace OpenTK.OpenGL } public static - void Uniform4v(Int32 location, Int32 count, ref Single value) + void Uniform4(Int32 location, Int32 count, ref Single value) { unsafe { @@ -20366,13 +20366,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform1v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform1(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform1v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform1(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -20384,7 +20384,7 @@ namespace OpenTK.OpenGL } public static - void Uniform1v(Int32 location, Int32 count, ref Int32 value) + void Uniform1(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -20397,13 +20397,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform2iv(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform2v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform2iv(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -20415,7 +20415,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2v(Int32 location, Int32 count, ref Int32 value) + void Uniform2iv(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -20428,13 +20428,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform3v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform3(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform3v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform3(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -20446,7 +20446,7 @@ namespace OpenTK.OpenGL } public static - void Uniform3v(Int32 location, Int32 count, ref Int32 value) + void Uniform3(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -20459,13 +20459,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform4v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform4(Int32 location, Int32 count, Int32* value) { unsafe { Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value); } } public static - void Uniform4v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform4(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -20477,7 +20477,7 @@ namespace OpenTK.OpenGL } public static - void Uniform4v(Int32 location, Int32 count, ref Int32 value) + void Uniform4(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -20490,21 +20490,21 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void UniformMatrix2v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix2(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void UniformMatrix3v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix3(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void UniformMatrix4v(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) + unsafe void UniformMatrix4(Int32 location, Int32 count, GL.Enums.Boolean transpose, Single* value) { unsafe { Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (GL.Enums.Boolean)transpose, (Single*)value); } } @@ -20653,14 +20653,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetInfoLogARB(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog) + unsafe void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog) { unsafe { Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder)infoLog); } } [System.CLSCompliant(false)] public static - unsafe void GetInfoLogARB(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog) + unsafe void GetInfoLog(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog) { length = default(Int32*); infoLog = default(System.Text.StringBuilder); @@ -20671,7 +20671,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetInfoLogARB(UInt32 obj, Int32 maxLength, [In, Out] Int32[] length, [Out] System.Text.StringBuilder infoLog) + void GetInfoLog(UInt32 obj, Int32 maxLength, [In, Out] Int32[] length, [Out] System.Text.StringBuilder infoLog) { infoLog = default(System.Text.StringBuilder); unsafe @@ -20684,7 +20684,7 @@ namespace OpenTK.OpenGL } public static - void GetInfoLogARB(Int32 obj, Int32 maxLength, [In, Out] Int32[] length, [Out] System.Text.StringBuilder infoLog) + void GetInfoLog(Int32 obj, Int32 maxLength, [In, Out] Int32[] length, [Out] System.Text.StringBuilder infoLog) { infoLog = default(System.Text.StringBuilder); unsafe @@ -20698,7 +20698,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetInfoLogARB(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog) + void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog) { length = default(Int32); infoLog = default(System.Text.StringBuilder); @@ -20713,7 +20713,7 @@ namespace OpenTK.OpenGL } public static - void GetInfoLogARB(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog) + void GetInfoLog(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog) { length = default(Int32); infoLog = default(System.Text.StringBuilder); @@ -20729,14 +20729,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] UInt32* obj) + unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] UInt32* obj) { unsafe { Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count, (UInt32*)obj); } } [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(Int32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] Int32* obj) + unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] Int32* obj) { count = default(Int32*); obj = default(Int32*); @@ -20747,7 +20747,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [Out] Int32* count, [In, Out] UInt32[] obj) + unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] Int32* count, [In, Out] UInt32[] obj) { count = default(Int32*); fixed (UInt32* obj_ptr = obj) @@ -20758,7 +20758,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(Int32 containerObj, Int32 maxCount, [Out] Int32* count, [In, Out] Int32[] obj) + unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] Int32* count, [In, Out] Int32[] obj) { count = default(Int32*); fixed (Int32* obj_ptr = obj) @@ -20769,7 +20769,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] out UInt32 obj) + unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] out UInt32 obj) { count = default(Int32*); obj = default(UInt32); @@ -20782,7 +20782,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(Int32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] out Int32 obj) + unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] out Int32 obj) { count = default(Int32*); obj = default(Int32); @@ -20795,7 +20795,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [Out] UInt32* obj) + unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [Out] UInt32* obj) { obj = default(UInt32*); fixed (Int32* count_ptr = count) @@ -20806,7 +20806,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(Int32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [Out] Int32* obj) + unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [Out] Int32* obj) { obj = default(Int32*); fixed (Int32* count_ptr = count) @@ -20817,7 +20817,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [In, Out] UInt32[] obj) + void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [In, Out] UInt32[] obj) { unsafe { @@ -20830,7 +20830,7 @@ namespace OpenTK.OpenGL } public static - void GetAttachedObjectsARB(Int32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [In, Out] Int32[] obj) + void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [In, Out] Int32[] obj) { unsafe { @@ -20844,7 +20844,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [Out] out UInt32 obj) + void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [Out] out UInt32 obj) { obj = default(UInt32); unsafe @@ -20859,7 +20859,7 @@ namespace OpenTK.OpenGL } public static - void GetAttachedObjectsARB(Int32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [Out] out Int32 obj) + void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [In, Out] Int32[] count, [Out] out Int32 obj) { obj = default(Int32); unsafe @@ -20875,7 +20875,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] UInt32* obj) + unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] UInt32* obj) { count = default(Int32); obj = default(UInt32*); @@ -20888,7 +20888,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetAttachedObjectsARB(Int32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] Int32* obj) + unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] Int32* obj) { count = default(Int32); obj = default(Int32*); @@ -20901,7 +20901,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [Out] out Int32 count, [In, Out] UInt32[] obj) + void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] out Int32 count, [In, Out] UInt32[] obj) { count = default(Int32); unsafe @@ -20916,7 +20916,7 @@ namespace OpenTK.OpenGL } public static - void GetAttachedObjectsARB(Int32 containerObj, Int32 maxCount, [Out] out Int32 count, [In, Out] Int32[] obj) + void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] out Int32 count, [In, Out] Int32[] obj) { count = default(Int32); unsafe @@ -20932,7 +20932,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out UInt32 obj) + void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out UInt32 obj) { count = default(Int32); obj = default(UInt32); @@ -20949,7 +20949,7 @@ namespace OpenTK.OpenGL } public static - void GetAttachedObjectsARB(Int32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out Int32 obj) + void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out Int32 obj) { count = default(Int32); obj = default(Int32); @@ -20967,27 +20967,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Int32 GetUniformLocationARB(UInt32 programObj, System.String name) + Int32 GetUniformLocation(UInt32 programObj, System.String name) { return Delegates.glGetUniformLocationARB((UInt32)programObj, (System.String)name); } public static - Int32 GetUniformLocationARB(Int32 programObj, System.String name) + Int32 GetUniformLocation(Int32 programObj, System.String name) { return Delegates.glGetUniformLocationARB((UInt32)programObj, (System.String)name); } [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { unsafe { Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (GL.Enums.ARB_shader_objects*)type, (System.Text.StringBuilder)name); } } [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -21000,7 +21000,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -21013,7 +21013,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -21026,7 +21026,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -21041,7 +21041,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -21056,7 +21056,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.ARB_shader_objects*); @@ -21069,7 +21069,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.ARB_shader_objects*); @@ -21082,7 +21082,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); name = default(System.Text.StringBuilder); @@ -21095,7 +21095,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); name = default(System.Text.StringBuilder); @@ -21108,7 +21108,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.ARB_shader_objects); @@ -21123,7 +21123,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.ARB_shader_objects); @@ -21138,7 +21138,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -21153,7 +21153,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -21168,7 +21168,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -21183,7 +21183,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -21198,7 +21198,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -21215,7 +21215,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -21232,7 +21232,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.ARB_shader_objects*); @@ -21245,7 +21245,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.ARB_shader_objects*); @@ -21258,7 +21258,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { size = default(Int32*); name = default(System.Text.StringBuilder); @@ -21271,7 +21271,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { size = default(Int32*); name = default(System.Text.StringBuilder); @@ -21284,7 +21284,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.ARB_shader_objects); @@ -21299,7 +21299,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.ARB_shader_objects); @@ -21314,7 +21314,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.ARB_shader_objects*); name = default(System.Text.StringBuilder); @@ -21327,7 +21327,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.ARB_shader_objects*); name = default(System.Text.StringBuilder); @@ -21340,7 +21340,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { name = default(System.Text.StringBuilder); unsafe @@ -21355,7 +21355,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { name = default(System.Text.StringBuilder); unsafe @@ -21371,7 +21371,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.ARB_shader_objects); name = default(System.Text.StringBuilder); @@ -21388,7 +21388,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.ARB_shader_objects); name = default(System.Text.StringBuilder); @@ -21406,7 +21406,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.ARB_shader_objects*); @@ -21421,7 +21421,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.ARB_shader_objects*); @@ -21436,7 +21436,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { size = default(Int32); name = default(System.Text.StringBuilder); @@ -21453,7 +21453,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { size = default(Int32); name = default(System.Text.StringBuilder); @@ -21471,7 +21471,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.ARB_shader_objects); @@ -21490,7 +21490,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.ARB_shader_objects); @@ -21510,7 +21510,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -21525,7 +21525,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -21540,7 +21540,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -21555,7 +21555,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -21570,7 +21570,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -21587,7 +21587,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -21604,7 +21604,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.ARB_shader_objects*); @@ -21619,7 +21619,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.ARB_shader_objects*); @@ -21634,7 +21634,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); name = default(System.Text.StringBuilder); @@ -21651,7 +21651,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); name = default(System.Text.StringBuilder); @@ -21669,7 +21669,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.ARB_shader_objects); @@ -21688,7 +21688,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.ARB_shader_objects); @@ -21708,7 +21708,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -21725,7 +21725,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.ARB_shader_objects* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -21742,7 +21742,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -21761,7 +21761,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_shader_objects[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -21781,7 +21781,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -21802,7 +21802,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveUniformARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) + void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.ARB_shader_objects type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -21966,14 +21966,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetShaderSourceARB(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source) + unsafe void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source) { unsafe { Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (System.Text.StringBuilder[])source); } } [System.CLSCompliant(false)] public static - unsafe void GetShaderSourceARB(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source) + unsafe void GetShaderSource(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source) { length = default(Int32*); source = default(System.Text.StringBuilder[]); @@ -21984,7 +21984,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetShaderSourceARB(UInt32 obj, Int32 maxLength, [In, Out] Int32[] length, [Out] System.Text.StringBuilder[] source) + void GetShaderSource(UInt32 obj, Int32 maxLength, [In, Out] Int32[] length, [Out] System.Text.StringBuilder[] source) { source = default(System.Text.StringBuilder[]); unsafe @@ -21997,7 +21997,7 @@ namespace OpenTK.OpenGL } public static - void GetShaderSourceARB(Int32 obj, Int32 maxLength, [In, Out] Int32[] length, [Out] System.Text.StringBuilder[] source) + void GetShaderSource(Int32 obj, Int32 maxLength, [In, Out] Int32[] length, [Out] System.Text.StringBuilder[] source) { source = default(System.Text.StringBuilder[]); unsafe @@ -22011,7 +22011,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetShaderSourceARB(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source) + void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source) { length = default(Int32); source = default(System.Text.StringBuilder[]); @@ -22026,7 +22026,7 @@ namespace OpenTK.OpenGL } public static - void GetShaderSourceARB(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source) + void GetShaderSource(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source) { length = default(Int32); source = default(System.Text.StringBuilder[]); @@ -22042,27 +22042,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void BindAttribLocationARB(UInt32 programObj, UInt32 index, System.String name) + void BindAttribLocation(UInt32 programObj, UInt32 index, System.String name) { Delegates.glBindAttribLocationARB((UInt32)programObj, (UInt32)index, (System.String)name); } public static - void BindAttribLocationARB(Int32 programObj, Int32 index, System.String name) + void BindAttribLocation(Int32 programObj, Int32 index, System.String name) { Delegates.glBindAttribLocationARB((UInt32)programObj, (UInt32)index, (System.String)name); } [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { unsafe { Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (GL.Enums.ARB_vertex_shader*)type, (System.Text.StringBuilder)name); } } [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -22075,7 +22075,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -22088,7 +22088,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -22101,7 +22101,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -22116,7 +22116,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -22131,7 +22131,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.ARB_vertex_shader*); @@ -22144,7 +22144,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.ARB_vertex_shader*); @@ -22157,7 +22157,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); name = default(System.Text.StringBuilder); @@ -22170,7 +22170,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); name = default(System.Text.StringBuilder); @@ -22183,7 +22183,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.ARB_vertex_shader); @@ -22198,7 +22198,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.ARB_vertex_shader); @@ -22213,7 +22213,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -22228,7 +22228,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -22243,7 +22243,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -22258,7 +22258,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -22273,7 +22273,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -22290,7 +22290,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -22307,7 +22307,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.ARB_vertex_shader*); @@ -22320,7 +22320,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.ARB_vertex_shader*); @@ -22333,7 +22333,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { size = default(Int32*); name = default(System.Text.StringBuilder); @@ -22346,7 +22346,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { size = default(Int32*); name = default(System.Text.StringBuilder); @@ -22359,7 +22359,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.ARB_vertex_shader); @@ -22374,7 +22374,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.ARB_vertex_shader); @@ -22389,7 +22389,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.ARB_vertex_shader*); name = default(System.Text.StringBuilder); @@ -22402,7 +22402,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.ARB_vertex_shader*); name = default(System.Text.StringBuilder); @@ -22415,7 +22415,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { name = default(System.Text.StringBuilder); unsafe @@ -22430,7 +22430,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { name = default(System.Text.StringBuilder); unsafe @@ -22446,7 +22446,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.ARB_vertex_shader); name = default(System.Text.StringBuilder); @@ -22463,7 +22463,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.ARB_vertex_shader); name = default(System.Text.StringBuilder); @@ -22481,7 +22481,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.ARB_vertex_shader*); @@ -22496,7 +22496,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.ARB_vertex_shader*); @@ -22511,7 +22511,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { size = default(Int32); name = default(System.Text.StringBuilder); @@ -22528,7 +22528,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { size = default(Int32); name = default(System.Text.StringBuilder); @@ -22546,7 +22546,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.ARB_vertex_shader); @@ -22565,7 +22565,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.ARB_vertex_shader); @@ -22585,7 +22585,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -22600,7 +22600,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -22615,7 +22615,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -22630,7 +22630,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -22645,7 +22645,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -22662,7 +22662,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -22679,7 +22679,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.ARB_vertex_shader*); @@ -22694,7 +22694,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.ARB_vertex_shader*); @@ -22709,7 +22709,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); name = default(System.Text.StringBuilder); @@ -22726,7 +22726,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); name = default(System.Text.StringBuilder); @@ -22744,7 +22744,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.ARB_vertex_shader); @@ -22763,7 +22763,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.ARB_vertex_shader); @@ -22783,7 +22783,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -22800,7 +22800,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.ARB_vertex_shader* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -22817,7 +22817,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -22836,7 +22836,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.ARB_vertex_shader[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -22856,7 +22856,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -22877,7 +22877,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveAttribARB(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) + void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.ARB_vertex_shader type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -22899,26 +22899,26 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Int32 GetAttribLocationARB(UInt32 programObj, System.String name) + Int32 GetAttribLocation(UInt32 programObj, System.String name) { return Delegates.glGetAttribLocationARB((UInt32)programObj, (System.String)name); } public static - Int32 GetAttribLocationARB(Int32 programObj, System.String name) + Int32 GetAttribLocation(Int32 programObj, System.String name) { return Delegates.glGetAttribLocationARB((UInt32)programObj, (System.String)name); } [System.CLSCompliant(false)] public static - unsafe void DrawBuffersARB(Int32 n, GL.Enums.ARB_draw_buffers* bufs) + unsafe void DrawBuffers(Int32 n, GL.Enums.ARB_draw_buffers* bufs) { unsafe { Delegates.glDrawBuffersARB((Int32)n, (GL.Enums.ARB_draw_buffers*)bufs); } } public static - void DrawBuffersARB(Int32 n, [In, Out] GL.Enums.ARB_draw_buffers[] bufs) + void DrawBuffers(Int32 n, [In, Out] GL.Enums.ARB_draw_buffers[] bufs) { unsafe { @@ -22930,7 +22930,7 @@ namespace OpenTK.OpenGL } public static - void DrawBuffersARB(Int32 n, ref GL.Enums.ARB_draw_buffers bufs) + void DrawBuffers(Int32 n, ref GL.Enums.ARB_draw_buffers bufs) { unsafe { @@ -22942,7 +22942,7 @@ namespace OpenTK.OpenGL } public static - void ClampColorARB(GL.Enums.ARB_color_buffer_float target, GL.Enums.ARB_color_buffer_float clamp) + void ClampColor(GL.Enums.ARB_color_buffer_float target, GL.Enums.ARB_color_buffer_float clamp) { Delegates.glClampColorARB((GL.Enums.ARB_color_buffer_float)target, (GL.Enums.ARB_color_buffer_float)clamp); } @@ -22952,26 +22952,26 @@ namespace OpenTK.OpenGL public static class EXT { public static - void BlendColorEXT(Single red, Single green, Single blue, Single alpha) + void BlendColor(Single red, Single green, Single blue, Single alpha) { Delegates.glBlendColorEXT((Single)red, (Single)green, (Single)blue, (Single)alpha); } public static - void PolygonOffsetEXT(Single factor, Single bias) + void PolygonOffset(Single factor, Single bias) { Delegates.glPolygonOffsetEXT((Single)factor, (Single)bias); } [System.CLSCompliant(false)] public static - unsafe void TexImage3DEXT(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) + unsafe void TexImage3D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) { unsafe { Delegates.glTexImage3DEXT((GL.Enums.TextureTarget)target, (Int32)level, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)pixels); } } public static - void TexImage3DEXT(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) + void TexImage3D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) { System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -22989,13 +22989,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexSubImage3DEXT(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) + unsafe void TexSubImage3D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) { unsafe { Delegates.glTexSubImage3DEXT((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)pixels); } } public static - void TexSubImage3DEXT(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) + void TexSubImage3D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) { System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -23013,13 +23013,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexSubImage1DEXT(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) + unsafe void TexSubImage1D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) { unsafe { Delegates.glTexSubImage1DEXT((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)pixels); } } public static - void TexSubImage1DEXT(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) + void TexSubImage1D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) { System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -23037,13 +23037,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexSubImage2DEXT(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) + unsafe void TexSubImage2D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) { unsafe { Delegates.glTexSubImage2DEXT((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)pixels); } } public static - void TexSubImage2DEXT(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) + void TexSubImage2D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) { System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -23060,38 +23060,38 @@ namespace OpenTK.OpenGL } public static - void CopyTexImage1DEXT(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) + void CopyTexImage1D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { Delegates.glCopyTexImage1DEXT((GL.Enums.TextureTarget)target, (Int32)level, (GL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); } public static - void CopyTexImage2DEXT(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) + void CopyTexImage2D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { Delegates.glCopyTexImage2DEXT((GL.Enums.TextureTarget)target, (Int32)level, (GL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); } public static - void CopyTexSubImage1DEXT(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) + void CopyTexSubImage1D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { Delegates.glCopyTexSubImage1DEXT((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); } public static - void CopyTexSubImage2DEXT(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyTexSubImage2D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { Delegates.glCopyTexSubImage2DEXT((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } public static - void CopyTexSubImage3DEXT(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyTexSubImage3D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { Delegates.glCopyTexSubImage3DEXT((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } [System.CLSCompliant(false)] public static - unsafe void GetHistogramEXT(GL.Enums.HistogramTargetEXT target, GL.Enums.Boolean reset, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* values) + unsafe void GetHistogram(GL.Enums.HistogramTargetEXT target, GL.Enums.Boolean reset, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* values) { unsafe { Delegates.glGetHistogramEXT((GL.Enums.HistogramTargetEXT)target, (GL.Enums.Boolean)reset, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)values); } } @@ -23164,7 +23164,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMinmaxEXT(GL.Enums.MinmaxTargetEXT target, GL.Enums.Boolean reset, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* values) + unsafe void GetMinmax(GL.Enums.MinmaxTargetEXT target, GL.Enums.Boolean reset, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* values) { unsafe { Delegates.glGetMinmaxEXT((GL.Enums.MinmaxTargetEXT)target, (GL.Enums.Boolean)reset, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)values); } } @@ -23236,38 +23236,38 @@ namespace OpenTK.OpenGL } public static - void HistogramEXT(GL.Enums.HistogramTargetEXT target, Int32 width, GL.Enums.PixelInternalFormat internalformat, GL.Enums.Boolean sink) + void Histogram(GL.Enums.HistogramTargetEXT target, Int32 width, GL.Enums.PixelInternalFormat internalformat, GL.Enums.Boolean sink) { Delegates.glHistogramEXT((GL.Enums.HistogramTargetEXT)target, (Int32)width, (GL.Enums.PixelInternalFormat)internalformat, (GL.Enums.Boolean)sink); } public static - void MinmaxEXT(GL.Enums.MinmaxTargetEXT target, GL.Enums.PixelInternalFormat internalformat, GL.Enums.Boolean sink) + void Minmax(GL.Enums.MinmaxTargetEXT target, GL.Enums.PixelInternalFormat internalformat, GL.Enums.Boolean sink) { Delegates.glMinmaxEXT((GL.Enums.MinmaxTargetEXT)target, (GL.Enums.PixelInternalFormat)internalformat, (GL.Enums.Boolean)sink); } public static - void ResetHistogramEXT(GL.Enums.HistogramTargetEXT target) + void ResetHistogram(GL.Enums.HistogramTargetEXT target) { Delegates.glResetHistogramEXT((GL.Enums.HistogramTargetEXT)target); } public static - void ResetMinmaxEXT(GL.Enums.MinmaxTargetEXT target) + void ResetMinmax(GL.Enums.MinmaxTargetEXT target) { Delegates.glResetMinmaxEXT((GL.Enums.MinmaxTargetEXT)target); } [System.CLSCompliant(false)] public static - unsafe void ConvolutionFilter1DEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* image) + unsafe void ConvolutionFilter1D(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* image) { unsafe { Delegates.glConvolutionFilter1DEXT((GL.Enums.ConvolutionTargetEXT)target, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)image); } } public static - void ConvolutionFilter1DEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object image) + void ConvolutionFilter1D(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object image) { System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -23285,13 +23285,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ConvolutionFilter2DEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* image) + unsafe void ConvolutionFilter2D(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* image) { unsafe { Delegates.glConvolutionFilter2DEXT((GL.Enums.ConvolutionTargetEXT)target, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)image); } } public static - void ConvolutionFilter2DEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object image) + void ConvolutionFilter2D(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object image) { System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -23308,7 +23308,7 @@ namespace OpenTK.OpenGL } public static - void ConvolutionParameterfEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.ConvolutionParameterEXT pname, Single @params) + void ConvolutionParameterf(GL.Enums.ConvolutionTargetEXT target, GL.Enums.ConvolutionParameterEXT pname, Single @params) { Delegates.glConvolutionParameterfEXT((GL.Enums.ConvolutionTargetEXT)target, (GL.Enums.ConvolutionParameterEXT)pname, (Single)@params); } @@ -23345,7 +23345,7 @@ namespace OpenTK.OpenGL } public static - void ConvolutionParameteriEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.ConvolutionParameterEXT pname, Int32 @params) + void ConvolutionParameteri(GL.Enums.ConvolutionTargetEXT target, GL.Enums.ConvolutionParameterEXT pname, Int32 @params) { Delegates.glConvolutionParameteriEXT((GL.Enums.ConvolutionTargetEXT)target, (GL.Enums.ConvolutionParameterEXT)pname, (Int32)@params); } @@ -23382,26 +23382,26 @@ namespace OpenTK.OpenGL } public static - void CopyConvolutionFilter1DEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + void CopyConvolutionFilter1D(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { Delegates.glCopyConvolutionFilter1DEXT((GL.Enums.ConvolutionTargetEXT)target, (GL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); } public static - void CopyConvolutionFilter2DEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) + void CopyConvolutionFilter2D(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { Delegates.glCopyConvolutionFilter2DEXT((GL.Enums.ConvolutionTargetEXT)target, (GL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } [System.CLSCompliant(false)] public static - unsafe void GetConvolutionFilterEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* image) + unsafe void GetConvolutionFilter(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* image) { unsafe { Delegates.glGetConvolutionFilterEXT((GL.Enums.ConvolutionTargetEXT)target, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)image); } } public static - void GetConvolutionFilterEXT(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object image) + void GetConvolutionFilter(GL.Enums.ConvolutionTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object image) { System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -23485,14 +23485,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetSeparableFilterEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* row, [Out] void* column, [Out] void* span) + unsafe void GetSeparableFilter(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* row, [Out] void* column, [Out] void* span) { unsafe { Delegates.glGetSeparableFilterEXT((GL.Enums.SeparableTargetEXT)target, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)row, (void*)column, (void*)span); } } [System.CLSCompliant(false)] public static - unsafe void GetSeparableFilterEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* row, [Out] void* column, [In, Out] object span) + unsafe void GetSeparableFilter(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* row, [Out] void* column, [In, Out] object span) { row = default(void*); column = default(void*); @@ -23509,7 +23509,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetSeparableFilterEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* row, [In, Out] object column, [Out] void* span) + unsafe void GetSeparableFilter(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* row, [In, Out] object column, [Out] void* span) { row = default(void*); span = default(void*); @@ -23526,7 +23526,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetSeparableFilterEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* row, [In, Out] object column, [In, Out] object span) + unsafe void GetSeparableFilter(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* row, [In, Out] object column, [In, Out] object span) { row = default(void*); System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); @@ -23544,7 +23544,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetSeparableFilterEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [Out] void* column, [Out] void* span) + unsafe void GetSeparableFilter(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [Out] void* column, [Out] void* span) { column = default(void*); span = default(void*); @@ -23561,7 +23561,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetSeparableFilterEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [Out] void* column, [In, Out] object span) + unsafe void GetSeparableFilter(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [Out] void* column, [In, Out] object span) { column = default(void*); System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); @@ -23579,7 +23579,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetSeparableFilterEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [In, Out] object column, [Out] void* span) + unsafe void GetSeparableFilter(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [In, Out] object column, [Out] void* span) { span = default(void*); System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); @@ -23596,7 +23596,7 @@ namespace OpenTK.OpenGL } public static - void GetSeparableFilterEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) + void GetSeparableFilter(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span) { System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned); System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); @@ -23618,14 +23618,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SeparableFilter2DEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* row, void* column) + unsafe void SeparableFilter2D(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* row, void* column) { unsafe { Delegates.glSeparableFilter2DEXT((GL.Enums.SeparableTargetEXT)target, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)row, (void*)column); } } [System.CLSCompliant(false)] public static - unsafe void SeparableFilter2DEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* row, [In, Out] object column) + unsafe void SeparableFilter2D(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* row, [In, Out] object column) { System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); try @@ -23640,7 +23640,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SeparableFilter2DEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, void* column) + unsafe void SeparableFilter2D(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, void* column) { System.Runtime.InteropServices.GCHandle row_ptr = System.Runtime.InteropServices.GCHandle.Alloc(row, System.Runtime.InteropServices.GCHandleType.Pinned); try @@ -23654,7 +23654,7 @@ namespace OpenTK.OpenGL } public static - void SeparableFilter2DEXT(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [In, Out] object column) + void SeparableFilter2D(GL.Enums.SeparableTargetEXT target, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object row, [In, Out] object column) { System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned); System.Runtime.InteropServices.GCHandle row_ptr = System.Runtime.InteropServices.GCHandle.Alloc(row, System.Runtime.InteropServices.GCHandleType.Pinned); @@ -23674,14 +23674,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreTexturesResidentEXT(Int32 n, UInt32* textures, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreTexturesResident(Int32 n, UInt32* textures, [Out] GL.Enums.Boolean* residences) { unsafe { return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (GL.Enums.Boolean*)residences); } } [System.CLSCompliant(false)] public static - unsafe Boolean AreTexturesResidentEXT(Int32 n, Int32* textures, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreTexturesResident(Int32 n, Int32* textures, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); { @@ -23692,7 +23692,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreTexturesResidentEXT(Int32 n, [In, Out] UInt32[] textures, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreTexturesResident(Int32 n, [In, Out] UInt32[] textures, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); fixed (UInt32* textures_ptr = textures) @@ -23704,7 +23704,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreTexturesResidentEXT(Int32 n, [In, Out] Int32[] textures, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreTexturesResident(Int32 n, [In, Out] Int32[] textures, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); fixed (Int32* textures_ptr = textures) @@ -23716,7 +23716,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreTexturesResidentEXT(Int32 n, ref UInt32 textures, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreTexturesResident(Int32 n, ref UInt32 textures, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); fixed (UInt32* textures_ptr = &textures) @@ -23728,7 +23728,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreTexturesResidentEXT(Int32 n, ref Int32 textures, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreTexturesResident(Int32 n, ref Int32 textures, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); fixed (Int32* textures_ptr = &textures) @@ -23740,27 +23740,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void BindTextureEXT(GL.Enums.TextureTarget target, UInt32 texture) + void BindTexture(GL.Enums.TextureTarget target, UInt32 texture) { Delegates.glBindTextureEXT((GL.Enums.TextureTarget)target, (UInt32)texture); } public static - void BindTextureEXT(GL.Enums.TextureTarget target, Int32 texture) + void BindTexture(GL.Enums.TextureTarget target, Int32 texture) { Delegates.glBindTextureEXT((GL.Enums.TextureTarget)target, (UInt32)texture); } [System.CLSCompliant(false)] public static - unsafe void DeleteTexturesEXT(Int32 n, UInt32* textures) + unsafe void DeleteTextures(Int32 n, UInt32* textures) { unsafe { Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures); } } [System.CLSCompliant(false)] public static - unsafe void DeleteTexturesEXT(Int32 n, Int32* textures) + unsafe void DeleteTextures(Int32 n, Int32* textures) { { Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures); @@ -23769,7 +23769,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteTexturesEXT(Int32 n, [In, Out] UInt32[] textures) + void DeleteTextures(Int32 n, [In, Out] UInt32[] textures) { unsafe { @@ -23781,7 +23781,7 @@ namespace OpenTK.OpenGL } public static - void DeleteTexturesEXT(Int32 n, [In, Out] Int32[] textures) + void DeleteTextures(Int32 n, [In, Out] Int32[] textures) { unsafe { @@ -23794,7 +23794,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteTexturesEXT(Int32 n, ref UInt32 textures) + void DeleteTextures(Int32 n, ref UInt32 textures) { unsafe { @@ -23806,7 +23806,7 @@ namespace OpenTK.OpenGL } public static - void DeleteTexturesEXT(Int32 n, ref Int32 textures) + void DeleteTextures(Int32 n, ref Int32 textures) { unsafe { @@ -23819,14 +23819,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenTexturesEXT(Int32 n, [Out] UInt32* textures) + unsafe void GenTextures(Int32 n, [Out] UInt32* textures) { unsafe { Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures); } } [System.CLSCompliant(false)] public static - unsafe void GenTexturesEXT(Int32 n, [Out] Int32* textures) + unsafe void GenTextures(Int32 n, [Out] Int32* textures) { textures = default(Int32*); { @@ -23836,7 +23836,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenTexturesEXT(Int32 n, [In, Out] UInt32[] textures) + void GenTextures(Int32 n, [In, Out] UInt32[] textures) { unsafe { @@ -23848,7 +23848,7 @@ namespace OpenTK.OpenGL } public static - void GenTexturesEXT(Int32 n, [In, Out] Int32[] textures) + void GenTextures(Int32 n, [In, Out] Int32[] textures) { unsafe { @@ -23861,7 +23861,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenTexturesEXT(Int32 n, [Out] out UInt32 textures) + void GenTextures(Int32 n, [Out] out UInt32 textures) { textures = default(UInt32); unsafe @@ -23875,7 +23875,7 @@ namespace OpenTK.OpenGL } public static - void GenTexturesEXT(Int32 n, [Out] out Int32 textures) + void GenTextures(Int32 n, [Out] out Int32 textures) { textures = default(Int32); unsafe @@ -23890,27 +23890,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsTextureEXT(UInt32 texture) + Boolean IsTexture(UInt32 texture) { return Delegates.glIsTextureEXT((UInt32)texture); } public static - Boolean IsTextureEXT(Int32 texture) + Boolean IsTexture(Int32 texture) { return Delegates.glIsTextureEXT((UInt32)texture); } [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, UInt32* textures, Single* priorities) + unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities) { unsafe { Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities); } } [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, Int32* textures, Single* priorities) + unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single* priorities) { { Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities); @@ -23919,7 +23919,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, UInt32* textures, [In, Out] Single[] priorities) + unsafe void PrioritizeTextures(Int32 n, UInt32* textures, [In, Out] Single[] priorities) { fixed (Single* priorities_ptr = priorities) { @@ -23929,7 +23929,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, Int32* textures, [In, Out] Single[] priorities) + unsafe void PrioritizeTextures(Int32 n, Int32* textures, [In, Out] Single[] priorities) { fixed (Single* priorities_ptr = priorities) { @@ -23939,7 +23939,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, UInt32* textures, ref Single priorities) + unsafe void PrioritizeTextures(Int32 n, UInt32* textures, ref Single priorities) { fixed (Single* priorities_ptr = &priorities) { @@ -23949,7 +23949,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, Int32* textures, ref Single priorities) + unsafe void PrioritizeTextures(Int32 n, Int32* textures, ref Single priorities) { fixed (Single* priorities_ptr = &priorities) { @@ -23959,7 +23959,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, [In, Out] UInt32[] textures, Single* priorities) + unsafe void PrioritizeTextures(Int32 n, [In, Out] UInt32[] textures, Single* priorities) { fixed (UInt32* textures_ptr = textures) { @@ -23969,7 +23969,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, [In, Out] Int32[] textures, Single* priorities) + unsafe void PrioritizeTextures(Int32 n, [In, Out] Int32[] textures, Single* priorities) { fixed (Int32* textures_ptr = textures) { @@ -23979,7 +23979,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTexturesEXT(Int32 n, [In, Out] UInt32[] textures, [In, Out] Single[] priorities) + void PrioritizeTextures(Int32 n, [In, Out] UInt32[] textures, [In, Out] Single[] priorities) { unsafe { @@ -23992,7 +23992,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTexturesEXT(Int32 n, [In, Out] Int32[] textures, [In, Out] Single[] priorities) + void PrioritizeTextures(Int32 n, [In, Out] Int32[] textures, [In, Out] Single[] priorities) { unsafe { @@ -24006,7 +24006,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTexturesEXT(Int32 n, [In, Out] UInt32[] textures, ref Single priorities) + void PrioritizeTextures(Int32 n, [In, Out] UInt32[] textures, ref Single priorities) { unsafe { @@ -24019,7 +24019,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTexturesEXT(Int32 n, [In, Out] Int32[] textures, ref Single priorities) + void PrioritizeTextures(Int32 n, [In, Out] Int32[] textures, ref Single priorities) { unsafe { @@ -24033,7 +24033,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, ref UInt32 textures, Single* priorities) + unsafe void PrioritizeTextures(Int32 n, ref UInt32 textures, Single* priorities) { fixed (UInt32* textures_ptr = &textures) { @@ -24043,7 +24043,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PrioritizeTexturesEXT(Int32 n, ref Int32 textures, Single* priorities) + unsafe void PrioritizeTextures(Int32 n, ref Int32 textures, Single* priorities) { fixed (Int32* textures_ptr = &textures) { @@ -24053,7 +24053,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTexturesEXT(Int32 n, ref UInt32 textures, [In, Out] Single[] priorities) + void PrioritizeTextures(Int32 n, ref UInt32 textures, [In, Out] Single[] priorities) { unsafe { @@ -24066,7 +24066,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTexturesEXT(Int32 n, ref Int32 textures, [In, Out] Single[] priorities) + void PrioritizeTextures(Int32 n, ref Int32 textures, [In, Out] Single[] priorities) { unsafe { @@ -24080,7 +24080,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void PrioritizeTexturesEXT(Int32 n, ref UInt32 textures, ref Single priorities) + void PrioritizeTextures(Int32 n, ref UInt32 textures, ref Single priorities) { unsafe { @@ -24093,7 +24093,7 @@ namespace OpenTK.OpenGL } public static - void PrioritizeTexturesEXT(Int32 n, ref Int32 textures, ref Single priorities) + void PrioritizeTextures(Int32 n, ref Int32 textures, ref Single priorities) { unsafe { @@ -24106,20 +24106,20 @@ namespace OpenTK.OpenGL } public static - void ArrayElementEXT(Int32 i) + void ArrayElement(Int32 i) { Delegates.glArrayElementEXT((Int32)i); } [System.CLSCompliant(false)] public static - unsafe void ColorPointerEXT(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, Int32 count, void* pointer) + unsafe void ColorPointer(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, Int32 count, void* pointer) { unsafe { Delegates.glColorPointerEXT((Int32)size, (GL.Enums.ColorPointerType)type, (Int32)stride, (Int32)count, (void*)pointer); } } public static - void ColorPointerEXT(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void ColorPointer(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24136,27 +24136,27 @@ namespace OpenTK.OpenGL } public static - void DrawArraysEXT(GL.Enums.BeginMode mode, Int32 first, Int32 count) + void DrawArrays(GL.Enums.BeginMode mode, Int32 first, Int32 count) { Delegates.glDrawArraysEXT((GL.Enums.BeginMode)mode, (Int32)first, (Int32)count); } [System.CLSCompliant(false)] public static - unsafe void EdgeFlagPointerEXT(Int32 stride, Int32 count, GL.Enums.Boolean* pointer) + unsafe void EdgeFlagPointer(Int32 stride, Int32 count, GL.Enums.Boolean* pointer) { unsafe { Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (GL.Enums.Boolean*)pointer); } } [System.CLSCompliant(false)] public static - unsafe void GetPointervEXT(GL.Enums.GetPointervPName pname, [Out] void* @params) + unsafe void GetPointerv(GL.Enums.GetPointervPName pname, [Out] void* @params) { unsafe { Delegates.glGetPointervEXT((GL.Enums.GetPointervPName)pname, (void*)@params); } } public static - void GetPointervEXT(GL.Enums.GetPointervPName pname, [In, Out] object @params) + void GetPointerv(GL.Enums.GetPointervPName pname, [In, Out] object @params) { System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24174,13 +24174,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void IndexPointerEXT(GL.Enums.IndexPointerType type, Int32 stride, Int32 count, void* pointer) + unsafe void IndexPointer(GL.Enums.IndexPointerType type, Int32 stride, Int32 count, void* pointer) { unsafe { Delegates.glIndexPointerEXT((GL.Enums.IndexPointerType)type, (Int32)stride, (Int32)count, (void*)pointer); } } public static - void IndexPointerEXT(GL.Enums.IndexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void IndexPointer(GL.Enums.IndexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24198,13 +24198,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void NormalPointerEXT(GL.Enums.NormalPointerType type, Int32 stride, Int32 count, void* pointer) + unsafe void NormalPointer(GL.Enums.NormalPointerType type, Int32 stride, Int32 count, void* pointer) { unsafe { Delegates.glNormalPointerEXT((GL.Enums.NormalPointerType)type, (Int32)stride, (Int32)count, (void*)pointer); } } public static - void NormalPointerEXT(GL.Enums.NormalPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void NormalPointer(GL.Enums.NormalPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24222,13 +24222,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoordPointerEXT(Int32 size, GL.Enums.TexCoordPointerType type, Int32 stride, Int32 count, void* pointer) + unsafe void TexCoordPointer(Int32 size, GL.Enums.TexCoordPointerType type, Int32 stride, Int32 count, void* pointer) { unsafe { Delegates.glTexCoordPointerEXT((Int32)size, (GL.Enums.TexCoordPointerType)type, (Int32)stride, (Int32)count, (void*)pointer); } } public static - void TexCoordPointerEXT(Int32 size, GL.Enums.TexCoordPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void TexCoordPointer(Int32 size, GL.Enums.TexCoordPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24246,13 +24246,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexPointerEXT(Int32 size, GL.Enums.VertexPointerType type, Int32 stride, Int32 count, void* pointer) + unsafe void VertexPointer(Int32 size, GL.Enums.VertexPointerType type, Int32 stride, Int32 count, void* pointer) { unsafe { Delegates.glVertexPointerEXT((Int32)size, (GL.Enums.VertexPointerType)type, (Int32)stride, (Int32)count, (void*)pointer); } } public static - void VertexPointerEXT(Int32 size, GL.Enums.VertexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) + void VertexPointer(Int32 size, GL.Enums.VertexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24269,13 +24269,13 @@ namespace OpenTK.OpenGL } public static - void BlendEquationEXT(GL.Enums.BlendEquationModeEXT mode) + void BlendEquation(GL.Enums.BlendEquationModeEXT mode) { Delegates.glBlendEquationEXT((GL.Enums.BlendEquationModeEXT)mode); } public static - void PointParameterfEXT(GL.Enums.EXT_point_parameters pname, Single param) + void PointParameterf(GL.Enums.EXT_point_parameters pname, Single param) { Delegates.glPointParameterfEXT((GL.Enums.EXT_point_parameters)pname, (Single)param); } @@ -24313,13 +24313,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ColorSubTableEXT(GL.Enums.EXT_color_subtable target, Int32 start, Int32 count, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* data) + unsafe void ColorSubTable(GL.Enums.EXT_color_subtable target, Int32 start, Int32 count, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* data) { unsafe { Delegates.glColorSubTableEXT((GL.Enums.EXT_color_subtable)target, (Int32)start, (Int32)count, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)data); } } public static - void ColorSubTableEXT(GL.Enums.EXT_color_subtable target, Int32 start, Int32 count, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object data) + void ColorSubTable(GL.Enums.EXT_color_subtable target, Int32 start, Int32 count, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24336,20 +24336,20 @@ namespace OpenTK.OpenGL } public static - void CopyColorSubTableEXT(GL.Enums.EXT_color_subtable target, Int32 start, Int32 x, Int32 y, Int32 width) + void CopyColorSubTable(GL.Enums.EXT_color_subtable target, Int32 start, Int32 x, Int32 y, Int32 width) { Delegates.glCopyColorSubTableEXT((GL.Enums.EXT_color_subtable)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); } [System.CLSCompliant(false)] public static - unsafe void ColorTableEXT(GL.Enums.EXT_paletted_texture target, GL.Enums.PixelInternalFormat internalFormat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* table) + unsafe void ColorTable(GL.Enums.EXT_paletted_texture target, GL.Enums.PixelInternalFormat internalFormat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* table) { unsafe { Delegates.glColorTableEXT((GL.Enums.EXT_paletted_texture)target, (GL.Enums.PixelInternalFormat)internalFormat, (Int32)width, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)table); } } public static - void ColorTableEXT(GL.Enums.EXT_paletted_texture target, GL.Enums.PixelInternalFormat internalFormat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object table) + void ColorTable(GL.Enums.EXT_paletted_texture target, GL.Enums.PixelInternalFormat internalFormat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object table) { System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24367,13 +24367,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetColorTableEXT(GL.Enums.EXT_paletted_texture target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* data) + unsafe void GetColorTable(GL.Enums.EXT_paletted_texture target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* data) { unsafe { Delegates.glGetColorTableEXT((GL.Enums.EXT_paletted_texture)target, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)data); } } public static - void GetColorTableEXT(GL.Enums.EXT_paletted_texture target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object data) + void GetColorTable(GL.Enums.EXT_paletted_texture target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24456,25 +24456,25 @@ namespace OpenTK.OpenGL } public static - void IndexMaterialEXT(GL.Enums.MaterialFace face, GL.Enums.EXT_index_material mode) + void IndexMaterial(GL.Enums.MaterialFace face, GL.Enums.EXT_index_material mode) { Delegates.glIndexMaterialEXT((GL.Enums.MaterialFace)face, (GL.Enums.EXT_index_material)mode); } public static - void IndexFuncEXT(GL.Enums.EXT_index_func func, Single @ref) + void IndexFunc(GL.Enums.EXT_index_func func, Single @ref) { Delegates.glIndexFuncEXT((GL.Enums.EXT_index_func)func, (Single)@ref); } public static - void LockArraysEXT(Int32 first, Int32 count) + void LockArrays(Int32 first, Int32 count) { Delegates.glLockArraysEXT((Int32)first, (Int32)count); } public static - void UnlockArraysEXT() + void UnlockArrays() { Delegates.glUnlockArraysEXT(); } @@ -24547,14 +24547,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DrawRangeElementsEXT(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, GL.Enums.EXT_draw_range_elements type, void* indices) + unsafe void DrawRangeElements(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, GL.Enums.EXT_draw_range_elements type, void* indices) { unsafe { Delegates.glDrawRangeElementsEXT((GL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (GL.Enums.EXT_draw_range_elements)type, (void*)indices); } } [System.CLSCompliant(false)] public static - unsafe void DrawRangeElementsEXT(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, GL.Enums.EXT_draw_range_elements type, void* indices) + unsafe void DrawRangeElements(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, GL.Enums.EXT_draw_range_elements type, void* indices) { { Delegates.glDrawRangeElementsEXT((GL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count, (GL.Enums.EXT_draw_range_elements)type, (void*)indices); @@ -24563,7 +24563,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DrawRangeElementsEXT(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, GL.Enums.EXT_draw_range_elements type, [In, Out] object indices) + void DrawRangeElements(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count, GL.Enums.EXT_draw_range_elements type, [In, Out] object indices) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24580,7 +24580,7 @@ namespace OpenTK.OpenGL } public static - void DrawRangeElementsEXT(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, GL.Enums.EXT_draw_range_elements type, [In, Out] object indices) + void DrawRangeElements(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count, GL.Enums.EXT_draw_range_elements type, [In, Out] object indices) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -24597,31 +24597,31 @@ namespace OpenTK.OpenGL } public static - void ApplyTextureEXT(GL.Enums.EXT_light_texture mode) + void ApplyTexture(GL.Enums.EXT_light_texture mode) { Delegates.glApplyTextureEXT((GL.Enums.EXT_light_texture)mode); } public static - void TextureLightEXT(GL.Enums.EXT_light_texture pname) + void TextureLight(GL.Enums.EXT_light_texture pname) { Delegates.glTextureLightEXT((GL.Enums.EXT_light_texture)pname); } public static - void TextureMaterialEXT(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter mode) + void TextureMaterial(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter mode) { Delegates.glTextureMaterialEXT((GL.Enums.MaterialFace)face, (GL.Enums.MaterialParameter)mode); } public static - void PixelTransformParameteriEXT(GL.Enums.EXT_pixel_transform target, GL.Enums.EXT_pixel_transform pname, Int32 param) + void PixelTransformParameteri(GL.Enums.EXT_pixel_transform target, GL.Enums.EXT_pixel_transform pname, Int32 param) { Delegates.glPixelTransformParameteriEXT((GL.Enums.EXT_pixel_transform)target, (GL.Enums.EXT_pixel_transform)pname, (Int32)param); } public static - void PixelTransformParameterfEXT(GL.Enums.EXT_pixel_transform target, GL.Enums.EXT_pixel_transform pname, Single param) + void PixelTransformParameterf(GL.Enums.EXT_pixel_transform target, GL.Enums.EXT_pixel_transform pname, Single param) { Delegates.glPixelTransformParameterfEXT((GL.Enums.EXT_pixel_transform)target, (GL.Enums.EXT_pixel_transform)pname, (Single)param); } @@ -24703,14 +24703,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(SByte* v) + unsafe void SecondaryColor3(SByte* v) { unsafe { Delegates.glSecondaryColor3bvEXT((SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Byte* v) + unsafe void SecondaryColor3(Byte* v) { { Delegates.glSecondaryColor3bvEXT((SByte*)v); @@ -24719,7 +24719,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3v([In, Out] SByte[] v) + void SecondaryColor3([In, Out] SByte[] v) { unsafe { @@ -24731,7 +24731,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v([In, Out] Byte[] v) + void SecondaryColor3([In, Out] Byte[] v) { unsafe { @@ -24744,7 +24744,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3v(ref SByte v) + void SecondaryColor3(ref SByte v) { unsafe { @@ -24756,7 +24756,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Byte v) + void SecondaryColor3(ref Byte v) { unsafe { @@ -24775,13 +24775,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Double* v) + unsafe void SecondaryColor3(Double* v) { unsafe { Delegates.glSecondaryColor3dvEXT((Double*)v); } } public static - void SecondaryColor3v([In, Out] Double[] v) + void SecondaryColor3([In, Out] Double[] v) { unsafe { @@ -24793,7 +24793,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Double v) + void SecondaryColor3(ref Double v) { unsafe { @@ -24812,13 +24812,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Single* v) + unsafe void SecondaryColor3(Single* v) { unsafe { Delegates.glSecondaryColor3fvEXT((Single*)v); } } public static - void SecondaryColor3v([In, Out] Single[] v) + void SecondaryColor3([In, Out] Single[] v) { unsafe { @@ -24830,7 +24830,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Single v) + void SecondaryColor3(ref Single v) { unsafe { @@ -24849,13 +24849,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Int32* v) + unsafe void SecondaryColor3(Int32* v) { unsafe { Delegates.glSecondaryColor3ivEXT((Int32*)v); } } public static - void SecondaryColor3v([In, Out] Int32[] v) + void SecondaryColor3([In, Out] Int32[] v) { unsafe { @@ -24867,7 +24867,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Int32 v) + void SecondaryColor3(ref Int32 v) { unsafe { @@ -24886,13 +24886,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(Int16* v) + unsafe void SecondaryColor3(Int16* v) { unsafe { Delegates.glSecondaryColor3svEXT((Int16*)v); } } public static - void SecondaryColor3v([In, Out] Int16[] v) + void SecondaryColor3([In, Out] Int16[] v) { unsafe { @@ -24904,7 +24904,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3v(ref Int16 v) + void SecondaryColor3(ref Int16 v) { unsafe { @@ -24924,14 +24924,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(UInt32* v) + unsafe void SecondaryColor3(UInt32* v) { unsafe { Delegates.glSecondaryColor3uivEXT((UInt32*)v); } } [System.CLSCompliant(false)] public static - void SecondaryColor3v([In, Out] UInt32[] v) + void SecondaryColor3([In, Out] UInt32[] v) { unsafe { @@ -24944,7 +24944,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3v(ref UInt32 v) + void SecondaryColor3(ref UInt32 v) { unsafe { @@ -24964,14 +24964,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3v(UInt16* v) + unsafe void SecondaryColor3(UInt16* v) { unsafe { Delegates.glSecondaryColor3usvEXT((UInt16*)v); } } [System.CLSCompliant(false)] public static - void SecondaryColor3v([In, Out] UInt16[] v) + void SecondaryColor3([In, Out] UInt16[] v) { unsafe { @@ -24984,7 +24984,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3v(ref UInt16 v) + void SecondaryColor3(ref UInt16 v) { unsafe { @@ -24997,13 +24997,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColorPointerEXT(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, void* pointer) + unsafe void SecondaryColorPointer(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, void* pointer) { unsafe { Delegates.glSecondaryColorPointerEXT((Int32)size, (GL.Enums.ColorPointerType)type, (Int32)stride, (void*)pointer); } } public static - void SecondaryColorPointerEXT(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, [In, Out] object pointer) + void SecondaryColorPointer(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -25020,21 +25020,21 @@ namespace OpenTK.OpenGL } public static - void TextureNormalEXT(GL.Enums.EXT_texture_perturb_normal mode) + void TextureNormal(GL.Enums.EXT_texture_perturb_normal mode) { Delegates.glTextureNormalEXT((GL.Enums.EXT_texture_perturb_normal)mode); } [System.CLSCompliant(false)] public static - unsafe void MultiDrawArraysEXT(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount) { unsafe { Delegates.glMultiDrawArraysEXT((GL.Enums.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); } } [System.CLSCompliant(false)] public static - unsafe void MultiDrawArraysEXT(GL.Enums.BeginMode mode, [Out] Int32* first, [In, Out] Int32[] count, Int32 primcount) + unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32* first, [In, Out] Int32[] count, Int32 primcount) { first = default(Int32*); fixed (Int32* count_ptr = count) @@ -25045,7 +25045,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArraysEXT(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] out Int32 count, Int32 primcount) + unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] Int32* first, [Out] out Int32 count, Int32 primcount) { first = default(Int32*); count = default(Int32); @@ -25058,7 +25058,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArraysEXT(GL.Enums.BeginMode mode, [In, Out] Int32[] first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [In, Out] Int32[] first, [Out] Int32* count, Int32 primcount) { count = default(Int32*); fixed (Int32* first_ptr = first) @@ -25068,7 +25068,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArraysEXT(GL.Enums.BeginMode mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount) + void MultiDrawArrays(GL.Enums.BeginMode mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount) { unsafe { @@ -25081,7 +25081,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArraysEXT(GL.Enums.BeginMode mode, [In, Out] Int32[] first, [Out] out Int32 count, Int32 primcount) + void MultiDrawArrays(GL.Enums.BeginMode mode, [In, Out] Int32[] first, [Out] out Int32 count, Int32 primcount) { count = default(Int32); unsafe @@ -25097,7 +25097,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawArraysEXT(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32* count, Int32 primcount) + unsafe void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] Int32* count, Int32 primcount) { first = default(Int32); count = default(Int32*); @@ -25109,7 +25109,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArraysEXT(GL.Enums.BeginMode mode, [Out] out Int32 first, [In, Out] Int32[] count, Int32 primcount) + void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] out Int32 first, [In, Out] Int32[] count, Int32 primcount) { first = default(Int32); unsafe @@ -25124,7 +25124,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawArraysEXT(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) + void MultiDrawArrays(GL.Enums.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount) { first = default(Int32); count = default(Int32); @@ -25142,14 +25142,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementsEXT(GL.Enums.BeginMode mode, Int32* count, GL.Enums.EXT_multi_draw_arrays type, void* indices, Int32 primcount) + unsafe void MultiDrawElements(GL.Enums.BeginMode mode, Int32* count, GL.Enums.EXT_multi_draw_arrays type, void* indices, Int32 primcount) { unsafe { Delegates.glMultiDrawElementsEXT((GL.Enums.BeginMode)mode, (Int32*)count, (GL.Enums.EXT_multi_draw_arrays)type, (void*)indices, (Int32)primcount); } } [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementsEXT(GL.Enums.BeginMode mode, Int32* count, GL.Enums.EXT_multi_draw_arrays type, [In, Out] object indices, Int32 primcount) + unsafe void MultiDrawElements(GL.Enums.BeginMode mode, Int32* count, GL.Enums.EXT_multi_draw_arrays type, [In, Out] object indices, Int32 primcount) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try @@ -25164,7 +25164,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementsEXT(GL.Enums.BeginMode mode, [In, Out] Int32[] count, GL.Enums.EXT_multi_draw_arrays type, void* indices, Int32 primcount) + unsafe void MultiDrawElements(GL.Enums.BeginMode mode, [In, Out] Int32[] count, GL.Enums.EXT_multi_draw_arrays type, void* indices, Int32 primcount) { fixed (Int32* count_ptr = count) { @@ -25173,7 +25173,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawElementsEXT(GL.Enums.BeginMode mode, [In, Out] Int32[] count, GL.Enums.EXT_multi_draw_arrays type, [In, Out] object indices, Int32 primcount) + void MultiDrawElements(GL.Enums.BeginMode mode, [In, Out] Int32[] count, GL.Enums.EXT_multi_draw_arrays type, [In, Out] object indices, Int32 primcount) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -25192,7 +25192,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementsEXT(GL.Enums.BeginMode mode, ref Int32 count, GL.Enums.EXT_multi_draw_arrays type, void* indices, Int32 primcount) + unsafe void MultiDrawElements(GL.Enums.BeginMode mode, ref Int32 count, GL.Enums.EXT_multi_draw_arrays type, void* indices, Int32 primcount) { fixed (Int32* count_ptr = &count) { @@ -25201,7 +25201,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawElementsEXT(GL.Enums.BeginMode mode, ref Int32 count, GL.Enums.EXT_multi_draw_arrays type, [In, Out] object indices, Int32 primcount) + void MultiDrawElements(GL.Enums.BeginMode mode, ref Int32 count, GL.Enums.EXT_multi_draw_arrays type, [In, Out] object indices, Int32 primcount) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -25219,7 +25219,7 @@ namespace OpenTK.OpenGL } public static - void FogCoordfEXT(Single coord) + void FogCoordf(Single coord) { Delegates.glFogCoordfEXT((Single)coord); } @@ -25256,7 +25256,7 @@ namespace OpenTK.OpenGL } public static - void FogCoorddEXT(Double coord) + void FogCoordd(Double coord) { Delegates.glFogCoorddEXT((Double)coord); } @@ -25294,13 +25294,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void FogCoordPointerEXT(GL.Enums.EXT_fog_coord type, Int32 stride, void* pointer) + unsafe void FogCoordPointer(GL.Enums.EXT_fog_coord type, Int32 stride, void* pointer) { unsafe { Delegates.glFogCoordPointerEXT((GL.Enums.EXT_fog_coord)type, (Int32)stride, (void*)pointer); } } public static - void FogCoordPointerEXT(GL.Enums.EXT_fog_coord type, Int32 stride, [In, Out] object pointer) + void FogCoordPointer(GL.Enums.EXT_fog_coord type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -25331,14 +25331,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Tangent3v(SByte* v) + unsafe void Tangent3(SByte* v) { unsafe { Delegates.glTangent3bvEXT((SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void Tangent3v(Byte* v) + unsafe void Tangent3(Byte* v) { { Delegates.glTangent3bvEXT((SByte*)v); @@ -25347,7 +25347,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Tangent3v([In, Out] SByte[] v) + void Tangent3([In, Out] SByte[] v) { unsafe { @@ -25359,7 +25359,7 @@ namespace OpenTK.OpenGL } public static - void Tangent3v([In, Out] Byte[] v) + void Tangent3([In, Out] Byte[] v) { unsafe { @@ -25372,7 +25372,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Tangent3v(ref SByte v) + void Tangent3(ref SByte v) { unsafe { @@ -25384,7 +25384,7 @@ namespace OpenTK.OpenGL } public static - void Tangent3v(ref Byte v) + void Tangent3(ref Byte v) { unsafe { @@ -25403,13 +25403,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Tangent3v(Double* v) + unsafe void Tangent3(Double* v) { unsafe { Delegates.glTangent3dvEXT((Double*)v); } } public static - void Tangent3v([In, Out] Double[] v) + void Tangent3([In, Out] Double[] v) { unsafe { @@ -25421,7 +25421,7 @@ namespace OpenTK.OpenGL } public static - void Tangent3v(ref Double v) + void Tangent3(ref Double v) { unsafe { @@ -25440,13 +25440,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Tangent3v(Single* v) + unsafe void Tangent3(Single* v) { unsafe { Delegates.glTangent3fvEXT((Single*)v); } } public static - void Tangent3v([In, Out] Single[] v) + void Tangent3([In, Out] Single[] v) { unsafe { @@ -25458,7 +25458,7 @@ namespace OpenTK.OpenGL } public static - void Tangent3v(ref Single v) + void Tangent3(ref Single v) { unsafe { @@ -25477,13 +25477,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Tangent3v(Int32* v) + unsafe void Tangent3(Int32* v) { unsafe { Delegates.glTangent3ivEXT((Int32*)v); } } public static - void Tangent3v([In, Out] Int32[] v) + void Tangent3([In, Out] Int32[] v) { unsafe { @@ -25495,7 +25495,7 @@ namespace OpenTK.OpenGL } public static - void Tangent3v(ref Int32 v) + void Tangent3(ref Int32 v) { unsafe { @@ -25514,13 +25514,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Tangent3v(Int16* v) + unsafe void Tangent3(Int16* v) { unsafe { Delegates.glTangent3svEXT((Int16*)v); } } public static - void Tangent3v([In, Out] Int16[] v) + void Tangent3([In, Out] Int16[] v) { unsafe { @@ -25532,7 +25532,7 @@ namespace OpenTK.OpenGL } public static - void Tangent3v(ref Int16 v) + void Tangent3(ref Int16 v) { unsafe { @@ -25558,14 +25558,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Binormal3v(SByte* v) + unsafe void Binormal3(SByte* v) { unsafe { Delegates.glBinormal3bvEXT((SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void Binormal3v(Byte* v) + unsafe void Binormal3(Byte* v) { { Delegates.glBinormal3bvEXT((SByte*)v); @@ -25574,7 +25574,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Binormal3v([In, Out] SByte[] v) + void Binormal3([In, Out] SByte[] v) { unsafe { @@ -25586,7 +25586,7 @@ namespace OpenTK.OpenGL } public static - void Binormal3v([In, Out] Byte[] v) + void Binormal3([In, Out] Byte[] v) { unsafe { @@ -25599,7 +25599,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Binormal3v(ref SByte v) + void Binormal3(ref SByte v) { unsafe { @@ -25611,7 +25611,7 @@ namespace OpenTK.OpenGL } public static - void Binormal3v(ref Byte v) + void Binormal3(ref Byte v) { unsafe { @@ -25630,13 +25630,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Binormal3v(Double* v) + unsafe void Binormal3(Double* v) { unsafe { Delegates.glBinormal3dvEXT((Double*)v); } } public static - void Binormal3v([In, Out] Double[] v) + void Binormal3([In, Out] Double[] v) { unsafe { @@ -25648,7 +25648,7 @@ namespace OpenTK.OpenGL } public static - void Binormal3v(ref Double v) + void Binormal3(ref Double v) { unsafe { @@ -25667,13 +25667,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Binormal3v(Single* v) + unsafe void Binormal3(Single* v) { unsafe { Delegates.glBinormal3fvEXT((Single*)v); } } public static - void Binormal3v([In, Out] Single[] v) + void Binormal3([In, Out] Single[] v) { unsafe { @@ -25685,7 +25685,7 @@ namespace OpenTK.OpenGL } public static - void Binormal3v(ref Single v) + void Binormal3(ref Single v) { unsafe { @@ -25704,13 +25704,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Binormal3v(Int32* v) + unsafe void Binormal3(Int32* v) { unsafe { Delegates.glBinormal3ivEXT((Int32*)v); } } public static - void Binormal3v([In, Out] Int32[] v) + void Binormal3([In, Out] Int32[] v) { unsafe { @@ -25722,7 +25722,7 @@ namespace OpenTK.OpenGL } public static - void Binormal3v(ref Int32 v) + void Binormal3(ref Int32 v) { unsafe { @@ -25741,13 +25741,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Binormal3v(Int16* v) + unsafe void Binormal3(Int16* v) { unsafe { Delegates.glBinormal3svEXT((Int16*)v); } } public static - void Binormal3v([In, Out] Int16[] v) + void Binormal3([In, Out] Int16[] v) { unsafe { @@ -25759,7 +25759,7 @@ namespace OpenTK.OpenGL } public static - void Binormal3v(ref Int16 v) + void Binormal3(ref Int16 v) { unsafe { @@ -25772,13 +25772,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TangentPointerEXT(GL.Enums.EXT_coordinate_frame type, Int32 stride, void* pointer) + unsafe void TangentPointer(GL.Enums.EXT_coordinate_frame type, Int32 stride, void* pointer) { unsafe { Delegates.glTangentPointerEXT((GL.Enums.EXT_coordinate_frame)type, (Int32)stride, (void*)pointer); } } public static - void TangentPointerEXT(GL.Enums.EXT_coordinate_frame type, Int32 stride, [In, Out] object pointer) + void TangentPointer(GL.Enums.EXT_coordinate_frame type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -25796,13 +25796,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void BinormalPointerEXT(GL.Enums.EXT_coordinate_frame type, Int32 stride, void* pointer) + unsafe void BinormalPointer(GL.Enums.EXT_coordinate_frame type, Int32 stride, void* pointer) { unsafe { Delegates.glBinormalPointerEXT((GL.Enums.EXT_coordinate_frame)type, (Int32)stride, (void*)pointer); } } public static - void BinormalPointerEXT(GL.Enums.EXT_coordinate_frame type, Int32 stride, [In, Out] object pointer) + void BinormalPointer(GL.Enums.EXT_coordinate_frame type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -25819,13 +25819,13 @@ namespace OpenTK.OpenGL } public static - void BlendFuncSeparateEXT(GL.Enums.EXT_blend_func_separate sfactorRGB, GL.Enums.EXT_blend_func_separate dfactorRGB, GL.Enums.EXT_blend_func_separate sfactorAlpha, GL.Enums.EXT_blend_func_separate dfactorAlpha) + void BlendFuncSeparate(GL.Enums.EXT_blend_func_separate sfactorRGB, GL.Enums.EXT_blend_func_separate dfactorRGB, GL.Enums.EXT_blend_func_separate sfactorAlpha, GL.Enums.EXT_blend_func_separate dfactorAlpha) { Delegates.glBlendFuncSeparateEXT((GL.Enums.EXT_blend_func_separate)sfactorRGB, (GL.Enums.EXT_blend_func_separate)dfactorRGB, (GL.Enums.EXT_blend_func_separate)sfactorAlpha, (GL.Enums.EXT_blend_func_separate)dfactorAlpha); } public static - void VertexWeightfEXT(Single weight) + void VertexWeightf(Single weight) { Delegates.glVertexWeightfEXT((Single)weight); } @@ -25863,13 +25863,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexWeightPointerEXT(Int32 size, GL.Enums.EXT_vertex_weighting type, Int32 stride, void* pointer) + unsafe void VertexWeightPointer(Int32 size, GL.Enums.EXT_vertex_weighting type, Int32 stride, void* pointer) { unsafe { Delegates.glVertexWeightPointerEXT((Int32)size, (GL.Enums.EXT_vertex_weighting)type, (Int32)stride, (void*)pointer); } } public static - void VertexWeightPointerEXT(Int32 size, GL.Enums.EXT_vertex_weighting type, Int32 stride, [In, Out] object pointer) + void VertexWeightPointer(Int32 size, GL.Enums.EXT_vertex_weighting type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -25886,182 +25886,182 @@ namespace OpenTK.OpenGL } public static - void SampleMaskEXT(Single value, GL.Enums.Boolean invert) + void SampleMask(Single value, GL.Enums.Boolean invert) { Delegates.glSampleMaskEXT((Single)value, (GL.Enums.Boolean)invert); } public static - void SamplePatternEXT(GL.Enums.EXT_multisample pattern) + void SamplePattern(GL.Enums.EXT_multisample pattern) { Delegates.glSamplePatternEXT((GL.Enums.EXT_multisample)pattern); } public static - void BeginVertexShaderEXT() + void BeginVertexShader() { Delegates.glBeginVertexShaderEXT(); } public static - void EndVertexShaderEXT() + void EndVertexShader() { Delegates.glEndVertexShaderEXT(); } [System.CLSCompliant(false)] public static - void BindVertexShaderEXT(UInt32 id) + void BindVertexShader(UInt32 id) { Delegates.glBindVertexShaderEXT((UInt32)id); } public static - void BindVertexShaderEXT(Int32 id) + void BindVertexShader(Int32 id) { Delegates.glBindVertexShaderEXT((UInt32)id); } [System.CLSCompliant(false)] public static - Int32 GenVertexShadersEXT(UInt32 range) + Int32 GenVertexShaders(UInt32 range) { return Delegates.glGenVertexShadersEXT((UInt32)range); } public static - Int32 GenVertexShadersEXT(Int32 range) + Int32 GenVertexShaders(Int32 range) { return Delegates.glGenVertexShadersEXT((UInt32)range); } [System.CLSCompliant(false)] public static - void DeleteVertexShaderEXT(UInt32 id) + void DeleteVertexShader(UInt32 id) { Delegates.glDeleteVertexShaderEXT((UInt32)id); } public static - void DeleteVertexShaderEXT(Int32 id) + void DeleteVertexShader(Int32 id) { Delegates.glDeleteVertexShaderEXT((UInt32)id); } [System.CLSCompliant(false)] public static - void ShaderOp1EXT(GL.Enums.EXT_vertex_shader op, UInt32 res, UInt32 arg1) + void ShaderOp1(GL.Enums.EXT_vertex_shader op, UInt32 res, UInt32 arg1) { Delegates.glShaderOp1EXT((GL.Enums.EXT_vertex_shader)op, (UInt32)res, (UInt32)arg1); } public static - void ShaderOp1EXT(GL.Enums.EXT_vertex_shader op, Int32 res, Int32 arg1) + void ShaderOp1(GL.Enums.EXT_vertex_shader op, Int32 res, Int32 arg1) { Delegates.glShaderOp1EXT((GL.Enums.EXT_vertex_shader)op, (UInt32)res, (UInt32)arg1); } [System.CLSCompliant(false)] public static - void ShaderOp2EXT(GL.Enums.EXT_vertex_shader op, UInt32 res, UInt32 arg1, UInt32 arg2) + void ShaderOp2(GL.Enums.EXT_vertex_shader op, UInt32 res, UInt32 arg1, UInt32 arg2) { Delegates.glShaderOp2EXT((GL.Enums.EXT_vertex_shader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); } public static - void ShaderOp2EXT(GL.Enums.EXT_vertex_shader op, Int32 res, Int32 arg1, Int32 arg2) + void ShaderOp2(GL.Enums.EXT_vertex_shader op, Int32 res, Int32 arg1, Int32 arg2) { Delegates.glShaderOp2EXT((GL.Enums.EXT_vertex_shader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); } [System.CLSCompliant(false)] public static - void ShaderOp3EXT(GL.Enums.EXT_vertex_shader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) + void ShaderOp3(GL.Enums.EXT_vertex_shader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) { Delegates.glShaderOp3EXT((GL.Enums.EXT_vertex_shader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); } public static - void ShaderOp3EXT(GL.Enums.EXT_vertex_shader op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) + void ShaderOp3(GL.Enums.EXT_vertex_shader op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) { Delegates.glShaderOp3EXT((GL.Enums.EXT_vertex_shader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); } [System.CLSCompliant(false)] public static - void SwizzleEXT(UInt32 res, UInt32 @in, GL.Enums.EXT_vertex_shader outX, GL.Enums.EXT_vertex_shader outY, GL.Enums.EXT_vertex_shader outZ, GL.Enums.EXT_vertex_shader outW) + void Swizzle(UInt32 res, UInt32 @in, GL.Enums.EXT_vertex_shader outX, GL.Enums.EXT_vertex_shader outY, GL.Enums.EXT_vertex_shader outZ, GL.Enums.EXT_vertex_shader outW) { Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (GL.Enums.EXT_vertex_shader)outX, (GL.Enums.EXT_vertex_shader)outY, (GL.Enums.EXT_vertex_shader)outZ, (GL.Enums.EXT_vertex_shader)outW); } public static - void SwizzleEXT(Int32 res, Int32 @in, GL.Enums.EXT_vertex_shader outX, GL.Enums.EXT_vertex_shader outY, GL.Enums.EXT_vertex_shader outZ, GL.Enums.EXT_vertex_shader outW) + void Swizzle(Int32 res, Int32 @in, GL.Enums.EXT_vertex_shader outX, GL.Enums.EXT_vertex_shader outY, GL.Enums.EXT_vertex_shader outZ, GL.Enums.EXT_vertex_shader outW) { Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (GL.Enums.EXT_vertex_shader)outX, (GL.Enums.EXT_vertex_shader)outY, (GL.Enums.EXT_vertex_shader)outZ, (GL.Enums.EXT_vertex_shader)outW); } [System.CLSCompliant(false)] public static - void WriteMaskEXT(UInt32 res, UInt32 @in, GL.Enums.EXT_vertex_shader outX, GL.Enums.EXT_vertex_shader outY, GL.Enums.EXT_vertex_shader outZ, GL.Enums.EXT_vertex_shader outW) + void WriteMask(UInt32 res, UInt32 @in, GL.Enums.EXT_vertex_shader outX, GL.Enums.EXT_vertex_shader outY, GL.Enums.EXT_vertex_shader outZ, GL.Enums.EXT_vertex_shader outW) { Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (GL.Enums.EXT_vertex_shader)outX, (GL.Enums.EXT_vertex_shader)outY, (GL.Enums.EXT_vertex_shader)outZ, (GL.Enums.EXT_vertex_shader)outW); } public static - void WriteMaskEXT(Int32 res, Int32 @in, GL.Enums.EXT_vertex_shader outX, GL.Enums.EXT_vertex_shader outY, GL.Enums.EXT_vertex_shader outZ, GL.Enums.EXT_vertex_shader outW) + void WriteMask(Int32 res, Int32 @in, GL.Enums.EXT_vertex_shader outX, GL.Enums.EXT_vertex_shader outY, GL.Enums.EXT_vertex_shader outZ, GL.Enums.EXT_vertex_shader outW) { Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (GL.Enums.EXT_vertex_shader)outX, (GL.Enums.EXT_vertex_shader)outY, (GL.Enums.EXT_vertex_shader)outZ, (GL.Enums.EXT_vertex_shader)outW); } [System.CLSCompliant(false)] public static - void InsertComponentEXT(UInt32 res, UInt32 src, UInt32 num) + void InsertComponent(UInt32 res, UInt32 src, UInt32 num) { Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); } public static - void InsertComponentEXT(Int32 res, Int32 src, Int32 num) + void InsertComponent(Int32 res, Int32 src, Int32 num) { Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); } [System.CLSCompliant(false)] public static - void ExtractComponentEXT(UInt32 res, UInt32 src, UInt32 num) + void ExtractComponent(UInt32 res, UInt32 src, UInt32 num) { Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); } public static - void ExtractComponentEXT(Int32 res, Int32 src, Int32 num) + void ExtractComponent(Int32 res, Int32 src, Int32 num) { Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); } [System.CLSCompliant(false)] public static - Int32 GenSymbolsEXT(GL.Enums.EXT_vertex_shader datatype, GL.Enums.EXT_vertex_shader storagetype, GL.Enums.EXT_vertex_shader range, UInt32 components) + Int32 GenSymbols(GL.Enums.EXT_vertex_shader datatype, GL.Enums.EXT_vertex_shader storagetype, GL.Enums.EXT_vertex_shader range, UInt32 components) { return Delegates.glGenSymbolsEXT((GL.Enums.EXT_vertex_shader)datatype, (GL.Enums.EXT_vertex_shader)storagetype, (GL.Enums.EXT_vertex_shader)range, (UInt32)components); } public static - Int32 GenSymbolsEXT(GL.Enums.EXT_vertex_shader datatype, GL.Enums.EXT_vertex_shader storagetype, GL.Enums.EXT_vertex_shader range, Int32 components) + Int32 GenSymbols(GL.Enums.EXT_vertex_shader datatype, GL.Enums.EXT_vertex_shader storagetype, GL.Enums.EXT_vertex_shader range, Int32 components) { return Delegates.glGenSymbolsEXT((GL.Enums.EXT_vertex_shader)datatype, (GL.Enums.EXT_vertex_shader)storagetype, (GL.Enums.EXT_vertex_shader)range, (UInt32)components); } [System.CLSCompliant(false)] public static - unsafe void SetInvariantEXT(UInt32 id, GL.Enums.EXT_vertex_shader type, void* addr) + unsafe void SetInvariant(UInt32 id, GL.Enums.EXT_vertex_shader type, void* addr) { unsafe { Delegates.glSetInvariantEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)type, (void*)addr); } } [System.CLSCompliant(false)] public static - unsafe void SetInvariantEXT(Int32 id, GL.Enums.EXT_vertex_shader type, void* addr) + unsafe void SetInvariant(Int32 id, GL.Enums.EXT_vertex_shader type, void* addr) { { Delegates.glSetInvariantEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)type, (void*)addr); @@ -26070,7 +26070,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SetInvariantEXT(UInt32 id, GL.Enums.EXT_vertex_shader type, [In, Out] object addr) + void SetInvariant(UInt32 id, GL.Enums.EXT_vertex_shader type, [In, Out] object addr) { System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -26087,7 +26087,7 @@ namespace OpenTK.OpenGL } public static - void SetInvariantEXT(Int32 id, GL.Enums.EXT_vertex_shader type, [In, Out] object addr) + void SetInvariant(Int32 id, GL.Enums.EXT_vertex_shader type, [In, Out] object addr) { System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -26105,14 +26105,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SetLocalConstantEXT(UInt32 id, GL.Enums.EXT_vertex_shader type, void* addr) + unsafe void SetLocalConstant(UInt32 id, GL.Enums.EXT_vertex_shader type, void* addr) { unsafe { Delegates.glSetLocalConstantEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)type, (void*)addr); } } [System.CLSCompliant(false)] public static - unsafe void SetLocalConstantEXT(Int32 id, GL.Enums.EXT_vertex_shader type, void* addr) + unsafe void SetLocalConstant(Int32 id, GL.Enums.EXT_vertex_shader type, void* addr) { { Delegates.glSetLocalConstantEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)type, (void*)addr); @@ -26121,7 +26121,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SetLocalConstantEXT(UInt32 id, GL.Enums.EXT_vertex_shader type, [In, Out] object addr) + void SetLocalConstant(UInt32 id, GL.Enums.EXT_vertex_shader type, [In, Out] object addr) { System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -26138,7 +26138,7 @@ namespace OpenTK.OpenGL } public static - void SetLocalConstantEXT(Int32 id, GL.Enums.EXT_vertex_shader type, [In, Out] object addr) + void SetLocalConstant(Int32 id, GL.Enums.EXT_vertex_shader type, [In, Out] object addr) { System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -26585,14 +26585,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VariantPointerEXT(UInt32 id, GL.Enums.EXT_vertex_shader type, UInt32 stride, void* addr) + unsafe void VariantPointer(UInt32 id, GL.Enums.EXT_vertex_shader type, UInt32 stride, void* addr) { unsafe { Delegates.glVariantPointerEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)type, (UInt32)stride, (void*)addr); } } [System.CLSCompliant(false)] public static - unsafe void VariantPointerEXT(Int32 id, GL.Enums.EXT_vertex_shader type, Int32 stride, void* addr) + unsafe void VariantPointer(Int32 id, GL.Enums.EXT_vertex_shader type, Int32 stride, void* addr) { { Delegates.glVariantPointerEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)type, (UInt32)stride, (void*)addr); @@ -26601,7 +26601,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VariantPointerEXT(UInt32 id, GL.Enums.EXT_vertex_shader type, UInt32 stride, [In, Out] object addr) + void VariantPointer(UInt32 id, GL.Enums.EXT_vertex_shader type, UInt32 stride, [In, Out] object addr) { System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -26618,7 +26618,7 @@ namespace OpenTK.OpenGL } public static - void VariantPointerEXT(Int32 id, GL.Enums.EXT_vertex_shader type, Int32 stride, [In, Out] object addr) + void VariantPointer(Int32 id, GL.Enums.EXT_vertex_shader type, Int32 stride, [In, Out] object addr) { System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -26636,83 +26636,83 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void EnableVariantClientStateEXT(UInt32 id) + void EnableVariantClientState(UInt32 id) { Delegates.glEnableVariantClientStateEXT((UInt32)id); } public static - void EnableVariantClientStateEXT(Int32 id) + void EnableVariantClientState(Int32 id) { Delegates.glEnableVariantClientStateEXT((UInt32)id); } [System.CLSCompliant(false)] public static - void DisableVariantClientStateEXT(UInt32 id) + void DisableVariantClientState(UInt32 id) { Delegates.glDisableVariantClientStateEXT((UInt32)id); } public static - void DisableVariantClientStateEXT(Int32 id) + void DisableVariantClientState(Int32 id) { Delegates.glDisableVariantClientStateEXT((UInt32)id); } public static - Int32 BindLightParameterEXT(GL.Enums.LightName light, GL.Enums.LightParameter value) + Int32 BindLightParameter(GL.Enums.LightName light, GL.Enums.LightParameter value) { return Delegates.glBindLightParameterEXT((GL.Enums.LightName)light, (GL.Enums.LightParameter)value); } public static - Int32 BindMaterialParameterEXT(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter value) + Int32 BindMaterialParameter(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter value) { return Delegates.glBindMaterialParameterEXT((GL.Enums.MaterialFace)face, (GL.Enums.MaterialParameter)value); } public static - Int32 BindTexGenParameterEXT(GL.Enums.EXT_vertex_shader unit, GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter value) + Int32 BindTexGenParameter(GL.Enums.EXT_vertex_shader unit, GL.Enums.TextureCoordName coord, GL.Enums.TextureGenParameter value) { return Delegates.glBindTexGenParameterEXT((GL.Enums.EXT_vertex_shader)unit, (GL.Enums.TextureCoordName)coord, (GL.Enums.TextureGenParameter)value); } public static - Int32 BindTextureUnitParameterEXT(GL.Enums.EXT_vertex_shader unit, GL.Enums.EXT_vertex_shader value) + Int32 BindTextureUnitParameter(GL.Enums.EXT_vertex_shader unit, GL.Enums.EXT_vertex_shader value) { return Delegates.glBindTextureUnitParameterEXT((GL.Enums.EXT_vertex_shader)unit, (GL.Enums.EXT_vertex_shader)value); } public static - Int32 BindParameterEXT(GL.Enums.EXT_vertex_shader value) + Int32 BindParameter(GL.Enums.EXT_vertex_shader value) { return Delegates.glBindParameterEXT((GL.Enums.EXT_vertex_shader)value); } [System.CLSCompliant(false)] public static - Boolean IsVariantEnabledEXT(UInt32 id, GL.Enums.EXT_vertex_shader cap) + Boolean IsVariantEnabled(UInt32 id, GL.Enums.EXT_vertex_shader cap) { return Delegates.glIsVariantEnabledEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)cap); } public static - Boolean IsVariantEnabledEXT(Int32 id, GL.Enums.EXT_vertex_shader cap) + Boolean IsVariantEnabled(Int32 id, GL.Enums.EXT_vertex_shader cap) { return Delegates.glIsVariantEnabledEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)cap); } [System.CLSCompliant(false)] public static - unsafe void GetVariantBooleanvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) + unsafe void GetVariantBooleanv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) { unsafe { Delegates.glGetVariantBooleanvEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (GL.Enums.Boolean*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetVariantBooleanvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) + unsafe void GetVariantBooleanv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) { data = default(GL.Enums.Boolean*); { @@ -26722,14 +26722,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantIntegervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) + unsafe void GetVariantIntegerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) { unsafe { Delegates.glGetVariantIntegervEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (Int32*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetVariantIntegervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) + unsafe void GetVariantIntegerv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) { data = default(Int32*); { @@ -26739,7 +26739,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVariantIntegervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) + void GetVariantIntegerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) { unsafe { @@ -26751,7 +26751,7 @@ namespace OpenTK.OpenGL } public static - void GetVariantIntegervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) + void GetVariantIntegerv(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) { unsafe { @@ -26764,7 +26764,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVariantIntegervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) + void GetVariantIntegerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) { data = default(Int32); unsafe @@ -26778,7 +26778,7 @@ namespace OpenTK.OpenGL } public static - void GetVariantIntegervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) + void GetVariantIntegerv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) { data = default(Int32); unsafe @@ -26793,14 +26793,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantFloatvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) + unsafe void GetVariantFloatv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) { unsafe { Delegates.glGetVariantFloatvEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (Single*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetVariantFloatvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) + unsafe void GetVariantFloatv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) { data = default(Single*); { @@ -26810,7 +26810,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVariantFloatvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) + void GetVariantFloatv(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) { unsafe { @@ -26822,7 +26822,7 @@ namespace OpenTK.OpenGL } public static - void GetVariantFloatvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) + void GetVariantFloatv(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) { unsafe { @@ -26835,7 +26835,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVariantFloatvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) + void GetVariantFloatv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) { data = default(Single); unsafe @@ -26849,7 +26849,7 @@ namespace OpenTK.OpenGL } public static - void GetVariantFloatvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) + void GetVariantFloatv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) { data = default(Single); unsafe @@ -26864,14 +26864,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVariantPointervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] void* data) + unsafe void GetVariantPointerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] void* data) { unsafe { Delegates.glGetVariantPointervEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (void*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetVariantPointervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] void* data) + unsafe void GetVariantPointerv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] void* data) { data = default(void*); { @@ -26881,7 +26881,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVariantPointervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] object data) + void GetVariantPointerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -26898,7 +26898,7 @@ namespace OpenTK.OpenGL } public static - void GetVariantPointervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] object data) + void GetVariantPointerv(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] object data) { System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -26916,14 +26916,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetInvariantBooleanvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) + unsafe void GetInvariantBooleanv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) { unsafe { Delegates.glGetInvariantBooleanvEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (GL.Enums.Boolean*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetInvariantBooleanvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) + unsafe void GetInvariantBooleanv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) { data = default(GL.Enums.Boolean*); { @@ -26933,14 +26933,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetInvariantIntegervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) + unsafe void GetInvariantIntegerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) { unsafe { Delegates.glGetInvariantIntegervEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (Int32*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetInvariantIntegervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) + unsafe void GetInvariantIntegerv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) { data = default(Int32*); { @@ -26950,7 +26950,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetInvariantIntegervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) + void GetInvariantIntegerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) { unsafe { @@ -26962,7 +26962,7 @@ namespace OpenTK.OpenGL } public static - void GetInvariantIntegervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) + void GetInvariantIntegerv(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) { unsafe { @@ -26975,7 +26975,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetInvariantIntegervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) + void GetInvariantIntegerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) { data = default(Int32); unsafe @@ -26989,7 +26989,7 @@ namespace OpenTK.OpenGL } public static - void GetInvariantIntegervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) + void GetInvariantIntegerv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) { data = default(Int32); unsafe @@ -27004,14 +27004,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetInvariantFloatvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) + unsafe void GetInvariantFloatv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) { unsafe { Delegates.glGetInvariantFloatvEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (Single*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetInvariantFloatvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) + unsafe void GetInvariantFloatv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) { data = default(Single*); { @@ -27021,7 +27021,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetInvariantFloatvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) + void GetInvariantFloatv(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) { unsafe { @@ -27033,7 +27033,7 @@ namespace OpenTK.OpenGL } public static - void GetInvariantFloatvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) + void GetInvariantFloatv(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) { unsafe { @@ -27046,7 +27046,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetInvariantFloatvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) + void GetInvariantFloatv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) { data = default(Single); unsafe @@ -27060,7 +27060,7 @@ namespace OpenTK.OpenGL } public static - void GetInvariantFloatvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) + void GetInvariantFloatv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) { data = default(Single); unsafe @@ -27075,14 +27075,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantBooleanvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) + unsafe void GetLocalConstantBooleanv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) { unsafe { Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (GL.Enums.Boolean*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantBooleanvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) + unsafe void GetLocalConstantBooleanv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] GL.Enums.Boolean* data) { data = default(GL.Enums.Boolean*); { @@ -27092,14 +27092,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantIntegervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) + unsafe void GetLocalConstantIntegerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) { unsafe { Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (Int32*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantIntegervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) + unsafe void GetLocalConstantIntegerv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Int32* data) { data = default(Int32*); { @@ -27109,7 +27109,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetLocalConstantIntegervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) + void GetLocalConstantIntegerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) { unsafe { @@ -27121,7 +27121,7 @@ namespace OpenTK.OpenGL } public static - void GetLocalConstantIntegervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) + void GetLocalConstantIntegerv(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Int32[] data) { unsafe { @@ -27134,7 +27134,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetLocalConstantIntegervEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) + void GetLocalConstantIntegerv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) { data = default(Int32); unsafe @@ -27148,7 +27148,7 @@ namespace OpenTK.OpenGL } public static - void GetLocalConstantIntegervEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) + void GetLocalConstantIntegerv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Int32 data) { data = default(Int32); unsafe @@ -27163,14 +27163,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantFloatvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) + unsafe void GetLocalConstantFloatv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) { unsafe { Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (GL.Enums.EXT_vertex_shader)value, (Single*)data); } } [System.CLSCompliant(false)] public static - unsafe void GetLocalConstantFloatvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) + unsafe void GetLocalConstantFloatv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] Single* data) { data = default(Single*); { @@ -27180,7 +27180,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetLocalConstantFloatvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) + void GetLocalConstantFloatv(UInt32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) { unsafe { @@ -27192,7 +27192,7 @@ namespace OpenTK.OpenGL } public static - void GetLocalConstantFloatvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) + void GetLocalConstantFloatv(Int32 id, GL.Enums.EXT_vertex_shader value, [In, Out] Single[] data) { unsafe { @@ -27205,7 +27205,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetLocalConstantFloatvEXT(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) + void GetLocalConstantFloatv(UInt32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) { data = default(Single); unsafe @@ -27219,7 +27219,7 @@ namespace OpenTK.OpenGL } public static - void GetLocalConstantFloatvEXT(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) + void GetLocalConstantFloatv(Int32 id, GL.Enums.EXT_vertex_shader value, [Out] out Single data) { data = default(Single); unsafe @@ -27233,59 +27233,59 @@ namespace OpenTK.OpenGL } public static - void ActiveStencilFaceEXT(GL.Enums.EXT_stencil_two_side face) + void ActiveStencilFace(GL.Enums.EXT_stencil_two_side face) { Delegates.glActiveStencilFaceEXT((GL.Enums.EXT_stencil_two_side)face); } public static - void DepthBoundsEXT(Double zmin, Double zmax) + void DepthBounds(Double zmin, Double zmax) { Delegates.glDepthBoundsEXT((Double)zmin, (Double)zmax); } public static - void BlendEquationSeparateEXT(GL.Enums.BlendEquationModeEXT modeRGB, GL.Enums.BlendEquationModeEXT modeAlpha) + void BlendEquationSeparate(GL.Enums.BlendEquationModeEXT modeRGB, GL.Enums.BlendEquationModeEXT modeAlpha) { Delegates.glBlendEquationSeparateEXT((GL.Enums.BlendEquationModeEXT)modeRGB, (GL.Enums.BlendEquationModeEXT)modeAlpha); } [System.CLSCompliant(false)] public static - Boolean IsRenderbufferEXT(UInt32 renderbuffer) + Boolean IsRenderbuffer(UInt32 renderbuffer) { return Delegates.glIsRenderbufferEXT((UInt32)renderbuffer); } public static - Boolean IsRenderbufferEXT(Int32 renderbuffer) + Boolean IsRenderbuffer(Int32 renderbuffer) { return Delegates.glIsRenderbufferEXT((UInt32)renderbuffer); } [System.CLSCompliant(false)] public static - void BindRenderbufferEXT(GL.Enums.EXT_framebuffer_object target, UInt32 renderbuffer) + void BindRenderbuffer(GL.Enums.EXT_framebuffer_object target, UInt32 renderbuffer) { Delegates.glBindRenderbufferEXT((GL.Enums.EXT_framebuffer_object)target, (UInt32)renderbuffer); } public static - void BindRenderbufferEXT(GL.Enums.EXT_framebuffer_object target, Int32 renderbuffer) + void BindRenderbuffer(GL.Enums.EXT_framebuffer_object target, Int32 renderbuffer) { Delegates.glBindRenderbufferEXT((GL.Enums.EXT_framebuffer_object)target, (UInt32)renderbuffer); } [System.CLSCompliant(false)] public static - unsafe void DeleteRenderbuffersEXT(Int32 n, UInt32* renderbuffers) + unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) { unsafe { Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); } } [System.CLSCompliant(false)] public static - unsafe void DeleteRenderbuffersEXT(Int32 n, Int32* renderbuffers) + unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) { { Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); @@ -27294,7 +27294,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteRenderbuffersEXT(Int32 n, [In, Out] UInt32[] renderbuffers) + void DeleteRenderbuffers(Int32 n, [In, Out] UInt32[] renderbuffers) { unsafe { @@ -27306,7 +27306,7 @@ namespace OpenTK.OpenGL } public static - void DeleteRenderbuffersEXT(Int32 n, [In, Out] Int32[] renderbuffers) + void DeleteRenderbuffers(Int32 n, [In, Out] Int32[] renderbuffers) { unsafe { @@ -27319,7 +27319,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteRenderbuffersEXT(Int32 n, ref UInt32 renderbuffers) + void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) { unsafe { @@ -27331,7 +27331,7 @@ namespace OpenTK.OpenGL } public static - void DeleteRenderbuffersEXT(Int32 n, ref Int32 renderbuffers) + void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) { unsafe { @@ -27344,14 +27344,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenRenderbuffersEXT(Int32 n, [Out] UInt32* renderbuffers) + unsafe void GenRenderbuffers(Int32 n, [Out] UInt32* renderbuffers) { unsafe { Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); } } [System.CLSCompliant(false)] public static - unsafe void GenRenderbuffersEXT(Int32 n, [Out] Int32* renderbuffers) + unsafe void GenRenderbuffers(Int32 n, [Out] Int32* renderbuffers) { renderbuffers = default(Int32*); { @@ -27361,7 +27361,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenRenderbuffersEXT(Int32 n, [In, Out] UInt32[] renderbuffers) + void GenRenderbuffers(Int32 n, [In, Out] UInt32[] renderbuffers) { unsafe { @@ -27373,7 +27373,7 @@ namespace OpenTK.OpenGL } public static - void GenRenderbuffersEXT(Int32 n, [In, Out] Int32[] renderbuffers) + void GenRenderbuffers(Int32 n, [In, Out] Int32[] renderbuffers) { unsafe { @@ -27386,7 +27386,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenRenderbuffersEXT(Int32 n, [Out] out UInt32 renderbuffers) + void GenRenderbuffers(Int32 n, [Out] out UInt32 renderbuffers) { renderbuffers = default(UInt32); unsafe @@ -27400,7 +27400,7 @@ namespace OpenTK.OpenGL } public static - void GenRenderbuffersEXT(Int32 n, [Out] out Int32 renderbuffers) + void GenRenderbuffers(Int32 n, [Out] out Int32 renderbuffers) { renderbuffers = default(Int32); unsafe @@ -27414,7 +27414,7 @@ namespace OpenTK.OpenGL } public static - void RenderbufferStorageEXT(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object internalformat, Int32 width, Int32 height) + void RenderbufferStorage(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object internalformat, Int32 width, Int32 height) { Delegates.glRenderbufferStorageEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)internalformat, (Int32)width, (Int32)height); } @@ -27454,40 +27454,40 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsFramebufferEXT(UInt32 framebuffer) + Boolean IsFramebuffer(UInt32 framebuffer) { return Delegates.glIsFramebufferEXT((UInt32)framebuffer); } public static - Boolean IsFramebufferEXT(Int32 framebuffer) + Boolean IsFramebuffer(Int32 framebuffer) { return Delegates.glIsFramebufferEXT((UInt32)framebuffer); } [System.CLSCompliant(false)] public static - void BindFramebufferEXT(GL.Enums.EXT_framebuffer_object target, UInt32 framebuffer) + void BindFramebuffer(GL.Enums.EXT_framebuffer_object target, UInt32 framebuffer) { Delegates.glBindFramebufferEXT((GL.Enums.EXT_framebuffer_object)target, (UInt32)framebuffer); } public static - void BindFramebufferEXT(GL.Enums.EXT_framebuffer_object target, Int32 framebuffer) + void BindFramebuffer(GL.Enums.EXT_framebuffer_object target, Int32 framebuffer) { Delegates.glBindFramebufferEXT((GL.Enums.EXT_framebuffer_object)target, (UInt32)framebuffer); } [System.CLSCompliant(false)] public static - unsafe void DeleteFramebuffersEXT(Int32 n, UInt32* framebuffers) + unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) { unsafe { Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers); } } [System.CLSCompliant(false)] public static - unsafe void DeleteFramebuffersEXT(Int32 n, Int32* framebuffers) + unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) { { Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers); @@ -27496,7 +27496,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFramebuffersEXT(Int32 n, [In, Out] UInt32[] framebuffers) + void DeleteFramebuffers(Int32 n, [In, Out] UInt32[] framebuffers) { unsafe { @@ -27508,7 +27508,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFramebuffersEXT(Int32 n, [In, Out] Int32[] framebuffers) + void DeleteFramebuffers(Int32 n, [In, Out] Int32[] framebuffers) { unsafe { @@ -27521,7 +27521,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFramebuffersEXT(Int32 n, ref UInt32 framebuffers) + void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) { unsafe { @@ -27533,7 +27533,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFramebuffersEXT(Int32 n, ref Int32 framebuffers) + void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) { unsafe { @@ -27546,14 +27546,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenFramebuffersEXT(Int32 n, [Out] UInt32* framebuffers) + unsafe void GenFramebuffers(Int32 n, [Out] UInt32* framebuffers) { unsafe { Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers); } } [System.CLSCompliant(false)] public static - unsafe void GenFramebuffersEXT(Int32 n, [Out] Int32* framebuffers) + unsafe void GenFramebuffers(Int32 n, [Out] Int32* framebuffers) { framebuffers = default(Int32*); { @@ -27563,7 +27563,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFramebuffersEXT(Int32 n, [In, Out] UInt32[] framebuffers) + void GenFramebuffers(Int32 n, [In, Out] UInt32[] framebuffers) { unsafe { @@ -27575,7 +27575,7 @@ namespace OpenTK.OpenGL } public static - void GenFramebuffersEXT(Int32 n, [In, Out] Int32[] framebuffers) + void GenFramebuffers(Int32 n, [In, Out] Int32[] framebuffers) { unsafe { @@ -27588,7 +27588,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFramebuffersEXT(Int32 n, [Out] out UInt32 framebuffers) + void GenFramebuffers(Int32 n, [Out] out UInt32 framebuffers) { framebuffers = default(UInt32); unsafe @@ -27602,7 +27602,7 @@ namespace OpenTK.OpenGL } public static - void GenFramebuffersEXT(Int32 n, [Out] out Int32 framebuffers) + void GenFramebuffers(Int32 n, [Out] out Int32 framebuffers) { framebuffers = default(Int32); unsafe @@ -27616,59 +27616,59 @@ namespace OpenTK.OpenGL } public static - GL.Enums.All CheckFramebufferStat(GL.Enums.EXT_framebuffer_object target) + GL.Enums.All CheckFramebufferStatus(GL.Enums.EXT_framebuffer_object target) { return Delegates.glCheckFramebufferStatusEXT((GL.Enums.EXT_framebuffer_object)target); } [System.CLSCompliant(false)] public static - void FramebufferTexture1DEXT(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, UInt32 texture, Int32 level) + void FramebufferTexture1D(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, UInt32 texture, Int32 level) { Delegates.glFramebufferTexture1DEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)attachment, (GL.Enums.EXT_framebuffer_object)textarget, (UInt32)texture, (Int32)level); } public static - void FramebufferTexture1DEXT(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, Int32 texture, Int32 level) + void FramebufferTexture1D(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, Int32 texture, Int32 level) { Delegates.glFramebufferTexture1DEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)attachment, (GL.Enums.EXT_framebuffer_object)textarget, (UInt32)texture, (Int32)level); } [System.CLSCompliant(false)] public static - void FramebufferTexture2DEXT(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, UInt32 texture, Int32 level) + void FramebufferTexture2D(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, UInt32 texture, Int32 level) { Delegates.glFramebufferTexture2DEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)attachment, (GL.Enums.EXT_framebuffer_object)textarget, (UInt32)texture, (Int32)level); } public static - void FramebufferTexture2DEXT(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, Int32 texture, Int32 level) + void FramebufferTexture2D(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, Int32 texture, Int32 level) { Delegates.glFramebufferTexture2DEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)attachment, (GL.Enums.EXT_framebuffer_object)textarget, (UInt32)texture, (Int32)level); } [System.CLSCompliant(false)] public static - void FramebufferTexture3DEXT(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, UInt32 texture, Int32 level, Int32 zoffset) + void FramebufferTexture3D(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, UInt32 texture, Int32 level, Int32 zoffset) { Delegates.glFramebufferTexture3DEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)attachment, (GL.Enums.EXT_framebuffer_object)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); } public static - void FramebufferTexture3DEXT(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, Int32 texture, Int32 level, Int32 zoffset) + void FramebufferTexture3D(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object textarget, Int32 texture, Int32 level, Int32 zoffset) { Delegates.glFramebufferTexture3DEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)attachment, (GL.Enums.EXT_framebuffer_object)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); } [System.CLSCompliant(false)] public static - void FramebufferRenderbufferEXT(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object renderbuffertarget, UInt32 renderbuffer) + void FramebufferRenderbuffer(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object renderbuffertarget, UInt32 renderbuffer) { Delegates.glFramebufferRenderbufferEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)attachment, (GL.Enums.EXT_framebuffer_object)renderbuffertarget, (UInt32)renderbuffer); } public static - void FramebufferRenderbufferEXT(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object renderbuffertarget, Int32 renderbuffer) + void FramebufferRenderbuffer(GL.Enums.EXT_framebuffer_object target, GL.Enums.EXT_framebuffer_object attachment, GL.Enums.EXT_framebuffer_object renderbuffertarget, Int32 renderbuffer) { Delegates.glFramebufferRenderbufferEXT((GL.Enums.EXT_framebuffer_object)target, (GL.Enums.EXT_framebuffer_object)attachment, (GL.Enums.EXT_framebuffer_object)renderbuffertarget, (UInt32)renderbuffer); } @@ -27707,46 +27707,46 @@ namespace OpenTK.OpenGL } public static - void GenerateMipmapEXT(GL.Enums.EXT_framebuffer_object target) + void GenerateMipmap(GL.Enums.EXT_framebuffer_object target) { Delegates.glGenerateMipmapEXT((GL.Enums.EXT_framebuffer_object)target); } [System.CLSCompliant(false)] public static - void StencilClearTagEXT(Int32 stencilTagBits, UInt32 stencilClearTag) + void StencilClearTag(Int32 stencilTagBits, UInt32 stencilClearTag) { Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag); } public static - void StencilClearTagEXT(Int32 stencilTagBits, Int32 stencilClearTag) + void StencilClearTag(Int32 stencilTagBits, Int32 stencilClearTag) { Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag); } public static - void BlitFramebufferEXT(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, GL.Enums.ClearBufferMask mask, GL.Enums.EXT_framebuffer_blit filter) + void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, GL.Enums.ClearBufferMask mask, GL.Enums.EXT_framebuffer_blit filter) { Delegates.glBlitFramebufferEXT((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (GL.Enums.ClearBufferMask)mask, (GL.Enums.EXT_framebuffer_blit)filter); } public static - void RenderbufferStorageMultisampleEXT(GL.Enums.EXT_framebuffer_multisample target, Int32 samples, GL.Enums.EXT_framebuffer_multisample internalformat, Int32 width, Int32 height) + void RenderbufferStorageMultisample(GL.Enums.EXT_framebuffer_multisample target, Int32 samples, GL.Enums.EXT_framebuffer_multisample internalformat, Int32 width, Int32 height) { Delegates.glRenderbufferStorageMultisampleEXT((GL.Enums.EXT_framebuffer_multisample)target, (Int32)samples, (GL.Enums.EXT_framebuffer_multisample)internalformat, (Int32)width, (Int32)height); } [System.CLSCompliant(false)] public static - unsafe void GetQueryObjecti64vEXT(UInt32 id, GL.Enums.EXT_timer_query pname, [Out] Int64* @params) + unsafe void GetQueryObjecti64v(UInt32 id, GL.Enums.EXT_timer_query pname, [Out] Int64* @params) { unsafe { Delegates.glGetQueryObjecti64vEXT((UInt32)id, (GL.Enums.EXT_timer_query)pname, (Int64*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetQueryObjecti64vEXT(Int32 id, GL.Enums.EXT_timer_query pname, [Out] Int64* @params) + unsafe void GetQueryObjecti64v(Int32 id, GL.Enums.EXT_timer_query pname, [Out] Int64* @params) { @params = default(Int64*); { @@ -27756,7 +27756,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjecti64vEXT(UInt32 id, GL.Enums.EXT_timer_query pname, [In, Out] Int64[] @params) + void GetQueryObjecti64v(UInt32 id, GL.Enums.EXT_timer_query pname, [In, Out] Int64[] @params) { unsafe { @@ -27768,7 +27768,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryObjecti64vEXT(Int32 id, GL.Enums.EXT_timer_query pname, [In, Out] Int64[] @params) + void GetQueryObjecti64v(Int32 id, GL.Enums.EXT_timer_query pname, [In, Out] Int64[] @params) { unsafe { @@ -27781,7 +27781,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjecti64vEXT(UInt32 id, GL.Enums.EXT_timer_query pname, [Out] out Int64 @params) + void GetQueryObjecti64v(UInt32 id, GL.Enums.EXT_timer_query pname, [Out] out Int64 @params) { @params = default(Int64); unsafe @@ -27795,7 +27795,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryObjecti64vEXT(Int32 id, GL.Enums.EXT_timer_query pname, [Out] out Int64 @params) + void GetQueryObjecti64v(Int32 id, GL.Enums.EXT_timer_query pname, [Out] out Int64 @params) { @params = default(Int64); unsafe @@ -27810,14 +27810,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectui64vEXT(UInt32 id, GL.Enums.EXT_timer_query pname, [Out] UInt64* @params) + unsafe void GetQueryObjectui64v(UInt32 id, GL.Enums.EXT_timer_query pname, [Out] UInt64* @params) { unsafe { Delegates.glGetQueryObjectui64vEXT((UInt32)id, (GL.Enums.EXT_timer_query)pname, (UInt64*)@params); } } [System.CLSCompliant(false)] public static - unsafe void GetQueryObjectui64vEXT(Int32 id, GL.Enums.EXT_timer_query pname, [Out] Int64* @params) + unsafe void GetQueryObjectui64v(Int32 id, GL.Enums.EXT_timer_query pname, [Out] Int64* @params) { @params = default(Int64*); { @@ -27827,7 +27827,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjectui64vEXT(UInt32 id, GL.Enums.EXT_timer_query pname, [In, Out] UInt64[] @params) + void GetQueryObjectui64v(UInt32 id, GL.Enums.EXT_timer_query pname, [In, Out] UInt64[] @params) { unsafe { @@ -27839,7 +27839,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryObjectui64vEXT(Int32 id, GL.Enums.EXT_timer_query pname, [In, Out] Int64[] @params) + void GetQueryObjectui64v(Int32 id, GL.Enums.EXT_timer_query pname, [In, Out] Int64[] @params) { unsafe { @@ -27852,7 +27852,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetQueryObjectui64vEXT(UInt32 id, GL.Enums.EXT_timer_query pname, [Out] out UInt64 @params) + void GetQueryObjectui64v(UInt32 id, GL.Enums.EXT_timer_query pname, [Out] out UInt64 @params) { @params = default(UInt64); unsafe @@ -27866,7 +27866,7 @@ namespace OpenTK.OpenGL } public static - void GetQueryObjectui64vEXT(Int32 id, GL.Enums.EXT_timer_query pname, [Out] out Int64 @params) + void GetQueryObjectui64v(Int32 id, GL.Enums.EXT_timer_query pname, [Out] out Int64 @params) { @params = default(Int64); unsafe @@ -27881,14 +27881,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameters4v(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single* @params) + unsafe void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single* @params) { unsafe { Delegates.glProgramEnvParameters4fvEXT((GL.Enums.EXT_gpu_program_parameters)target, (UInt32)index, (Int32)count, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameters4v(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single* @params) + unsafe void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single* @params) { { Delegates.glProgramEnvParameters4fvEXT((GL.Enums.EXT_gpu_program_parameters)target, (UInt32)index, (Int32)count, (Single*)@params); @@ -27897,7 +27897,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameters4v(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, [In, Out] Single[] @params) + void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, [In, Out] Single[] @params) { unsafe { @@ -27909,7 +27909,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameters4v(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, [In, Out] Single[] @params) + void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, [In, Out] Single[] @params) { unsafe { @@ -27922,7 +27922,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameters4v(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, ref Single @params) + void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, ref Single @params) { unsafe { @@ -27934,7 +27934,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameters4v(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, ref Single @params) + void ProgramEnvParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, ref Single @params) { unsafe { @@ -27947,14 +27947,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameters4v(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single* @params) + unsafe void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, Single* @params) { unsafe { Delegates.glProgramLocalParameters4fvEXT((GL.Enums.EXT_gpu_program_parameters)target, (UInt32)index, (Int32)count, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameters4v(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single* @params) + unsafe void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, Single* @params) { { Delegates.glProgramLocalParameters4fvEXT((GL.Enums.EXT_gpu_program_parameters)target, (UInt32)index, (Int32)count, (Single*)@params); @@ -27963,7 +27963,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameters4v(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, [In, Out] Single[] @params) + void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, [In, Out] Single[] @params) { unsafe { @@ -27975,7 +27975,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameters4v(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, [In, Out] Single[] @params) + void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, [In, Out] Single[] @params) { unsafe { @@ -27988,7 +27988,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameters4v(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, ref Single @params) + void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, UInt32 index, Int32 count, ref Single @params) { unsafe { @@ -28000,7 +28000,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameters4v(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, ref Single @params) + void ProgramLocalParameters4(GL.Enums.EXT_gpu_program_parameters target, Int32 index, Int32 count, ref Single @params) { unsafe { @@ -28013,52 +28013,52 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void FramebufferTextureEXT(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, UInt32 texture, Int32 level) + void FramebufferTexture(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, UInt32 texture, Int32 level) { Delegates.glFramebufferTextureEXT((GL.Enums.NV_geometry_program4)target, (GL.Enums.NV_geometry_program4)attachment, (UInt32)texture, (Int32)level); } public static - void FramebufferTextureEXT(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, Int32 texture, Int32 level) + void FramebufferTexture(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, Int32 texture, Int32 level) { Delegates.glFramebufferTextureEXT((GL.Enums.NV_geometry_program4)target, (GL.Enums.NV_geometry_program4)attachment, (UInt32)texture, (Int32)level); } [System.CLSCompliant(false)] public static - void FramebufferTextureLayerEXT(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, UInt32 texture, Int32 level, Int32 layer) + void FramebufferTextureLayer(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, UInt32 texture, Int32 level, Int32 layer) { Delegates.glFramebufferTextureLayerEXT((GL.Enums.NV_geometry_program4)target, (GL.Enums.NV_geometry_program4)attachment, (UInt32)texture, (Int32)level, (Int32)layer); } public static - void FramebufferTextureLayerEXT(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, Int32 texture, Int32 level, Int32 layer) + void FramebufferTextureLayer(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, Int32 texture, Int32 level, Int32 layer) { Delegates.glFramebufferTextureLayerEXT((GL.Enums.NV_geometry_program4)target, (GL.Enums.NV_geometry_program4)attachment, (UInt32)texture, (Int32)level, (Int32)layer); } [System.CLSCompliant(false)] public static - void FramebufferTextureFaceEXT(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, UInt32 texture, Int32 level, GL.Enums.TextureTarget face) + void FramebufferTextureFace(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, UInt32 texture, Int32 level, GL.Enums.TextureTarget face) { Delegates.glFramebufferTextureFaceEXT((GL.Enums.NV_geometry_program4)target, (GL.Enums.NV_geometry_program4)attachment, (UInt32)texture, (Int32)level, (GL.Enums.TextureTarget)face); } public static - void FramebufferTextureFaceEXT(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, Int32 texture, Int32 level, GL.Enums.TextureTarget face) + void FramebufferTextureFace(GL.Enums.NV_geometry_program4 target, GL.Enums.NV_geometry_program4 attachment, Int32 texture, Int32 level, GL.Enums.TextureTarget face) { Delegates.glFramebufferTextureFaceEXT((GL.Enums.NV_geometry_program4)target, (GL.Enums.NV_geometry_program4)attachment, (UInt32)texture, (Int32)level, (GL.Enums.TextureTarget)face); } [System.CLSCompliant(false)] public static - void ProgramParameteriEXT(UInt32 program, GL.Enums.EXT_geometry_shader4 pname, Int32 value) + void ProgramParameteri(UInt32 program, GL.Enums.EXT_geometry_shader4 pname, Int32 value) { Delegates.glProgramParameteriEXT((UInt32)program, (GL.Enums.EXT_geometry_shader4)pname, (Int32)value); } public static - void ProgramParameteriEXT(Int32 program, GL.Enums.EXT_geometry_shader4 pname, Int32 value) + void ProgramParameteri(Int32 program, GL.Enums.EXT_geometry_shader4 pname, Int32 value) { Delegates.glProgramParameteriEXT((UInt32)program, (GL.Enums.EXT_geometry_shader4)pname, (Int32)value); } @@ -28145,14 +28145,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI1v(UInt32 index, Int32* v) + unsafe void VertexAttribI1iv(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI1v(Int32 index, Int32* v) + unsafe void VertexAttribI1iv(Int32 index, Int32* v) { { Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v); @@ -28161,7 +28161,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI1v(UInt32 index, [In, Out] Int32[] v) + void VertexAttribI1iv(UInt32 index, [In, Out] Int32[] v) { unsafe { @@ -28173,7 +28173,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI1v(Int32 index, [In, Out] Int32[] v) + void VertexAttribI1iv(Int32 index, [In, Out] Int32[] v) { unsafe { @@ -28186,7 +28186,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI1v(UInt32 index, ref Int32 v) + void VertexAttribI1iv(UInt32 index, ref Int32 v) { unsafe { @@ -28198,7 +28198,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI1v(Int32 index, ref Int32 v) + void VertexAttribI1iv(Int32 index, ref Int32 v) { unsafe { @@ -28211,14 +28211,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI2v(UInt32 index, Int32* v) + unsafe void VertexAttribI2(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI2v(Int32 index, Int32* v) + unsafe void VertexAttribI2(Int32 index, Int32* v) { { Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v); @@ -28227,7 +28227,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI2v(UInt32 index, [In, Out] Int32[] v) + void VertexAttribI2(UInt32 index, [In, Out] Int32[] v) { unsafe { @@ -28239,7 +28239,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI2v(Int32 index, [In, Out] Int32[] v) + void VertexAttribI2(Int32 index, [In, Out] Int32[] v) { unsafe { @@ -28252,7 +28252,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI2v(UInt32 index, ref Int32 v) + void VertexAttribI2(UInt32 index, ref Int32 v) { unsafe { @@ -28264,7 +28264,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI2v(Int32 index, ref Int32 v) + void VertexAttribI2(Int32 index, ref Int32 v) { unsafe { @@ -28277,14 +28277,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI3v(UInt32 index, Int32* v) + unsafe void VertexAttribI3(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI3v(Int32 index, Int32* v) + unsafe void VertexAttribI3(Int32 index, Int32* v) { { Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v); @@ -28293,7 +28293,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI3v(UInt32 index, [In, Out] Int32[] v) + void VertexAttribI3(UInt32 index, [In, Out] Int32[] v) { unsafe { @@ -28305,7 +28305,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI3v(Int32 index, [In, Out] Int32[] v) + void VertexAttribI3(Int32 index, [In, Out] Int32[] v) { unsafe { @@ -28318,7 +28318,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI3v(UInt32 index, ref Int32 v) + void VertexAttribI3(UInt32 index, ref Int32 v) { unsafe { @@ -28330,7 +28330,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI3v(Int32 index, ref Int32 v) + void VertexAttribI3(Int32 index, ref Int32 v) { unsafe { @@ -28343,14 +28343,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4v(UInt32 index, Int32* v) + unsafe void VertexAttribI4(UInt32 index, Int32* v) { unsafe { Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4v(Int32 index, Int32* v) + unsafe void VertexAttribI4(Int32 index, Int32* v) { { Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v); @@ -28359,7 +28359,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, [In, Out] Int32[] v) + void VertexAttribI4(UInt32 index, [In, Out] Int32[] v) { unsafe { @@ -28371,7 +28371,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4v(Int32 index, [In, Out] Int32[] v) + void VertexAttribI4(Int32 index, [In, Out] Int32[] v) { unsafe { @@ -28384,7 +28384,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, ref Int32 v) + void VertexAttribI4(UInt32 index, ref Int32 v) { unsafe { @@ -28396,7 +28396,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4v(Int32 index, ref Int32 v) + void VertexAttribI4(Int32 index, ref Int32 v) { unsafe { @@ -28409,14 +28409,23 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI1v(UInt32 index, UInt32* v) + unsafe void VertexAttribI1uiv(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI1v(UInt32 index, [In, Out] UInt32[] v) + unsafe void VertexAttribI1uiv(Int32 index, Int32* v) + { + { + Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v); + } + } + + [System.CLSCompliant(false)] + public static + void VertexAttribI1uiv(UInt32 index, [In, Out] UInt32[] v) { unsafe { @@ -28427,9 +28436,21 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttribI1uiv(Int32 index, [In, Out] Int32[] v) + { + unsafe + { + fixed (Int32* v_ptr = v) + { + Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - void VertexAttribI1v(UInt32 index, ref UInt32 v) + void VertexAttribI1uiv(UInt32 index, ref UInt32 v) { unsafe { @@ -28440,16 +28461,28 @@ namespace OpenTK.OpenGL } } + public static + void VertexAttribI1uiv(Int32 index, ref Int32 v) + { + unsafe + { + fixed (Int32* v_ptr = &v) + { + Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v_ptr); + } + } + } + [System.CLSCompliant(false)] public static - unsafe void VertexAttribI2v(UInt32 index, UInt32* v) + unsafe void VertexAttribI2(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI2v(UInt32 index, [In, Out] UInt32[] v) + void VertexAttribI2(UInt32 index, [In, Out] UInt32[] v) { unsafe { @@ -28462,7 +28495,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI2v(UInt32 index, ref UInt32 v) + void VertexAttribI2(UInt32 index, ref UInt32 v) { unsafe { @@ -28475,14 +28508,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI3v(UInt32 index, UInt32* v) + unsafe void VertexAttribI3(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI3v(UInt32 index, [In, Out] UInt32[] v) + void VertexAttribI3(UInt32 index, [In, Out] UInt32[] v) { unsafe { @@ -28495,7 +28528,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI3v(UInt32 index, ref UInt32 v) + void VertexAttribI3(UInt32 index, ref UInt32 v) { unsafe { @@ -28508,14 +28541,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4v(UInt32 index, UInt32* v) + unsafe void VertexAttribI4(UInt32 index, UInt32* v) { unsafe { Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, [In, Out] UInt32[] v) + void VertexAttribI4(UInt32 index, [In, Out] UInt32[] v) { unsafe { @@ -28528,7 +28561,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, ref UInt32 v) + void VertexAttribI4(UInt32 index, ref UInt32 v) { unsafe { @@ -28541,14 +28574,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4v(UInt32 index, SByte* v) + unsafe void VertexAttribI4(UInt32 index, SByte* v) { unsafe { Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4v(Int32 index, Byte* v) + unsafe void VertexAttribI4(Int32 index, Byte* v) { { Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v); @@ -28557,7 +28590,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, [In, Out] SByte[] v) + void VertexAttribI4(UInt32 index, [In, Out] SByte[] v) { unsafe { @@ -28569,7 +28602,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4v(Int32 index, [In, Out] Byte[] v) + void VertexAttribI4(Int32 index, [In, Out] Byte[] v) { unsafe { @@ -28582,7 +28615,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, ref SByte v) + void VertexAttribI4(UInt32 index, ref SByte v) { unsafe { @@ -28594,7 +28627,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4v(Int32 index, ref Byte v) + void VertexAttribI4(Int32 index, ref Byte v) { unsafe { @@ -28607,14 +28640,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4v(UInt32 index, Int16* v) + unsafe void VertexAttribI4(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4v(Int32 index, Int16* v) + unsafe void VertexAttribI4(Int32 index, Int16* v) { { Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v); @@ -28623,7 +28656,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, [In, Out] Int16[] v) + void VertexAttribI4(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -28635,7 +28668,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4v(Int32 index, [In, Out] Int16[] v) + void VertexAttribI4(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -28648,7 +28681,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, ref Int16 v) + void VertexAttribI4(UInt32 index, ref Int16 v) { unsafe { @@ -28660,7 +28693,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribI4v(Int32 index, ref Int16 v) + void VertexAttribI4(Int32 index, ref Int16 v) { unsafe { @@ -28673,14 +28706,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4v(UInt32 index, Byte* v) + unsafe void VertexAttribI4(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, [In, Out] Byte[] v) + void VertexAttribI4(UInt32 index, [In, Out] Byte[] v) { unsafe { @@ -28693,7 +28726,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, ref Byte v) + void VertexAttribI4(UInt32 index, ref Byte v) { unsafe { @@ -28706,14 +28739,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribI4v(UInt32 index, UInt16* v) + unsafe void VertexAttribI4(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, [In, Out] UInt16[] v) + void VertexAttribI4(UInt32 index, [In, Out] UInt16[] v) { unsafe { @@ -28726,7 +28759,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribI4v(UInt32 index, ref UInt16 v) + void VertexAttribI4(UInt32 index, ref UInt16 v) { unsafe { @@ -28739,14 +28772,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribIPointerEXT(UInt32 index, Int32 size, GL.Enums.NV_vertex_program4 type, Int32 stride, void* pointer) + unsafe void VertexAttribIPointer(UInt32 index, Int32 size, GL.Enums.NV_vertex_program4 type, Int32 stride, void* pointer) { unsafe { Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (GL.Enums.NV_vertex_program4)type, (Int32)stride, (void*)pointer); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribIPointerEXT(Int32 index, Int32 size, GL.Enums.NV_vertex_program4 type, Int32 stride, void* pointer) + unsafe void VertexAttribIPointer(Int32 index, Int32 size, GL.Enums.NV_vertex_program4 type, Int32 stride, void* pointer) { { Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (GL.Enums.NV_vertex_program4)type, (Int32)stride, (void*)pointer); @@ -28755,7 +28788,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribIPointerEXT(UInt32 index, Int32 size, GL.Enums.NV_vertex_program4 type, Int32 stride, [In, Out] object pointer) + void VertexAttribIPointer(UInt32 index, Int32 size, GL.Enums.NV_vertex_program4 type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -28772,7 +28805,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribIPointerEXT(Int32 index, Int32 size, GL.Enums.NV_vertex_program4 type, Int32 stride, [In, Out] object pointer) + void VertexAttribIPointer(Int32 index, Int32 size, GL.Enums.NV_vertex_program4 type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -28967,26 +29000,26 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void BindFragDataLocationEXT(UInt32 program, UInt32 color, System.String name) + void BindFragDataLocation(UInt32 program, UInt32 color, System.String name) { Delegates.glBindFragDataLocationEXT((UInt32)program, (UInt32)color, (System.String)name); } public static - void BindFragDataLocationEXT(Int32 program, Int32 color, System.String name) + void BindFragDataLocation(Int32 program, Int32 color, System.String name) { Delegates.glBindFragDataLocationEXT((UInt32)program, (UInt32)color, (System.String)name); } [System.CLSCompliant(false)] public static - Int32 GetFragDataLocationEXT(UInt32 program, System.String name) + Int32 GetFragDataLocation(UInt32 program, System.String name) { return Delegates.glGetFragDataLocationEXT((UInt32)program, (System.String)name); } public static - Int32 GetFragDataLocationEXT(Int32 program, System.String name) + Int32 GetFragDataLocation(Int32 program, System.String name) { return Delegates.glGetFragDataLocationEXT((UInt32)program, (System.String)name); } @@ -29045,14 +29078,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform1v(Int32 location, Int32 count, UInt32* value) + unsafe void Uniform1(Int32 location, Int32 count, UInt32* value) { unsafe { Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value); } } [System.CLSCompliant(false)] public static - unsafe void Uniform1v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform1(Int32 location, Int32 count, Int32* value) { { Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value); @@ -29061,7 +29094,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform1v(Int32 location, Int32 count, [In, Out] UInt32[] value) + void Uniform1(Int32 location, Int32 count, [In, Out] UInt32[] value) { unsafe { @@ -29073,7 +29106,7 @@ namespace OpenTK.OpenGL } public static - void Uniform1v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform1(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -29086,7 +29119,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform1v(Int32 location, Int32 count, ref UInt32 value) + void Uniform1(Int32 location, Int32 count, ref UInt32 value) { unsafe { @@ -29098,7 +29131,7 @@ namespace OpenTK.OpenGL } public static - void Uniform1v(Int32 location, Int32 count, ref Int32 value) + void Uniform1(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -29111,14 +29144,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform2v(Int32 location, Int32 count, UInt32* value) + unsafe void Uniform2uiv(Int32 location, Int32 count, UInt32* value) { unsafe { Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value); } } [System.CLSCompliant(false)] public static - unsafe void Uniform2v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform2uiv(Int32 location, Int32 count, Int32* value) { { Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value); @@ -29127,7 +29160,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform2v(Int32 location, Int32 count, [In, Out] UInt32[] value) + void Uniform2uiv(Int32 location, Int32 count, [In, Out] UInt32[] value) { unsafe { @@ -29139,7 +29172,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform2uiv(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -29152,7 +29185,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform2v(Int32 location, Int32 count, ref UInt32 value) + void Uniform2uiv(Int32 location, Int32 count, ref UInt32 value) { unsafe { @@ -29164,7 +29197,7 @@ namespace OpenTK.OpenGL } public static - void Uniform2v(Int32 location, Int32 count, ref Int32 value) + void Uniform2uiv(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -29177,14 +29210,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform3v(Int32 location, Int32 count, UInt32* value) + unsafe void Uniform3(Int32 location, Int32 count, UInt32* value) { unsafe { Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value); } } [System.CLSCompliant(false)] public static - unsafe void Uniform3v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform3(Int32 location, Int32 count, Int32* value) { { Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value); @@ -29193,7 +29226,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform3v(Int32 location, Int32 count, [In, Out] UInt32[] value) + void Uniform3(Int32 location, Int32 count, [In, Out] UInt32[] value) { unsafe { @@ -29205,7 +29238,7 @@ namespace OpenTK.OpenGL } public static - void Uniform3v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform3(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -29218,7 +29251,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform3v(Int32 location, Int32 count, ref UInt32 value) + void Uniform3(Int32 location, Int32 count, ref UInt32 value) { unsafe { @@ -29230,7 +29263,7 @@ namespace OpenTK.OpenGL } public static - void Uniform3v(Int32 location, Int32 count, ref Int32 value) + void Uniform3(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -29243,14 +29276,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Uniform4v(Int32 location, Int32 count, UInt32* value) + unsafe void Uniform4(Int32 location, Int32 count, UInt32* value) { unsafe { Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value); } } [System.CLSCompliant(false)] public static - unsafe void Uniform4v(Int32 location, Int32 count, Int32* value) + unsafe void Uniform4(Int32 location, Int32 count, Int32* value) { { Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value); @@ -29259,7 +29292,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform4v(Int32 location, Int32 count, [In, Out] UInt32[] value) + void Uniform4(Int32 location, Int32 count, [In, Out] UInt32[] value) { unsafe { @@ -29271,7 +29304,7 @@ namespace OpenTK.OpenGL } public static - void Uniform4v(Int32 location, Int32 count, [In, Out] Int32[] value) + void Uniform4(Int32 location, Int32 count, [In, Out] Int32[] value) { unsafe { @@ -29284,7 +29317,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Uniform4v(Int32 location, Int32 count, ref UInt32 value) + void Uniform4(Int32 location, Int32 count, ref UInt32 value) { unsafe { @@ -29296,7 +29329,7 @@ namespace OpenTK.OpenGL } public static - void Uniform4v(Int32 location, Int32 count, ref Int32 value) + void Uniform4(Int32 location, Int32 count, ref Int32 value) { unsafe { @@ -29308,20 +29341,20 @@ namespace OpenTK.OpenGL } public static - void DrawArraysInstancedEXT(GL.Enums.BeginMode mode, Int32 start, Int32 count, Int32 primcount) + void DrawArraysInstanced(GL.Enums.BeginMode mode, Int32 start, Int32 count, Int32 primcount) { Delegates.glDrawArraysInstancedEXT((GL.Enums.BeginMode)mode, (Int32)start, (Int32)count, (Int32)primcount); } [System.CLSCompliant(false)] public static - unsafe void DrawElementsInstancedEXT(GL.Enums.BeginMode mode, Int32 count, GL.Enums.EXT_draw_instanced type, void* indices, Int32 primcount) + unsafe void DrawElementsInstanced(GL.Enums.BeginMode mode, Int32 count, GL.Enums.EXT_draw_instanced type, void* indices, Int32 primcount) { unsafe { Delegates.glDrawElementsInstancedEXT((GL.Enums.BeginMode)mode, (Int32)count, (GL.Enums.EXT_draw_instanced)type, (void*)indices, (Int32)primcount); } } public static - void DrawElementsInstancedEXT(GL.Enums.BeginMode mode, Int32 count, GL.Enums.EXT_draw_instanced type, [In, Out] object indices, Int32 primcount) + void DrawElementsInstanced(GL.Enums.BeginMode mode, Int32 count, GL.Enums.EXT_draw_instanced type, [In, Out] object indices, Int32 primcount) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -29339,26 +29372,26 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexBufferEXT(GL.Enums.TextureTarget target, GL.Enums.EXT_texture_buffer_object internalformat, UInt32 buffer) + void TexBuffer(GL.Enums.TextureTarget target, GL.Enums.EXT_texture_buffer_object internalformat, UInt32 buffer) { Delegates.glTexBufferEXT((GL.Enums.TextureTarget)target, (GL.Enums.EXT_texture_buffer_object)internalformat, (UInt32)buffer); } public static - void TexBufferEXT(GL.Enums.TextureTarget target, GL.Enums.EXT_texture_buffer_object internalformat, Int32 buffer) + void TexBuffer(GL.Enums.TextureTarget target, GL.Enums.EXT_texture_buffer_object internalformat, Int32 buffer) { Delegates.glTexBufferEXT((GL.Enums.TextureTarget)target, (GL.Enums.EXT_texture_buffer_object)internalformat, (UInt32)buffer); } [System.CLSCompliant(false)] public static - void ColorMaskIndexedEXT(UInt32 index, GL.Enums.Boolean r, GL.Enums.Boolean g, GL.Enums.Boolean b, GL.Enums.Boolean a) + void ColorMaskIndexed(UInt32 index, GL.Enums.Boolean r, GL.Enums.Boolean g, GL.Enums.Boolean b, GL.Enums.Boolean a) { Delegates.glColorMaskIndexedEXT((UInt32)index, (GL.Enums.Boolean)r, (GL.Enums.Boolean)g, (GL.Enums.Boolean)b, (GL.Enums.Boolean)a); } public static - void ColorMaskIndexedEXT(Int32 index, GL.Enums.Boolean r, GL.Enums.Boolean g, GL.Enums.Boolean b, GL.Enums.Boolean a) + void ColorMaskIndexed(Int32 index, GL.Enums.Boolean r, GL.Enums.Boolean g, GL.Enums.Boolean b, GL.Enums.Boolean a) { unsafe { @@ -29458,78 +29491,78 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void EnableIndexedEXT(GL.Enums.EXT_draw_buffers2 target, UInt32 index) + void EnableIndexed(GL.Enums.EXT_draw_buffers2 target, UInt32 index) { Delegates.glEnableIndexedEXT((GL.Enums.EXT_draw_buffers2)target, (UInt32)index); } public static - void EnableIndexedEXT(GL.Enums.EXT_draw_buffers2 target, Int32 index) + void EnableIndexed(GL.Enums.EXT_draw_buffers2 target, Int32 index) { Delegates.glEnableIndexedEXT((GL.Enums.EXT_draw_buffers2)target, (UInt32)index); } [System.CLSCompliant(false)] public static - void DisableIndexedEXT(GL.Enums.EXT_draw_buffers2 target, UInt32 index) + void DisableIndexed(GL.Enums.EXT_draw_buffers2 target, UInt32 index) { Delegates.glDisableIndexedEXT((GL.Enums.EXT_draw_buffers2)target, (UInt32)index); } public static - void DisableIndexedEXT(GL.Enums.EXT_draw_buffers2 target, Int32 index) + void DisableIndexed(GL.Enums.EXT_draw_buffers2 target, Int32 index) { Delegates.glDisableIndexedEXT((GL.Enums.EXT_draw_buffers2)target, (UInt32)index); } [System.CLSCompliant(false)] public static - Boolean IsEnabledIndexedEXT(GL.Enums.EXT_draw_buffers2 target, UInt32 index) + Boolean IsEnabledIndexed(GL.Enums.EXT_draw_buffers2 target, UInt32 index) { return Delegates.glIsEnabledIndexedEXT((GL.Enums.EXT_draw_buffers2)target, (UInt32)index); } public static - Boolean IsEnabledIndexedEXT(GL.Enums.EXT_draw_buffers2 target, Int32 index) + Boolean IsEnabledIndexed(GL.Enums.EXT_draw_buffers2 target, Int32 index) { return Delegates.glIsEnabledIndexedEXT((GL.Enums.EXT_draw_buffers2)target, (UInt32)index); } [System.CLSCompliant(false)] public static - void UniformBufferEXT(UInt32 program, Int32 location, UInt32 buffer) + void UniformBuffer(UInt32 program, Int32 location, UInt32 buffer) { Delegates.glUniformBufferEXT((UInt32)program, (Int32)location, (UInt32)buffer); } public static - void UniformBufferEXT(Int32 program, Int32 location, Int32 buffer) + void UniformBuffer(Int32 program, Int32 location, Int32 buffer) { Delegates.glUniformBufferEXT((UInt32)program, (Int32)location, (UInt32)buffer); } [System.CLSCompliant(false)] public static - Int32 GetUniformBufferSizeEXT(UInt32 program, Int32 location) + Int32 GetUniformBufferSize(UInt32 program, Int32 location) { return Delegates.glGetUniformBufferSizeEXT((UInt32)program, (Int32)location); } public static - Int32 GetUniformBufferSizeEXT(Int32 program, Int32 location) + Int32 GetUniformBufferSize(Int32 program, Int32 location) { return Delegates.glGetUniformBufferSizeEXT((UInt32)program, (Int32)location); } [System.CLSCompliant(false)] public static - IntPtr GetUniformOffsetEXT(UInt32 program, Int32 location) + IntPtr GetUniformOffset(UInt32 program, Int32 location) { return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location); } public static - IntPtr GetUniformOffsetEXT(Int32 program, Int32 location) + IntPtr GetUniformOffset(Int32 program, Int32 location) { return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location); } @@ -29667,20 +29700,20 @@ namespace OpenTK.OpenGL } public static - void ClearColorIiEXT(Int32 red, Int32 green, Int32 blue, Int32 alpha) + void ClearColorIi(Int32 red, Int32 green, Int32 blue, Int32 alpha) { Delegates.glClearColorIiEXT((Int32)red, (Int32)green, (Int32)blue, (Int32)alpha); } [System.CLSCompliant(false)] public static - void ClearColorI(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) + void ClearColorIui(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); } public static - void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha) + void ClearColorIui(Int32 red, Int32 green, Int32 blue, Int32 alpha) { Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); } @@ -29691,13 +29724,13 @@ namespace OpenTK.OpenGL { [System.CLSCompliant(false)] public static - unsafe void GetTexFilterFuncSGIS(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, [Out] Single* weights) + unsafe void GetTexFilterFunc(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, [Out] Single* weights) { unsafe { Delegates.glGetTexFilterFuncSGIS((GL.Enums.TextureTarget)target, (GL.Enums.SGIS_texture_filter4)filter, (Single*)weights); } } public static - void GetTexFilterFuncSGIS(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, [In, Out] Single[] weights) + void GetTexFilterFunc(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, [In, Out] Single[] weights) { unsafe { @@ -29709,7 +29742,7 @@ namespace OpenTK.OpenGL } public static - void GetTexFilterFuncSGIS(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, [Out] out Single weights) + void GetTexFilterFunc(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, [Out] out Single weights) { weights = default(Single); unsafe @@ -29724,13 +29757,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexFilterFuncSGIS(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, Int32 n, Single* weights) + unsafe void TexFilterFunc(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, Int32 n, Single* weights) { unsafe { Delegates.glTexFilterFuncSGIS((GL.Enums.TextureTarget)target, (GL.Enums.SGIS_texture_filter4)filter, (Int32)n, (Single*)weights); } } public static - void TexFilterFuncSGIS(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, Int32 n, [In, Out] Single[] weights) + void TexFilterFunc(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, Int32 n, [In, Out] Single[] weights) { unsafe { @@ -29742,7 +29775,7 @@ namespace OpenTK.OpenGL } public static - void TexFilterFuncSGIS(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, Int32 n, ref Single weights) + void TexFilterFunc(GL.Enums.TextureTarget target, GL.Enums.SGIS_texture_filter4 filter, Int32 n, ref Single weights) { unsafe { @@ -29754,7 +29787,7 @@ namespace OpenTK.OpenGL } public static - void PixelTexGenParameteriSGIS(GL.Enums.PixelTexGenParameterNameSGIS pname, Int32 param) + void PixelTexGenParameteri(GL.Enums.PixelTexGenParameterNameSGIS pname, Int32 param) { Delegates.glPixelTexGenParameteriSGIS((GL.Enums.PixelTexGenParameterNameSGIS)pname, (Int32)param); } @@ -29791,7 +29824,7 @@ namespace OpenTK.OpenGL } public static - void PixelTexGenParameterfSGIS(GL.Enums.PixelTexGenParameterNameSGIS pname, Single param) + void PixelTexGenParameterf(GL.Enums.PixelTexGenParameterNameSGIS pname, Single param) { Delegates.glPixelTexGenParameterfSGIS((GL.Enums.PixelTexGenParameterNameSGIS)pname, (Single)param); } @@ -29895,13 +29928,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexImage4DSGIS(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) + unsafe void TexImage4D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) { unsafe { Delegates.glTexImage4DSGIS((GL.Enums.TextureTarget)target, (Int32)level, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)pixels); } } public static - void TexImage4DSGIS(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) + void TexImage4D(GL.Enums.TextureTarget target, Int32 level, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) { System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -29919,13 +29952,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexSubImage4DSGIS(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) + unsafe void TexSubImage4D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* pixels) { unsafe { Delegates.glTexSubImage4DSGIS((GL.Enums.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)pixels); } } public static - void TexSubImage4DSGIS(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) + void TexSubImage4D(GL.Enums.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object pixels) { System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -29943,13 +29976,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DetailTexFuncSGIS(GL.Enums.TextureTarget target, Int32 n, Single* points) + unsafe void DetailTexFunc(GL.Enums.TextureTarget target, Int32 n, Single* points) { unsafe { Delegates.glDetailTexFuncSGIS((GL.Enums.TextureTarget)target, (Int32)n, (Single*)points); } } public static - void DetailTexFuncSGIS(GL.Enums.TextureTarget target, Int32 n, [In, Out] Single[] points) + void DetailTexFunc(GL.Enums.TextureTarget target, Int32 n, [In, Out] Single[] points) { unsafe { @@ -29961,7 +29994,7 @@ namespace OpenTK.OpenGL } public static - void DetailTexFuncSGIS(GL.Enums.TextureTarget target, Int32 n, ref Single points) + void DetailTexFunc(GL.Enums.TextureTarget target, Int32 n, ref Single points) { unsafe { @@ -29974,13 +30007,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetDetailTexFuncSGIS(GL.Enums.TextureTarget target, [Out] Single* points) + unsafe void GetDetailTexFunc(GL.Enums.TextureTarget target, [Out] Single* points) { unsafe { Delegates.glGetDetailTexFuncSGIS((GL.Enums.TextureTarget)target, (Single*)points); } } public static - void GetDetailTexFuncSGIS(GL.Enums.TextureTarget target, [In, Out] Single[] points) + void GetDetailTexFunc(GL.Enums.TextureTarget target, [In, Out] Single[] points) { unsafe { @@ -29992,7 +30025,7 @@ namespace OpenTK.OpenGL } public static - void GetDetailTexFuncSGIS(GL.Enums.TextureTarget target, [Out] out Single points) + void GetDetailTexFunc(GL.Enums.TextureTarget target, [Out] out Single points) { points = default(Single); unsafe @@ -30007,13 +30040,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SharpenTexFuncSGIS(GL.Enums.TextureTarget target, Int32 n, Single* points) + unsafe void SharpenTexFunc(GL.Enums.TextureTarget target, Int32 n, Single* points) { unsafe { Delegates.glSharpenTexFuncSGIS((GL.Enums.TextureTarget)target, (Int32)n, (Single*)points); } } public static - void SharpenTexFuncSGIS(GL.Enums.TextureTarget target, Int32 n, [In, Out] Single[] points) + void SharpenTexFunc(GL.Enums.TextureTarget target, Int32 n, [In, Out] Single[] points) { unsafe { @@ -30025,7 +30058,7 @@ namespace OpenTK.OpenGL } public static - void SharpenTexFuncSGIS(GL.Enums.TextureTarget target, Int32 n, ref Single points) + void SharpenTexFunc(GL.Enums.TextureTarget target, Int32 n, ref Single points) { unsafe { @@ -30038,13 +30071,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetSharpenTexFuncSGIS(GL.Enums.TextureTarget target, [Out] Single* points) + unsafe void GetSharpenTexFunc(GL.Enums.TextureTarget target, [Out] Single* points) { unsafe { Delegates.glGetSharpenTexFuncSGIS((GL.Enums.TextureTarget)target, (Single*)points); } } public static - void GetSharpenTexFuncSGIS(GL.Enums.TextureTarget target, [In, Out] Single[] points) + void GetSharpenTexFunc(GL.Enums.TextureTarget target, [In, Out] Single[] points) { unsafe { @@ -30056,7 +30089,7 @@ namespace OpenTK.OpenGL } public static - void GetSharpenTexFuncSGIS(GL.Enums.TextureTarget target, [Out] out Single points) + void GetSharpenTexFunc(GL.Enums.TextureTarget target, [Out] out Single points) { points = default(Single); unsafe @@ -30070,19 +30103,19 @@ namespace OpenTK.OpenGL } public static - void SampleMaskSGIS(Single value, GL.Enums.Boolean invert) + void SampleMask(Single value, GL.Enums.Boolean invert) { Delegates.glSampleMaskSGIS((Single)value, (GL.Enums.Boolean)invert); } public static - void SamplePatternSGIS(GL.Enums.SamplePatternSGIS pattern) + void SamplePattern(GL.Enums.SamplePatternSGIS pattern) { Delegates.glSamplePatternSGIS((GL.Enums.SamplePatternSGIS)pattern); } public static - void PointParameterfSGIS(GL.Enums.SGIS_point_parameters pname, Single param) + void PointParameterf(GL.Enums.SGIS_point_parameters pname, Single param) { Delegates.glPointParameterfSGIS((GL.Enums.SGIS_point_parameters)pname, (Single)param); } @@ -30120,13 +30153,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void FogFuncSGIS(Int32 n, Single* points) + unsafe void FogFunc(Int32 n, Single* points) { unsafe { Delegates.glFogFuncSGIS((Int32)n, (Single*)points); } } public static - void FogFuncSGIS(Int32 n, [In, Out] Single[] points) + void FogFunc(Int32 n, [In, Out] Single[] points) { unsafe { @@ -30138,7 +30171,7 @@ namespace OpenTK.OpenGL } public static - void FogFuncSGIS(Int32 n, ref Single points) + void FogFunc(Int32 n, ref Single points) { unsafe { @@ -30151,13 +30184,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetFogFuncSGIS([Out] Single* points) + unsafe void GetFogFunc([Out] Single* points) { unsafe { Delegates.glGetFogFuncSGIS((Single*)points); } } public static - void GetFogFuncSGIS([In, Out] Single[] points) + void GetFogFunc([In, Out] Single[] points) { unsafe { @@ -30169,7 +30202,7 @@ namespace OpenTK.OpenGL } public static - void GetFogFuncSGIS([Out] out Single points) + void GetFogFunc([Out] out Single points) { points = default(Single); unsafe @@ -30183,7 +30216,7 @@ namespace OpenTK.OpenGL } public static - void TextureColorMaskSGIS(GL.Enums.Boolean red, GL.Enums.Boolean green, GL.Enums.Boolean blue, GL.Enums.Boolean alpha) + void TextureColorMask(GL.Enums.Boolean red, GL.Enums.Boolean green, GL.Enums.Boolean blue, GL.Enums.Boolean alpha) { Delegates.glTextureColorMaskSGIS((GL.Enums.Boolean)red, (GL.Enums.Boolean)green, (GL.Enums.Boolean)blue, (GL.Enums.Boolean)alpha); } @@ -30194,13 +30227,13 @@ namespace OpenTK.OpenGL { [System.CLSCompliant(false)] public static - unsafe void ColorTableSGI(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelInternalFormat internalformat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* table) + unsafe void ColorTable(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelInternalFormat internalformat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, void* table) { unsafe { Delegates.glColorTableSGI((GL.Enums.ColorTableTargetSGI)target, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)table); } } public static - void ColorTableSGI(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelInternalFormat internalformat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object table) + void ColorTable(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelInternalFormat internalformat, Int32 width, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object table) { System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -30279,20 +30312,20 @@ namespace OpenTK.OpenGL } public static - void CopyColorTableSGI(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) + void CopyColorTable(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { Delegates.glCopyColorTableSGI((GL.Enums.ColorTableTargetSGI)target, (GL.Enums.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); } [System.CLSCompliant(false)] public static - unsafe void GetColorTableSGI(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* table) + unsafe void GetColorTable(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [Out] void* table) { unsafe { Delegates.glGetColorTableSGI((GL.Enums.ColorTableTargetSGI)target, (GL.Enums.PixelFormat)format, (GL.Enums.PixelType)type, (void*)table); } } public static - void GetColorTableSGI(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object table) + void GetColorTable(GL.Enums.ColorTableTargetSGI target, GL.Enums.PixelFormat format, GL.Enums.PixelType type, [In, Out] object table) { System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -30379,13 +30412,13 @@ namespace OpenTK.OpenGL public static class SGIX { public static - void PixelTexGenSGIX(GL.Enums.SGIX_pixel_texture mode) + void PixelTexGen(GL.Enums.SGIX_pixel_texture mode) { Delegates.glPixelTexGenSGIX((GL.Enums.SGIX_pixel_texture)mode); } public static - void SpriteParameterfSGIX(GL.Enums.SGIX_sprite pname, Single param) + void SpriteParameterf(GL.Enums.SGIX_sprite pname, Single param) { Delegates.glSpriteParameterfSGIX((GL.Enums.SGIX_sprite)pname, (Single)param); } @@ -30422,7 +30455,7 @@ namespace OpenTK.OpenGL } public static - void SpriteParameteriSGIX(GL.Enums.SGIX_sprite pname, Int32 param) + void SpriteParameteri(GL.Enums.SGIX_sprite pname, Int32 param) { Delegates.glSpriteParameteriSGIX((GL.Enums.SGIX_sprite)pname, (Int32)param); } @@ -30459,20 +30492,20 @@ namespace OpenTK.OpenGL } public static - Int32 GetInstrumentsSGIX() + Int32 GetInstruments() { return Delegates.glGetInstrumentsSGIX(); } [System.CLSCompliant(false)] public static - unsafe void InstrumentsBufferSGIX(Int32 size, [Out] Int32* buffer) + unsafe void InstrumentsBuffer(Int32 size, [Out] Int32* buffer) { unsafe { Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer); } } public static - void InstrumentsBufferSGIX(Int32 size, [In, Out] Int32[] buffer) + void InstrumentsBuffer(Int32 size, [In, Out] Int32[] buffer) { unsafe { @@ -30484,7 +30517,7 @@ namespace OpenTK.OpenGL } public static - void InstrumentsBufferSGIX(Int32 size, [Out] out Int32 buffer) + void InstrumentsBuffer(Int32 size, [Out] out Int32 buffer) { buffer = default(Int32); unsafe @@ -30499,13 +30532,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Int32 PollInstrumentsSGIX([Out] Int32* marker_p) + unsafe Int32 PollInstruments([Out] Int32* marker_p) { unsafe { return Delegates.glPollInstrumentsSGIX((Int32*)marker_p); } } public static - Int32 PollInstrumentsSGIX([In, Out] Int32[] marker_p) + Int32 PollInstruments([In, Out] Int32[] marker_p) { unsafe { @@ -30518,7 +30551,7 @@ namespace OpenTK.OpenGL } public static - Int32 PollInstrumentsSGIX([Out] out Int32 marker_p) + Int32 PollInstruments([Out] out Int32 marker_p) { marker_p = default(Int32); unsafe @@ -30533,31 +30566,31 @@ namespace OpenTK.OpenGL } public static - void ReadInstrumentsSGIX(Int32 marker) + void ReadInstruments(Int32 marker) { Delegates.glReadInstrumentsSGIX((Int32)marker); } public static - void StartInstrumentsSGIX() + void StartInstruments() { Delegates.glStartInstrumentsSGIX(); } public static - void StopInstrumentsSGIX(Int32 marker) + void StopInstruments(Int32 marker) { Delegates.glStopInstrumentsSGIX((Int32)marker); } public static - void FrameZoomSGIX(Int32 factor) + void FrameZoom(Int32 factor) { Delegates.glFrameZoomSGIX((Int32)factor); } public static - void TagSampleBufferSGIX() + void TagSampleBuffer() { Delegates.glTagSampleBufferSGIX(); } @@ -30625,26 +30658,26 @@ namespace OpenTK.OpenGL } public static - void DeformSGIX(GL.Enums.FfdMaskSGIX mask) + void Deform(GL.Enums.FfdMaskSGIX mask) { Delegates.glDeformSGIX((GL.Enums.FfdMaskSGIX)mask); } public static - void LoadIdentityDeformationMapSGIX(GL.Enums.FfdMaskSGIX mask) + void LoadIdentityDeformationMap(GL.Enums.FfdMaskSGIX mask) { Delegates.glLoadIdentityDeformationMapSGIX((GL.Enums.FfdMaskSGIX)mask); } [System.CLSCompliant(false)] public static - unsafe void ReferencePlaneSGIX(Double* equation) + unsafe void ReferencePlane(Double* equation) { unsafe { Delegates.glReferencePlaneSGIX((Double*)equation); } } public static - void ReferencePlaneSGIX([In, Out] Double[] equation) + void ReferencePlane([In, Out] Double[] equation) { unsafe { @@ -30656,7 +30689,7 @@ namespace OpenTK.OpenGL } public static - void ReferencePlaneSGIX(ref Double equation) + void ReferencePlane(ref Double equation) { unsafe { @@ -30668,7 +30701,7 @@ namespace OpenTK.OpenGL } public static - void FlushRasterSGIX() + void FlushRaster() { Delegates.glFlushRasterSGIX(); } @@ -30817,13 +30850,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ListParameterfSGIX(UInt32 list, GL.Enums.ListParameterName pname, Single param) + void ListParameterf(UInt32 list, GL.Enums.ListParameterName pname, Single param) { Delegates.glListParameterfSGIX((UInt32)list, (GL.Enums.ListParameterName)pname, (Single)param); } public static - void ListParameterfSGIX(Int32 list, GL.Enums.ListParameterName pname, Single param) + void ListParameterf(Int32 list, GL.Enums.ListParameterName pname, Single param) { Delegates.glListParameterfSGIX((UInt32)list, (GL.Enums.ListParameterName)pname, (Single)param); } @@ -30896,13 +30929,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ListParameteriSGIX(UInt32 list, GL.Enums.ListParameterName pname, Int32 param) + void ListParameteri(UInt32 list, GL.Enums.ListParameterName pname, Int32 param) { Delegates.glListParameteriSGIX((UInt32)list, (GL.Enums.ListParameterName)pname, (Int32)param); } public static - void ListParameteriSGIX(Int32 list, GL.Enums.ListParameterName pname, Int32 param) + void ListParameteri(Int32 list, GL.Enums.ListParameterName pname, Int32 param) { Delegates.glListParameteriSGIX((UInt32)list, (GL.Enums.ListParameterName)pname, (Int32)param); } @@ -30974,13 +31007,13 @@ namespace OpenTK.OpenGL } public static - void FragmentColorMaterialSGIX(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter mode) + void FragmentColorMaterial(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter mode) { Delegates.glFragmentColorMaterialSGIX((GL.Enums.MaterialFace)face, (GL.Enums.MaterialParameter)mode); } public static - void FragmentLightfSGIX(GL.Enums.SGIX_fragment_lighting light, GL.Enums.SGIX_fragment_lighting pname, Single param) + void FragmentLightf(GL.Enums.SGIX_fragment_lighting light, GL.Enums.SGIX_fragment_lighting pname, Single param) { Delegates.glFragmentLightfSGIX((GL.Enums.SGIX_fragment_lighting)light, (GL.Enums.SGIX_fragment_lighting)pname, (Single)param); } @@ -31017,7 +31050,7 @@ namespace OpenTK.OpenGL } public static - void FragmentLightiSGIX(GL.Enums.SGIX_fragment_lighting light, GL.Enums.SGIX_fragment_lighting pname, Int32 param) + void FragmentLighti(GL.Enums.SGIX_fragment_lighting light, GL.Enums.SGIX_fragment_lighting pname, Int32 param) { Delegates.glFragmentLightiSGIX((GL.Enums.SGIX_fragment_lighting)light, (GL.Enums.SGIX_fragment_lighting)pname, (Int32)param); } @@ -31054,7 +31087,7 @@ namespace OpenTK.OpenGL } public static - void FragmentLightModelfSGIX(GL.Enums.FragmentLightModelParameterSGIX pname, Single param) + void FragmentLightModelf(GL.Enums.FragmentLightModelParameterSGIX pname, Single param) { Delegates.glFragmentLightModelfSGIX((GL.Enums.FragmentLightModelParameterSGIX)pname, (Single)param); } @@ -31091,7 +31124,7 @@ namespace OpenTK.OpenGL } public static - void FragmentLightModeliSGIX(GL.Enums.FragmentLightModelParameterSGIX pname, Int32 param) + void FragmentLightModeli(GL.Enums.FragmentLightModelParameterSGIX pname, Int32 param) { Delegates.glFragmentLightModeliSGIX((GL.Enums.FragmentLightModelParameterSGIX)pname, (Int32)param); } @@ -31128,7 +31161,7 @@ namespace OpenTK.OpenGL } public static - void FragmentMaterialfSGIX(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Single param) + void FragmentMaterialf(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Single param) { Delegates.glFragmentMaterialfSGIX((GL.Enums.MaterialFace)face, (GL.Enums.MaterialParameter)pname, (Single)param); } @@ -31165,7 +31198,7 @@ namespace OpenTK.OpenGL } public static - void FragmentMaterialiSGIX(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Int32 param) + void FragmentMateriali(GL.Enums.MaterialFace face, GL.Enums.MaterialParameter pname, Int32 param) { Delegates.glFragmentMaterialiSGIX((GL.Enums.MaterialFace)face, (GL.Enums.MaterialParameter)pname, (Int32)param); } @@ -31334,34 +31367,34 @@ namespace OpenTK.OpenGL } public static - void LightEnviSGIX(GL.Enums.LightEnvParameterSGIX pname, Int32 param) + void LightEnvi(GL.Enums.LightEnvParameterSGIX pname, Int32 param) { Delegates.glLightEnviSGIX((GL.Enums.LightEnvParameterSGIX)pname, (Int32)param); } [System.CLSCompliant(false)] public static - void AsyncMarkerSGIX(UInt32 marker) + void AsyncMarker(UInt32 marker) { Delegates.glAsyncMarkerSGIX((UInt32)marker); } public static - void AsyncMarkerSGIX(Int32 marker) + void AsyncMarker(Int32 marker) { Delegates.glAsyncMarkerSGIX((UInt32)marker); } [System.CLSCompliant(false)] public static - unsafe Int32 FinishAsyncSGIX([Out] UInt32* markerp) + unsafe Int32 FinishAsync([Out] UInt32* markerp) { unsafe { return Delegates.glFinishAsyncSGIX((UInt32*)markerp); } } [System.CLSCompliant(false)] public static - unsafe Int32 FinishAsyncSGIX([Out] Int32* markerp) + unsafe Int32 FinishAsync([Out] Int32* markerp) { markerp = default(Int32*); { @@ -31372,7 +31405,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Int32 FinishAsyncSGIX([In, Out] UInt32[] markerp) + Int32 FinishAsync([In, Out] UInt32[] markerp) { unsafe { @@ -31385,7 +31418,7 @@ namespace OpenTK.OpenGL } public static - Int32 FinishAsyncSGIX([In, Out] Int32[] markerp) + Int32 FinishAsync([In, Out] Int32[] markerp) { unsafe { @@ -31399,7 +31432,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Int32 FinishAsyncSGIX([Out] out UInt32 markerp) + Int32 FinishAsync([Out] out UInt32 markerp) { markerp = default(UInt32); unsafe @@ -31414,7 +31447,7 @@ namespace OpenTK.OpenGL } public static - Int32 FinishAsyncSGIX([Out] out Int32 markerp) + Int32 FinishAsync([Out] out Int32 markerp) { markerp = default(Int32); unsafe @@ -31430,14 +31463,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Int32 PollAsyncSGIX([Out] UInt32* markerp) + unsafe Int32 PollAsync([Out] UInt32* markerp) { unsafe { return Delegates.glPollAsyncSGIX((UInt32*)markerp); } } [System.CLSCompliant(false)] public static - unsafe Int32 PollAsyncSGIX([Out] Int32* markerp) + unsafe Int32 PollAsync([Out] Int32* markerp) { markerp = default(Int32*); { @@ -31448,7 +31481,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Int32 PollAsyncSGIX([In, Out] UInt32[] markerp) + Int32 PollAsync([In, Out] UInt32[] markerp) { unsafe { @@ -31461,7 +31494,7 @@ namespace OpenTK.OpenGL } public static - Int32 PollAsyncSGIX([In, Out] Int32[] markerp) + Int32 PollAsync([In, Out] Int32[] markerp) { unsafe { @@ -31475,7 +31508,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Int32 PollAsyncSGIX([Out] out UInt32 markerp) + Int32 PollAsync([Out] out UInt32 markerp) { markerp = default(UInt32); unsafe @@ -31490,7 +31523,7 @@ namespace OpenTK.OpenGL } public static - Int32 PollAsyncSGIX([Out] out Int32 markerp) + Int32 PollAsync([Out] out Int32 markerp) { markerp = default(Int32); unsafe @@ -31505,46 +31538,46 @@ namespace OpenTK.OpenGL } public static - Int32 GenAsyncMarkersSGIX(Int32 range) + Int32 GenAsyncMarkers(Int32 range) { return Delegates.glGenAsyncMarkersSGIX((Int32)range); } [System.CLSCompliant(false)] public static - void DeleteAsyncMarkersSGIX(UInt32 marker, Int32 range) + void DeleteAsyncMarkers(UInt32 marker, Int32 range) { Delegates.glDeleteAsyncMarkersSGIX((UInt32)marker, (Int32)range); } public static - void DeleteAsyncMarkersSGIX(Int32 marker, Int32 range) + void DeleteAsyncMarkers(Int32 marker, Int32 range) { Delegates.glDeleteAsyncMarkersSGIX((UInt32)marker, (Int32)range); } [System.CLSCompliant(false)] public static - Boolean IsAsyncMarkerSGIX(UInt32 marker) + Boolean IsAsyncMarker(UInt32 marker) { return Delegates.glIsAsyncMarkerSGIX((UInt32)marker); } public static - Boolean IsAsyncMarkerSGIX(Int32 marker) + Boolean IsAsyncMarker(Int32 marker) { return Delegates.glIsAsyncMarkerSGIX((UInt32)marker); } [System.CLSCompliant(false)] public static - unsafe void IglooInterfaceSGIX(GL.Enums.All pname, void* @params) + unsafe void IglooInterface(GL.Enums.All pname, void* @params) { unsafe { Delegates.glIglooInterfaceSGIX((GL.Enums.All)pname, (void*)@params); } } public static - void IglooInterfaceSGIX(GL.Enums.All pname, [In, Out] object @params) + void IglooInterface(GL.Enums.All pname, [In, Out] object @params) { System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -31565,13 +31598,13 @@ namespace OpenTK.OpenGL public static class HP { public static - void ImageTransformParameteriHP(GL.Enums.HP_image_transform target, GL.Enums.HP_image_transform pname, Int32 param) + void ImageTransformParameteri(GL.Enums.HP_image_transform target, GL.Enums.HP_image_transform pname, Int32 param) { Delegates.glImageTransformParameteriHP((GL.Enums.HP_image_transform)target, (GL.Enums.HP_image_transform)pname, (Int32)param); } public static - void ImageTransformParameterfHP(GL.Enums.HP_image_transform target, GL.Enums.HP_image_transform pname, Single param) + void ImageTransformParameterf(GL.Enums.HP_image_transform target, GL.Enums.HP_image_transform pname, Single param) { Delegates.glImageTransformParameterfHP((GL.Enums.HP_image_transform)target, (GL.Enums.HP_image_transform)pname, (Single)param); } @@ -31709,7 +31742,7 @@ namespace OpenTK.OpenGL public static class PGI { public static - void HintPGI(GL.Enums.PGI_misc_hints target, Int32 mode) + void Hint(GL.Enums.PGI_misc_hints target, Int32 mode) { Delegates.glHintPGI((GL.Enums.PGI_misc_hints)target, (Int32)mode); } @@ -31719,7 +31752,7 @@ namespace OpenTK.OpenGL public static class SUNX { public static - void FinishTextureSUNX() + void FinishTexture() { Delegates.glFinishTextureSUNX(); } @@ -31730,101 +31763,101 @@ namespace OpenTK.OpenGL { [System.CLSCompliant(false)] public static - void GlobalAlphaFactorbSUN(SByte factor) + void GlobalAlphaFactorb(SByte factor) { Delegates.glGlobalAlphaFactorbSUN((SByte)factor); } public static - void GlobalAlphaFactorbSUN(Byte factor) + void GlobalAlphaFactorb(Byte factor) { Delegates.glGlobalAlphaFactorbSUN((SByte)factor); } public static - void GlobalAlphaFactorsSUN(Int16 factor) + void GlobalAlphaFactors(Int16 factor) { Delegates.glGlobalAlphaFactorsSUN((Int16)factor); } public static - void GlobalAlphaFactoriSUN(Int32 factor) + void GlobalAlphaFactori(Int32 factor) { Delegates.glGlobalAlphaFactoriSUN((Int32)factor); } public static - void GlobalAlphaFactorfSUN(Single factor) + void GlobalAlphaFactorf(Single factor) { Delegates.glGlobalAlphaFactorfSUN((Single)factor); } public static - void GlobalAlphaFactordSUN(Double factor) + void GlobalAlphaFactord(Double factor) { Delegates.glGlobalAlphaFactordSUN((Double)factor); } public static - void GlobalAlphaFactor(Byte factor) + void GlobalAlphaFactorub(Byte factor) { Delegates.glGlobalAlphaFactorubSUN((Byte)factor); } [System.CLSCompliant(false)] public static - void GlobalAlphaFactor(UInt16 factor) + void GlobalAlphaFactorus(UInt16 factor) { Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); } public static - void GlobalAlphaFactor(Int16 factor) + void GlobalAlphaFactorus(Int16 factor) { Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); } [System.CLSCompliant(false)] public static - void GlobalAlphaFactor(UInt32 factor) + void GlobalAlphaFactorui(UInt32 factor) { Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor); } public static - void GlobalAlphaFactor(Int32 factor) + void GlobalAlphaFactorui(Int32 factor) { Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor); } [System.CLSCompliant(false)] public static - void ReplacementCode(UInt32 code) + void ReplacementCodeui(UInt32 code) { Delegates.glReplacementCodeuiSUN((UInt32)code); } public static - void ReplacementCode(Int32 code) + void ReplacementCodeui(Int32 code) { Delegates.glReplacementCodeuiSUN((UInt32)code); } [System.CLSCompliant(false)] public static - void ReplacementCode(UInt16 code) + void ReplacementCodeus(UInt16 code) { Delegates.glReplacementCodeusSUN((UInt16)code); } public static - void ReplacementCode(Int16 code) + void ReplacementCodeus(Int16 code) { Delegates.glReplacementCodeusSUN((UInt16)code); } public static - void ReplacementCode(Byte code) + void ReplacementCodeub(Byte code) { Delegates.glReplacementCodeubSUN((Byte)code); } @@ -31994,13 +32027,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodePointerSUN(GL.Enums.SUN_triangle_list type, Int32 stride, void* pointer) + unsafe void ReplacementCodePointer(GL.Enums.SUN_triangle_list type, Int32 stride, void* pointer) { unsafe { Delegates.glReplacementCodePointerSUN((GL.Enums.SUN_triangle_list)type, (Int32)stride, (void*)pointer); } } public static - void ReplacementCodePointerSUN(GL.Enums.SUN_triangle_list type, Int32 stride, [In, Out] object pointer) + void ReplacementCodePointer(GL.Enums.SUN_triangle_list type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -32024,14 +32057,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex2v(Byte* c, Single* v) + unsafe void Color4ubVertex2(Byte* c, Single* v) { unsafe { Delegates.glColor4ubVertex2fvSUN((Byte*)c, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex2v(Byte* c, [In, Out] Single[] v) + unsafe void Color4ubVertex2(Byte* c, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -32041,7 +32074,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex2v(Byte* c, ref Single v) + unsafe void Color4ubVertex2(Byte* c, ref Single v) { fixed (Single* v_ptr = &v) { @@ -32051,7 +32084,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex2v([In, Out] Byte[] c, Single* v) + unsafe void Color4ubVertex2([In, Out] Byte[] c, Single* v) { fixed (Byte* c_ptr = c) { @@ -32060,7 +32093,7 @@ namespace OpenTK.OpenGL } public static - void Color4ubVertex2v([In, Out] Byte[] c, [In, Out] Single[] v) + void Color4ubVertex2([In, Out] Byte[] c, [In, Out] Single[] v) { unsafe { @@ -32073,7 +32106,7 @@ namespace OpenTK.OpenGL } public static - void Color4ubVertex2v([In, Out] Byte[] c, ref Single v) + void Color4ubVertex2([In, Out] Byte[] c, ref Single v) { unsafe { @@ -32087,7 +32120,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex2v(ref Byte c, Single* v) + unsafe void Color4ubVertex2(ref Byte c, Single* v) { fixed (Byte* c_ptr = &c) { @@ -32096,7 +32129,7 @@ namespace OpenTK.OpenGL } public static - void Color4ubVertex2v(ref Byte c, [In, Out] Single[] v) + void Color4ubVertex2(ref Byte c, [In, Out] Single[] v) { unsafe { @@ -32109,7 +32142,7 @@ namespace OpenTK.OpenGL } public static - void Color4ubVertex2v(ref Byte c, ref Single v) + void Color4ubVertex2(ref Byte c, ref Single v) { unsafe { @@ -32129,14 +32162,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex3v(Byte* c, Single* v) + unsafe void Color4ubVertex3(Byte* c, Single* v) { unsafe { Delegates.glColor4ubVertex3fvSUN((Byte*)c, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex3v(Byte* c, [In, Out] Single[] v) + unsafe void Color4ubVertex3(Byte* c, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -32146,7 +32179,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex3v(Byte* c, ref Single v) + unsafe void Color4ubVertex3(Byte* c, ref Single v) { fixed (Single* v_ptr = &v) { @@ -32156,7 +32189,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex3v([In, Out] Byte[] c, Single* v) + unsafe void Color4ubVertex3([In, Out] Byte[] c, Single* v) { fixed (Byte* c_ptr = c) { @@ -32165,7 +32198,7 @@ namespace OpenTK.OpenGL } public static - void Color4ubVertex3v([In, Out] Byte[] c, [In, Out] Single[] v) + void Color4ubVertex3([In, Out] Byte[] c, [In, Out] Single[] v) { unsafe { @@ -32178,7 +32211,7 @@ namespace OpenTK.OpenGL } public static - void Color4ubVertex3v([In, Out] Byte[] c, ref Single v) + void Color4ubVertex3([In, Out] Byte[] c, ref Single v) { unsafe { @@ -32192,7 +32225,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4ubVertex3v(ref Byte c, Single* v) + unsafe void Color4ubVertex3(ref Byte c, Single* v) { fixed (Byte* c_ptr = &c) { @@ -32201,7 +32234,7 @@ namespace OpenTK.OpenGL } public static - void Color4ubVertex3v(ref Byte c, [In, Out] Single[] v) + void Color4ubVertex3(ref Byte c, [In, Out] Single[] v) { unsafe { @@ -32214,7 +32247,7 @@ namespace OpenTK.OpenGL } public static - void Color4ubVertex3v(ref Byte c, ref Single v) + void Color4ubVertex3(ref Byte c, ref Single v) { unsafe { @@ -32234,14 +32267,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3fVertex3v(Single* c, Single* v) + unsafe void Color3fVertex3(Single* c, Single* v) { unsafe { Delegates.glColor3fVertex3fvSUN((Single*)c, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void Color3fVertex3v(Single* c, [In, Out] Single[] v) + unsafe void Color3fVertex3(Single* c, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -32251,7 +32284,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3fVertex3v(Single* c, ref Single v) + unsafe void Color3fVertex3(Single* c, ref Single v) { fixed (Single* v_ptr = &v) { @@ -32261,7 +32294,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3fVertex3v([In, Out] Single[] c, Single* v) + unsafe void Color3fVertex3([In, Out] Single[] c, Single* v) { fixed (Single* c_ptr = c) { @@ -32270,7 +32303,7 @@ namespace OpenTK.OpenGL } public static - void Color3fVertex3v([In, Out] Single[] c, [In, Out] Single[] v) + void Color3fVertex3([In, Out] Single[] c, [In, Out] Single[] v) { unsafe { @@ -32283,7 +32316,7 @@ namespace OpenTK.OpenGL } public static - void Color3fVertex3v([In, Out] Single[] c, ref Single v) + void Color3fVertex3([In, Out] Single[] c, ref Single v) { unsafe { @@ -32297,7 +32330,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color3fVertex3v(ref Single c, Single* v) + unsafe void Color3fVertex3(ref Single c, Single* v) { fixed (Single* c_ptr = &c) { @@ -32306,7 +32339,7 @@ namespace OpenTK.OpenGL } public static - void Color3fVertex3v(ref Single c, [In, Out] Single[] v) + void Color3fVertex3(ref Single c, [In, Out] Single[] v) { unsafe { @@ -32319,7 +32352,7 @@ namespace OpenTK.OpenGL } public static - void Color3fVertex3v(ref Single c, ref Single v) + void Color3fVertex3(ref Single c, ref Single v) { unsafe { @@ -32339,14 +32372,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Normal3fVertex3v(Single* n, Single* v) + unsafe void Normal3fVertex3(Single* n, Single* v) { unsafe { Delegates.glNormal3fVertex3fvSUN((Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void Normal3fVertex3v(Single* n, [In, Out] Single[] v) + unsafe void Normal3fVertex3(Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -32356,7 +32389,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Normal3fVertex3v(Single* n, ref Single v) + unsafe void Normal3fVertex3(Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -32366,7 +32399,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Normal3fVertex3v([In, Out] Single[] n, Single* v) + unsafe void Normal3fVertex3([In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -32375,7 +32408,7 @@ namespace OpenTK.OpenGL } public static - void Normal3fVertex3v([In, Out] Single[] n, [In, Out] Single[] v) + void Normal3fVertex3([In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -32388,7 +32421,7 @@ namespace OpenTK.OpenGL } public static - void Normal3fVertex3v([In, Out] Single[] n, ref Single v) + void Normal3fVertex3([In, Out] Single[] n, ref Single v) { unsafe { @@ -32402,7 +32435,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Normal3fVertex3v(ref Single n, Single* v) + unsafe void Normal3fVertex3(ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -32411,7 +32444,7 @@ namespace OpenTK.OpenGL } public static - void Normal3fVertex3v(ref Single n, [In, Out] Single[] v) + void Normal3fVertex3(ref Single n, [In, Out] Single[] v) { unsafe { @@ -32424,7 +32457,7 @@ namespace OpenTK.OpenGL } public static - void Normal3fVertex3v(ref Single n, ref Single v) + void Normal3fVertex3(ref Single n, ref Single v) { unsafe { @@ -32444,14 +32477,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(Single* c, Single* n, Single* v) + unsafe void Color4fNormal3fVertex3(Single* c, Single* n, Single* v) { unsafe { Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(Single* c, Single* n, [In, Out] Single[] v) + unsafe void Color4fNormal3fVertex3(Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -32461,7 +32494,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(Single* c, Single* n, ref Single v) + unsafe void Color4fNormal3fVertex3(Single* c, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -32471,7 +32504,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(Single* c, [In, Out] Single[] n, Single* v) + unsafe void Color4fNormal3fVertex3(Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -32481,7 +32514,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void Color4fNormal3fVertex3(Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -32492,7 +32525,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(Single* c, [In, Out] Single[] n, ref Single v) + unsafe void Color4fNormal3fVertex3(Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -32503,7 +32536,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(Single* c, ref Single n, Single* v) + unsafe void Color4fNormal3fVertex3(Single* c, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -32513,7 +32546,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(Single* c, ref Single n, [In, Out] Single[] v) + unsafe void Color4fNormal3fVertex3(Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -32524,7 +32557,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(Single* c, ref Single n, ref Single v) + unsafe void Color4fNormal3fVertex3(Single* c, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -32535,7 +32568,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v([In, Out] Single[] c, Single* n, Single* v) + unsafe void Color4fNormal3fVertex3([In, Out] Single[] c, Single* n, Single* v) { fixed (Single* c_ptr = c) { @@ -32545,7 +32578,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v([In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void Color4fNormal3fVertex3([In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -32556,7 +32589,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v([In, Out] Single[] c, Single* n, ref Single v) + unsafe void Color4fNormal3fVertex3([In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -32567,7 +32600,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v([In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void Color4fNormal3fVertex3([In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -32577,7 +32610,7 @@ namespace OpenTK.OpenGL } public static - void Color4fNormal3fVertex3v([In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void Color4fNormal3fVertex3([In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -32591,7 +32624,7 @@ namespace OpenTK.OpenGL } public static - void Color4fNormal3fVertex3v([In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void Color4fNormal3fVertex3([In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -32606,7 +32639,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v([In, Out] Single[] c, ref Single n, Single* v) + unsafe void Color4fNormal3fVertex3([In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -32616,7 +32649,7 @@ namespace OpenTK.OpenGL } public static - void Color4fNormal3fVertex3v([In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void Color4fNormal3fVertex3([In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -32630,7 +32663,7 @@ namespace OpenTK.OpenGL } public static - void Color4fNormal3fVertex3v([In, Out] Single[] c, ref Single n, ref Single v) + void Color4fNormal3fVertex3([In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -32645,7 +32678,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(ref Single c, Single* n, Single* v) + unsafe void Color4fNormal3fVertex3(ref Single c, Single* n, Single* v) { fixed (Single* c_ptr = &c) { @@ -32655,7 +32688,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(ref Single c, Single* n, [In, Out] Single[] v) + unsafe void Color4fNormal3fVertex3(ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -32666,7 +32699,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(ref Single c, Single* n, ref Single v) + unsafe void Color4fNormal3fVertex3(ref Single c, Single* n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -32677,7 +32710,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(ref Single c, [In, Out] Single[] n, Single* v) + unsafe void Color4fNormal3fVertex3(ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -32687,7 +32720,7 @@ namespace OpenTK.OpenGL } public static - void Color4fNormal3fVertex3v(ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void Color4fNormal3fVertex3(ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -32701,7 +32734,7 @@ namespace OpenTK.OpenGL } public static - void Color4fNormal3fVertex3v(ref Single c, [In, Out] Single[] n, ref Single v) + void Color4fNormal3fVertex3(ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -32716,7 +32749,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void Color4fNormal3fVertex3v(ref Single c, ref Single n, Single* v) + unsafe void Color4fNormal3fVertex3(ref Single c, ref Single n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -32726,7 +32759,7 @@ namespace OpenTK.OpenGL } public static - void Color4fNormal3fVertex3v(ref Single c, ref Single n, [In, Out] Single[] v) + void Color4fNormal3fVertex3(ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -32740,7 +32773,7 @@ namespace OpenTK.OpenGL } public static - void Color4fNormal3fVertex3v(ref Single c, ref Single n, ref Single v) + void Color4fNormal3fVertex3(ref Single c, ref Single n, ref Single v) { unsafe { @@ -32761,14 +32794,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fVertex3v(Single* tc, Single* v) + unsafe void TexCoord2fVertex3(Single* tc, Single* v) { unsafe { Delegates.glTexCoord2fVertex3fvSUN((Single*)tc, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord2fVertex3v(Single* tc, [In, Out] Single[] v) + unsafe void TexCoord2fVertex3(Single* tc, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -32778,7 +32811,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fVertex3v(Single* tc, ref Single v) + unsafe void TexCoord2fVertex3(Single* tc, ref Single v) { fixed (Single* v_ptr = &v) { @@ -32788,7 +32821,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fVertex3v([In, Out] Single[] tc, Single* v) + unsafe void TexCoord2fVertex3([In, Out] Single[] tc, Single* v) { fixed (Single* tc_ptr = tc) { @@ -32797,7 +32830,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fVertex3v([In, Out] Single[] tc, [In, Out] Single[] v) + void TexCoord2fVertex3([In, Out] Single[] tc, [In, Out] Single[] v) { unsafe { @@ -32810,7 +32843,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fVertex3v([In, Out] Single[] tc, ref Single v) + void TexCoord2fVertex3([In, Out] Single[] tc, ref Single v) { unsafe { @@ -32824,7 +32857,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fVertex3v(ref Single tc, Single* v) + unsafe void TexCoord2fVertex3(ref Single tc, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -32833,7 +32866,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fVertex3v(ref Single tc, [In, Out] Single[] v) + void TexCoord2fVertex3(ref Single tc, [In, Out] Single[] v) { unsafe { @@ -32846,7 +32879,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fVertex3v(ref Single tc, ref Single v) + void TexCoord2fVertex3(ref Single tc, ref Single v) { unsafe { @@ -32866,14 +32899,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fVertex4v(Single* tc, Single* v) + unsafe void TexCoord4fVertex4(Single* tc, Single* v) { unsafe { Delegates.glTexCoord4fVertex4fvSUN((Single*)tc, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord4fVertex4v(Single* tc, [In, Out] Single[] v) + unsafe void TexCoord4fVertex4(Single* tc, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -32883,7 +32916,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fVertex4v(Single* tc, ref Single v) + unsafe void TexCoord4fVertex4(Single* tc, ref Single v) { fixed (Single* v_ptr = &v) { @@ -32893,7 +32926,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fVertex4v([In, Out] Single[] tc, Single* v) + unsafe void TexCoord4fVertex4([In, Out] Single[] tc, Single* v) { fixed (Single* tc_ptr = tc) { @@ -32902,7 +32935,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fVertex4v([In, Out] Single[] tc, [In, Out] Single[] v) + void TexCoord4fVertex4([In, Out] Single[] tc, [In, Out] Single[] v) { unsafe { @@ -32915,7 +32948,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fVertex4v([In, Out] Single[] tc, ref Single v) + void TexCoord4fVertex4([In, Out] Single[] tc, ref Single v) { unsafe { @@ -32929,7 +32962,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fVertex4v(ref Single tc, Single* v) + unsafe void TexCoord4fVertex4(ref Single tc, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -32938,7 +32971,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fVertex4v(ref Single tc, [In, Out] Single[] v) + void TexCoord4fVertex4(ref Single tc, [In, Out] Single[] v) { unsafe { @@ -32951,7 +32984,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fVertex4v(ref Single tc, ref Single v) + void TexCoord4fVertex4(ref Single tc, ref Single v) { unsafe { @@ -32971,14 +33004,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(Single* tc, Byte* c, Single* v) + unsafe void TexCoord2fColor4ubVertex3(Single* tc, Byte* c, Single* v) { unsafe { Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc, (Byte*)c, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(Single* tc, Byte* c, [In, Out] Single[] v) + unsafe void TexCoord2fColor4ubVertex3(Single* tc, Byte* c, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -32988,7 +33021,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(Single* tc, Byte* c, ref Single v) + unsafe void TexCoord2fColor4ubVertex3(Single* tc, Byte* c, ref Single v) { fixed (Single* v_ptr = &v) { @@ -32998,7 +33031,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(Single* tc, [In, Out] Byte[] c, Single* v) + unsafe void TexCoord2fColor4ubVertex3(Single* tc, [In, Out] Byte[] c, Single* v) { fixed (Byte* c_ptr = c) { @@ -33008,7 +33041,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(Single* tc, [In, Out] Byte[] c, [In, Out] Single[] v) + unsafe void TexCoord2fColor4ubVertex3(Single* tc, [In, Out] Byte[] c, [In, Out] Single[] v) { fixed (Byte* c_ptr = c) fixed (Single* v_ptr = v) @@ -33019,7 +33052,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(Single* tc, [In, Out] Byte[] c, ref Single v) + unsafe void TexCoord2fColor4ubVertex3(Single* tc, [In, Out] Byte[] c, ref Single v) { fixed (Byte* c_ptr = c) fixed (Single* v_ptr = &v) @@ -33030,7 +33063,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(Single* tc, ref Byte c, Single* v) + unsafe void TexCoord2fColor4ubVertex3(Single* tc, ref Byte c, Single* v) { fixed (Byte* c_ptr = &c) { @@ -33040,7 +33073,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(Single* tc, ref Byte c, [In, Out] Single[] v) + unsafe void TexCoord2fColor4ubVertex3(Single* tc, ref Byte c, [In, Out] Single[] v) { fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = v) @@ -33051,7 +33084,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(Single* tc, ref Byte c, ref Single v) + unsafe void TexCoord2fColor4ubVertex3(Single* tc, ref Byte c, ref Single v) { fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -33062,7 +33095,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v([In, Out] Single[] tc, Byte* c, Single* v) + unsafe void TexCoord2fColor4ubVertex3([In, Out] Single[] tc, Byte* c, Single* v) { fixed (Single* tc_ptr = tc) { @@ -33072,7 +33105,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v([In, Out] Single[] tc, Byte* c, [In, Out] Single[] v) + unsafe void TexCoord2fColor4ubVertex3([In, Out] Single[] tc, Byte* c, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -33083,7 +33116,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v([In, Out] Single[] tc, Byte* c, ref Single v) + unsafe void TexCoord2fColor4ubVertex3([In, Out] Single[] tc, Byte* c, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -33094,7 +33127,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v([In, Out] Single[] tc, [In, Out] Byte[] c, Single* v) + unsafe void TexCoord2fColor4ubVertex3([In, Out] Single[] tc, [In, Out] Byte[] c, Single* v) { fixed (Single* tc_ptr = tc) fixed (Byte* c_ptr = c) @@ -33104,7 +33137,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4ubVertex3v([In, Out] Single[] tc, [In, Out] Byte[] c, [In, Out] Single[] v) + void TexCoord2fColor4ubVertex3([In, Out] Single[] tc, [In, Out] Byte[] c, [In, Out] Single[] v) { unsafe { @@ -33118,7 +33151,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4ubVertex3v([In, Out] Single[] tc, [In, Out] Byte[] c, ref Single v) + void TexCoord2fColor4ubVertex3([In, Out] Single[] tc, [In, Out] Byte[] c, ref Single v) { unsafe { @@ -33133,7 +33166,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v([In, Out] Single[] tc, ref Byte c, Single* v) + unsafe void TexCoord2fColor4ubVertex3([In, Out] Single[] tc, ref Byte c, Single* v) { fixed (Single* tc_ptr = tc) fixed (Byte* c_ptr = &c) @@ -33143,7 +33176,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4ubVertex3v([In, Out] Single[] tc, ref Byte c, [In, Out] Single[] v) + void TexCoord2fColor4ubVertex3([In, Out] Single[] tc, ref Byte c, [In, Out] Single[] v) { unsafe { @@ -33157,7 +33190,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4ubVertex3v([In, Out] Single[] tc, ref Byte c, ref Single v) + void TexCoord2fColor4ubVertex3([In, Out] Single[] tc, ref Byte c, ref Single v) { unsafe { @@ -33172,7 +33205,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(ref Single tc, Byte* c, Single* v) + unsafe void TexCoord2fColor4ubVertex3(ref Single tc, Byte* c, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -33182,7 +33215,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(ref Single tc, Byte* c, [In, Out] Single[] v) + unsafe void TexCoord2fColor4ubVertex3(ref Single tc, Byte* c, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -33193,7 +33226,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(ref Single tc, Byte* c, ref Single v) + unsafe void TexCoord2fColor4ubVertex3(ref Single tc, Byte* c, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -33204,7 +33237,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(ref Single tc, [In, Out] Byte[] c, Single* v) + unsafe void TexCoord2fColor4ubVertex3(ref Single tc, [In, Out] Byte[] c, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Byte* c_ptr = c) @@ -33214,7 +33247,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4ubVertex3v(ref Single tc, [In, Out] Byte[] c, [In, Out] Single[] v) + void TexCoord2fColor4ubVertex3(ref Single tc, [In, Out] Byte[] c, [In, Out] Single[] v) { unsafe { @@ -33228,7 +33261,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4ubVertex3v(ref Single tc, [In, Out] Byte[] c, ref Single v) + void TexCoord2fColor4ubVertex3(ref Single tc, [In, Out] Byte[] c, ref Single v) { unsafe { @@ -33243,7 +33276,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4ubVertex3v(ref Single tc, ref Byte c, Single* v) + unsafe void TexCoord2fColor4ubVertex3(ref Single tc, ref Byte c, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Byte* c_ptr = &c) @@ -33253,7 +33286,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4ubVertex3v(ref Single tc, ref Byte c, [In, Out] Single[] v) + void TexCoord2fColor4ubVertex3(ref Single tc, ref Byte c, [In, Out] Single[] v) { unsafe { @@ -33267,7 +33300,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4ubVertex3v(ref Single tc, ref Byte c, ref Single v) + void TexCoord2fColor4ubVertex3(ref Single tc, ref Byte c, ref Single v) { unsafe { @@ -33288,14 +33321,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(Single* tc, Single* c, Single* v) + unsafe void TexCoord2fColor3fVertex3(Single* tc, Single* c, Single* v) { unsafe { Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(Single* tc, Single* c, [In, Out] Single[] v) + unsafe void TexCoord2fColor3fVertex3(Single* tc, Single* c, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -33305,7 +33338,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(Single* tc, Single* c, ref Single v) + unsafe void TexCoord2fColor3fVertex3(Single* tc, Single* c, ref Single v) { fixed (Single* v_ptr = &v) { @@ -33315,7 +33348,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(Single* tc, [In, Out] Single[] c, Single* v) + unsafe void TexCoord2fColor3fVertex3(Single* tc, [In, Out] Single[] c, Single* v) { fixed (Single* c_ptr = c) { @@ -33325,7 +33358,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(Single* tc, [In, Out] Single[] c, [In, Out] Single[] v) + unsafe void TexCoord2fColor3fVertex3(Single* tc, [In, Out] Single[] c, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -33336,7 +33369,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(Single* tc, [In, Out] Single[] c, ref Single v) + unsafe void TexCoord2fColor3fVertex3(Single* tc, [In, Out] Single[] c, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -33347,7 +33380,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(Single* tc, ref Single c, Single* v) + unsafe void TexCoord2fColor3fVertex3(Single* tc, ref Single c, Single* v) { fixed (Single* c_ptr = &c) { @@ -33357,7 +33390,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(Single* tc, ref Single c, [In, Out] Single[] v) + unsafe void TexCoord2fColor3fVertex3(Single* tc, ref Single c, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -33368,7 +33401,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(Single* tc, ref Single c, ref Single v) + unsafe void TexCoord2fColor3fVertex3(Single* tc, ref Single c, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -33379,7 +33412,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v([In, Out] Single[] tc, Single* c, Single* v) + unsafe void TexCoord2fColor3fVertex3([In, Out] Single[] tc, Single* c, Single* v) { fixed (Single* tc_ptr = tc) { @@ -33389,7 +33422,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v([In, Out] Single[] tc, Single* c, [In, Out] Single[] v) + unsafe void TexCoord2fColor3fVertex3([In, Out] Single[] tc, Single* c, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -33400,7 +33433,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v([In, Out] Single[] tc, Single* c, ref Single v) + unsafe void TexCoord2fColor3fVertex3([In, Out] Single[] tc, Single* c, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -33411,7 +33444,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, Single* v) + unsafe void TexCoord2fColor3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -33421,7 +33454,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] v) + void TexCoord2fColor3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] v) { unsafe { @@ -33435,7 +33468,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, ref Single v) + void TexCoord2fColor3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, ref Single v) { unsafe { @@ -33450,7 +33483,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v([In, Out] Single[] tc, ref Single c, Single* v) + unsafe void TexCoord2fColor3fVertex3([In, Out] Single[] tc, ref Single c, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -33460,7 +33493,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor3fVertex3v([In, Out] Single[] tc, ref Single c, [In, Out] Single[] v) + void TexCoord2fColor3fVertex3([In, Out] Single[] tc, ref Single c, [In, Out] Single[] v) { unsafe { @@ -33474,7 +33507,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor3fVertex3v([In, Out] Single[] tc, ref Single c, ref Single v) + void TexCoord2fColor3fVertex3([In, Out] Single[] tc, ref Single c, ref Single v) { unsafe { @@ -33489,7 +33522,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(ref Single tc, Single* c, Single* v) + unsafe void TexCoord2fColor3fVertex3(ref Single tc, Single* c, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -33499,7 +33532,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(ref Single tc, Single* c, [In, Out] Single[] v) + unsafe void TexCoord2fColor3fVertex3(ref Single tc, Single* c, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -33510,7 +33543,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(ref Single tc, Single* c, ref Single v) + unsafe void TexCoord2fColor3fVertex3(ref Single tc, Single* c, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -33521,7 +33554,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(ref Single tc, [In, Out] Single[] c, Single* v) + unsafe void TexCoord2fColor3fVertex3(ref Single tc, [In, Out] Single[] c, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -33531,7 +33564,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor3fVertex3v(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] v) + void TexCoord2fColor3fVertex3(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] v) { unsafe { @@ -33545,7 +33578,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor3fVertex3v(ref Single tc, [In, Out] Single[] c, ref Single v) + void TexCoord2fColor3fVertex3(ref Single tc, [In, Out] Single[] c, ref Single v) { unsafe { @@ -33560,7 +33593,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor3fVertex3v(ref Single tc, ref Single c, Single* v) + unsafe void TexCoord2fColor3fVertex3(ref Single tc, ref Single c, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -33570,7 +33603,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor3fVertex3v(ref Single tc, ref Single c, [In, Out] Single[] v) + void TexCoord2fColor3fVertex3(ref Single tc, ref Single c, [In, Out] Single[] v) { unsafe { @@ -33584,7 +33617,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor3fVertex3v(ref Single tc, ref Single c, ref Single v) + void TexCoord2fColor3fVertex3(ref Single tc, ref Single c, ref Single v) { unsafe { @@ -33605,14 +33638,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(Single* tc, Single* n, Single* v) + unsafe void TexCoord2fNormal3fVertex3(Single* tc, Single* n, Single* v) { unsafe { Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(Single* tc, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fNormal3fVertex3(Single* tc, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -33622,7 +33655,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(Single* tc, Single* n, ref Single v) + unsafe void TexCoord2fNormal3fVertex3(Single* tc, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -33632,7 +33665,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(Single* tc, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fNormal3fVertex3(Single* tc, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -33642,7 +33675,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord2fNormal3fVertex3(Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -33653,7 +33686,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(Single* tc, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord2fNormal3fVertex3(Single* tc, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -33664,7 +33697,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(Single* tc, ref Single n, Single* v) + unsafe void TexCoord2fNormal3fVertex3(Single* tc, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -33674,7 +33707,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(Single* tc, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord2fNormal3fVertex3(Single* tc, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -33685,7 +33718,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(Single* tc, ref Single n, ref Single v) + unsafe void TexCoord2fNormal3fVertex3(Single* tc, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -33696,7 +33729,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v([In, Out] Single[] tc, Single* n, Single* v) + unsafe void TexCoord2fNormal3fVertex3([In, Out] Single[] tc, Single* n, Single* v) { fixed (Single* tc_ptr = tc) { @@ -33706,7 +33739,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v([In, Out] Single[] tc, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fNormal3fVertex3([In, Out] Single[] tc, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -33717,7 +33750,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v([In, Out] Single[] tc, Single* n, ref Single v) + unsafe void TexCoord2fNormal3fVertex3([In, Out] Single[] tc, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -33728,7 +33761,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -33738,7 +33771,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord2fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -33752,7 +33785,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) + void TexCoord2fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -33767,7 +33800,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v([In, Out] Single[] tc, ref Single n, Single* v) + unsafe void TexCoord2fNormal3fVertex3([In, Out] Single[] tc, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -33777,7 +33810,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fNormal3fVertex3v([In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) + void TexCoord2fNormal3fVertex3([In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -33791,7 +33824,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fNormal3fVertex3v([In, Out] Single[] tc, ref Single n, ref Single v) + void TexCoord2fNormal3fVertex3([In, Out] Single[] tc, ref Single n, ref Single v) { unsafe { @@ -33806,7 +33839,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(ref Single tc, Single* n, Single* v) + unsafe void TexCoord2fNormal3fVertex3(ref Single tc, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -33816,7 +33849,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(ref Single tc, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fNormal3fVertex3(ref Single tc, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -33827,7 +33860,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(ref Single tc, Single* n, ref Single v) + unsafe void TexCoord2fNormal3fVertex3(ref Single tc, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -33838,7 +33871,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(ref Single tc, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fNormal3fVertex3(ref Single tc, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -33848,7 +33881,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fNormal3fVertex3v(ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord2fNormal3fVertex3(ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -33862,7 +33895,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fNormal3fVertex3v(ref Single tc, [In, Out] Single[] n, ref Single v) + void TexCoord2fNormal3fVertex3(ref Single tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -33877,7 +33910,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fNormal3fVertex3v(ref Single tc, ref Single n, Single* v) + unsafe void TexCoord2fNormal3fVertex3(ref Single tc, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -33887,7 +33920,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fNormal3fVertex3v(ref Single tc, ref Single n, [In, Out] Single[] v) + void TexCoord2fNormal3fVertex3(ref Single tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -33901,7 +33934,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fNormal3fVertex3v(ref Single tc, ref Single n, ref Single v) + void TexCoord2fNormal3fVertex3(ref Single tc, ref Single n, ref Single v) { unsafe { @@ -33922,14 +33955,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, Single* c, Single* n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, Single* n, Single* v) { unsafe { Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -33939,7 +33972,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, Single* c, Single* n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -33949,7 +33982,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -33959,7 +33992,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -33970,7 +34003,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -33981,7 +34014,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, Single* c, ref Single n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -33991,7 +34024,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -34002,7 +34035,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, Single* c, ref Single n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -34013,7 +34046,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* c_ptr = c) { @@ -34023,7 +34056,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -34034,7 +34067,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -34045,7 +34078,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -34056,7 +34089,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -34068,7 +34101,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -34080,7 +34113,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -34091,7 +34124,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -34103,7 +34136,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -34115,7 +34148,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, ref Single c, Single* n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, ref Single c, Single* n, Single* v) { fixed (Single* c_ptr = &c) { @@ -34125,7 +34158,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -34136,7 +34169,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, ref Single c, Single* n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, ref Single c, Single* n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -34147,7 +34180,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -34158,7 +34191,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -34170,7 +34203,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -34182,7 +34215,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, ref Single c, ref Single n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, ref Single c, ref Single n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -34193,7 +34226,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -34205,7 +34238,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, ref Single c, ref Single n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -34217,7 +34250,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, Single* c, Single* n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, Single* c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) { @@ -34227,7 +34260,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -34238,7 +34271,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, Single* c, Single* n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, Single* c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -34249,7 +34282,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -34260,7 +34293,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -34272,7 +34305,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -34284,7 +34317,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, Single* c, ref Single n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, Single* c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -34295,7 +34328,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -34307,7 +34340,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, Single* c, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -34319,7 +34352,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -34330,7 +34363,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -34342,7 +34375,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -34354,7 +34387,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -34365,7 +34398,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -34380,7 +34413,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -34396,7 +34429,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -34407,7 +34440,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -34422,7 +34455,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) + void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -34438,7 +34471,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, ref Single c, Single* n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, ref Single c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -34449,7 +34482,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -34461,7 +34494,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, ref Single c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -34473,7 +34506,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -34484,7 +34517,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -34499,7 +34532,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) + void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -34515,7 +34548,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, ref Single c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -34526,7 +34559,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) + void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -34541,7 +34574,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v([In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) + void TexCoord2fColor4fNormal3fVertex3([In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -34557,7 +34590,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, Single* c, Single* n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, Single* c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -34567,7 +34600,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -34578,7 +34611,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, Single* c, Single* n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, Single* c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -34589,7 +34622,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -34600,7 +34633,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -34612,7 +34645,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -34624,7 +34657,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, Single* c, ref Single n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, Single* c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -34635,7 +34668,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -34647,7 +34680,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, Single* c, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -34659,7 +34692,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -34670,7 +34703,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -34682,7 +34715,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -34694,7 +34727,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -34705,7 +34738,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord2fColor4fNormal3fVertex3(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -34720,7 +34753,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void TexCoord2fColor4fNormal3fVertex3(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -34736,7 +34769,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -34747,7 +34780,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void TexCoord2fColor4fNormal3fVertex3(ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -34762,7 +34795,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) + void TexCoord2fColor4fNormal3fVertex3(ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -34778,7 +34811,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, ref Single c, Single* n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -34789,7 +34822,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -34801,7 +34834,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -34813,7 +34846,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -34824,7 +34857,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -34839,7 +34872,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) + void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -34855,7 +34888,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -34866,7 +34899,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) + void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -34881,7 +34914,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2fColor4fNormal3fVertex3v(ref Single tc, ref Single c, ref Single n, ref Single v) + void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -34903,14 +34936,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, Single* c, Single* n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, Single* n, Single* v) { unsafe { Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc, (Single*)c, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -34920,7 +34953,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, Single* c, Single* n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -34930,7 +34963,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -34940,7 +34973,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -34951,7 +34984,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -34962,7 +34995,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, Single* c, ref Single n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -34972,7 +35005,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -34983,7 +35016,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, Single* c, ref Single n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -34994,7 +35027,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* c_ptr = c) { @@ -35004,7 +35037,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -35015,7 +35048,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -35026,7 +35059,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -35037,7 +35070,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -35049,7 +35082,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -35061,7 +35094,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -35072,7 +35105,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -35084,7 +35117,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -35096,7 +35129,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, ref Single c, Single* n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, ref Single c, Single* n, Single* v) { fixed (Single* c_ptr = &c) { @@ -35106,7 +35139,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -35117,7 +35150,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, ref Single c, Single* n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, ref Single c, Single* n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -35128,7 +35161,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -35139,7 +35172,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -35151,7 +35184,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -35163,7 +35196,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, ref Single c, ref Single n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, ref Single c, ref Single n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -35174,7 +35207,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -35186,7 +35219,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, ref Single c, ref Single n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -35198,7 +35231,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, Single* c, Single* n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, Single* c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) { @@ -35208,7 +35241,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -35219,7 +35252,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, Single* c, Single* n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, Single* c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -35230,7 +35263,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -35241,7 +35274,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -35253,7 +35286,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -35265,7 +35298,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, Single* c, ref Single n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, Single* c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -35276,7 +35309,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -35288,7 +35321,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, Single* c, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -35300,7 +35333,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -35311,7 +35344,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -35323,7 +35356,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -35335,7 +35368,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -35346,7 +35379,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -35361,7 +35394,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -35377,7 +35410,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -35388,7 +35421,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -35403,7 +35436,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) + void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -35419,7 +35452,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, ref Single c, Single* n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, ref Single c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -35430,7 +35463,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -35442,7 +35475,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, ref Single c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -35454,7 +35487,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -35465,7 +35498,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -35480,7 +35513,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) + void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -35496,7 +35529,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, ref Single c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -35507,7 +35540,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) + void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -35522,7 +35555,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v([In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) + void TexCoord4fColor4fNormal3fVertex4([In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -35538,7 +35571,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, Single* c, Single* n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, Single* c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -35548,7 +35581,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -35559,7 +35592,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, Single* c, Single* n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, Single* c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -35570,7 +35603,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -35581,7 +35614,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -35593,7 +35626,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -35605,7 +35638,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, Single* c, ref Single n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, Single* c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -35616,7 +35649,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -35628,7 +35661,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, Single* c, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -35640,7 +35673,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -35651,7 +35684,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -35663,7 +35696,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -35675,7 +35708,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -35686,7 +35719,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord4fColor4fNormal3fVertex4(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -35701,7 +35734,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void TexCoord4fColor4fNormal3fVertex4(ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -35717,7 +35750,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -35728,7 +35761,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void TexCoord4fColor4fNormal3fVertex4(ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -35743,7 +35776,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) + void TexCoord4fColor4fNormal3fVertex4(ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -35759,7 +35792,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, ref Single c, Single* n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -35770,7 +35803,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -35782,7 +35815,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -35794,7 +35827,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -35805,7 +35838,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -35820,7 +35853,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) + void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -35836,7 +35869,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -35847,7 +35880,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) + void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -35862,7 +35895,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4fColor4fNormal3fVertex4v(ref Single tc, ref Single c, ref Single n, ref Single v) + void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -35891,14 +35924,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v(UInt32* rc, Single* v) + unsafe void ReplacementCodeuiVertex3(UInt32* rc, Single* v) { unsafe { Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v(Int32* rc, Single* v) + unsafe void ReplacementCodeuiVertex3(Int32* rc, Single* v) { { Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc, (Single*)v); @@ -35907,7 +35940,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v(UInt32* rc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiVertex3(UInt32* rc, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -35917,7 +35950,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v(Int32* rc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiVertex3(Int32* rc, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -35927,7 +35960,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v(UInt32* rc, ref Single v) + unsafe void ReplacementCodeuiVertex3(UInt32* rc, ref Single v) { fixed (Single* v_ptr = &v) { @@ -35937,7 +35970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v(Int32* rc, ref Single v) + unsafe void ReplacementCodeuiVertex3(Int32* rc, ref Single v) { fixed (Single* v_ptr = &v) { @@ -35947,7 +35980,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v([In, Out] UInt32[] rc, Single* v) + unsafe void ReplacementCodeuiVertex3([In, Out] UInt32[] rc, Single* v) { fixed (UInt32* rc_ptr = rc) { @@ -35957,7 +35990,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v([In, Out] Int32[] rc, Single* v) + unsafe void ReplacementCodeuiVertex3([In, Out] Int32[] rc, Single* v) { fixed (Int32* rc_ptr = rc) { @@ -35967,7 +36000,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] v) + void ReplacementCodeuiVertex3([In, Out] UInt32[] rc, [In, Out] Single[] v) { unsafe { @@ -35980,7 +36013,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiVertex3v([In, Out] Int32[] rc, [In, Out] Single[] v) + void ReplacementCodeuiVertex3([In, Out] Int32[] rc, [In, Out] Single[] v) { unsafe { @@ -35994,7 +36027,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiVertex3v([In, Out] UInt32[] rc, ref Single v) + void ReplacementCodeuiVertex3([In, Out] UInt32[] rc, ref Single v) { unsafe { @@ -36007,7 +36040,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiVertex3v([In, Out] Int32[] rc, ref Single v) + void ReplacementCodeuiVertex3([In, Out] Int32[] rc, ref Single v) { unsafe { @@ -36021,7 +36054,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v(ref UInt32 rc, Single* v) + unsafe void ReplacementCodeuiVertex3(ref UInt32 rc, Single* v) { fixed (UInt32* rc_ptr = &rc) { @@ -36031,7 +36064,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiVertex3v(ref Int32 rc, Single* v) + unsafe void ReplacementCodeuiVertex3(ref Int32 rc, Single* v) { fixed (Int32* rc_ptr = &rc) { @@ -36041,7 +36074,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiVertex3v(ref UInt32 rc, [In, Out] Single[] v) + void ReplacementCodeuiVertex3(ref UInt32 rc, [In, Out] Single[] v) { unsafe { @@ -36054,7 +36087,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiVertex3v(ref Int32 rc, [In, Out] Single[] v) + void ReplacementCodeuiVertex3(ref Int32 rc, [In, Out] Single[] v) { unsafe { @@ -36068,7 +36101,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiVertex3v(ref UInt32 rc, ref Single v) + void ReplacementCodeuiVertex3(ref UInt32 rc, ref Single v) { unsafe { @@ -36081,7 +36114,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiVertex3v(ref Int32 rc, ref Single v) + void ReplacementCodeuiVertex3(ref Int32 rc, ref Single v) { unsafe { @@ -36108,14 +36141,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte* c, Single* v) { unsafe { Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc, (Byte*)c, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte* c, Single* v) { { Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc, (Byte*)c, (Single*)v); @@ -36124,7 +36157,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte* c, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -36134,7 +36167,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte* c, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -36144,7 +36177,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte* c, ref Single v) { fixed (Single* v_ptr = &v) { @@ -36154,7 +36187,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte* c, ref Single v) { fixed (Single* v_ptr = &v) { @@ -36164,7 +36197,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, [In, Out] Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, [In, Out] Byte[] c, Single* v) { fixed (Byte* c_ptr = c) { @@ -36174,7 +36207,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, [In, Out] Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, [In, Out] Byte[] c, Single* v) { fixed (Byte* c_ptr = c) { @@ -36184,7 +36217,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, [In, Out] Byte[] c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, [In, Out] Byte[] c, [In, Out] Single[] v) { fixed (Byte* c_ptr = c) fixed (Single* v_ptr = v) @@ -36195,7 +36228,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, [In, Out] Byte[] c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, [In, Out] Byte[] c, [In, Out] Single[] v) { fixed (Byte* c_ptr = c) fixed (Single* v_ptr = v) @@ -36206,7 +36239,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, [In, Out] Byte[] c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, [In, Out] Byte[] c, ref Single v) { fixed (Byte* c_ptr = c) fixed (Single* v_ptr = &v) @@ -36217,7 +36250,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, [In, Out] Byte[] c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, [In, Out] Byte[] c, ref Single v) { fixed (Byte* c_ptr = c) fixed (Single* v_ptr = &v) @@ -36228,7 +36261,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, ref Byte c, Single* v) { fixed (Byte* c_ptr = &c) { @@ -36238,7 +36271,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, ref Byte c, Single* v) { fixed (Byte* c_ptr = &c) { @@ -36248,7 +36281,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, ref Byte c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, ref Byte c, [In, Out] Single[] v) { fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = v) @@ -36259,7 +36292,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, ref Byte c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, ref Byte c, [In, Out] Single[] v) { fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = v) @@ -36270,7 +36303,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, ref Byte c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, ref Byte c, ref Single v) { fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -36281,7 +36314,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, ref Byte c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, ref Byte c, ref Single v) { fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -36292,7 +36325,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] UInt32[] rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] UInt32[] rc, Byte* c, Single* v) { fixed (UInt32* rc_ptr = rc) { @@ -36302,7 +36335,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] Int32[] rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] Int32[] rc, Byte* c, Single* v) { fixed (Int32* rc_ptr = rc) { @@ -36312,7 +36345,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] UInt32[] rc, Byte* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] UInt32[] rc, Byte* c, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -36323,7 +36356,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] Int32[] rc, Byte* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] Int32[] rc, Byte* c, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -36334,7 +36367,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] UInt32[] rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] UInt32[] rc, Byte* c, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -36345,7 +36378,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] Int32[] rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] Int32[] rc, Byte* c, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -36356,7 +36389,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] UInt32[] rc, [In, Out] Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] UInt32[] rc, [In, Out] Byte[] c, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Byte* c_ptr = c) @@ -36367,7 +36400,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] Int32[] rc, [In, Out] Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] Int32[] rc, [In, Out] Byte[] c, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Byte* c_ptr = c) @@ -36378,7 +36411,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3v([In, Out] UInt32[] rc, [In, Out] Byte[] c, [In, Out] Single[] v) + void ReplacementCodeuiColor4ubVertex3([In, Out] UInt32[] rc, [In, Out] Byte[] c, [In, Out] Single[] v) { unsafe { @@ -36392,7 +36425,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3v([In, Out] Int32[] rc, [In, Out] Byte[] c, [In, Out] Single[] v) + void ReplacementCodeuiColor4ubVertex3([In, Out] Int32[] rc, [In, Out] Byte[] c, [In, Out] Single[] v) { unsafe { @@ -36407,7 +36440,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3v([In, Out] UInt32[] rc, [In, Out] Byte[] c, ref Single v) + void ReplacementCodeuiColor4ubVertex3([In, Out] UInt32[] rc, [In, Out] Byte[] c, ref Single v) { unsafe { @@ -36421,7 +36454,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3v([In, Out] Int32[] rc, [In, Out] Byte[] c, ref Single v) + void ReplacementCodeuiColor4ubVertex3([In, Out] Int32[] rc, [In, Out] Byte[] c, ref Single v) { unsafe { @@ -36436,7 +36469,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] UInt32[] rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] UInt32[] rc, ref Byte c, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Byte* c_ptr = &c) @@ -36447,7 +36480,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v([In, Out] Int32[] rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3([In, Out] Int32[] rc, ref Byte c, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Byte* c_ptr = &c) @@ -36458,7 +36491,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3v([In, Out] UInt32[] rc, ref Byte c, [In, Out] Single[] v) + void ReplacementCodeuiColor4ubVertex3([In, Out] UInt32[] rc, ref Byte c, [In, Out] Single[] v) { unsafe { @@ -36472,7 +36505,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3v([In, Out] Int32[] rc, ref Byte c, [In, Out] Single[] v) + void ReplacementCodeuiColor4ubVertex3([In, Out] Int32[] rc, ref Byte c, [In, Out] Single[] v) { unsafe { @@ -36487,7 +36520,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3v([In, Out] UInt32[] rc, ref Byte c, ref Single v) + void ReplacementCodeuiColor4ubVertex3([In, Out] UInt32[] rc, ref Byte c, ref Single v) { unsafe { @@ -36501,7 +36534,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3v([In, Out] Int32[] rc, ref Byte c, ref Single v) + void ReplacementCodeuiColor4ubVertex3([In, Out] Int32[] rc, ref Byte c, ref Single v) { unsafe { @@ -36516,7 +36549,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte* c, Single* v) { fixed (UInt32* rc_ptr = &rc) { @@ -36526,7 +36559,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, Byte* c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte* c, Single* v) { fixed (Int32* rc_ptr = &rc) { @@ -36536,7 +36569,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, Byte* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte* c, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -36547,7 +36580,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, Byte* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte* c, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -36558,7 +36591,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, Byte* c, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -36569,7 +36602,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, Byte* c, ref Single v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, Byte* c, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -36580,7 +36613,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, [In, Out] Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, [In, Out] Byte[] c, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Byte* c_ptr = c) @@ -36591,7 +36624,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, [In, Out] Byte[] c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, [In, Out] Byte[] c, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Byte* c_ptr = c) @@ -36602,7 +36635,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, [In, Out] Byte[] c, [In, Out] Single[] v) + void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, [In, Out] Byte[] c, [In, Out] Single[] v) { unsafe { @@ -36616,7 +36649,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, [In, Out] Byte[] c, [In, Out] Single[] v) + void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, [In, Out] Byte[] c, [In, Out] Single[] v) { unsafe { @@ -36631,7 +36664,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, [In, Out] Byte[] c, ref Single v) + void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, [In, Out] Byte[] c, ref Single v) { unsafe { @@ -36645,7 +36678,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, [In, Out] Byte[] c, ref Single v) + void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, [In, Out] Byte[] c, ref Single v) { unsafe { @@ -36660,7 +36693,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, ref Byte c, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Byte* c_ptr = &c) @@ -36671,7 +36704,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, ref Byte c, Single* v) + unsafe void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, ref Byte c, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Byte* c_ptr = &c) @@ -36682,7 +36715,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, ref Byte c, [In, Out] Single[] v) + void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, ref Byte c, [In, Out] Single[] v) { unsafe { @@ -36696,7 +36729,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, ref Byte c, [In, Out] Single[] v) + void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, ref Byte c, [In, Out] Single[] v) { unsafe { @@ -36711,7 +36744,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, ref Byte c, ref Single v) + void ReplacementCodeuiColor4ubVertex3(ref UInt32 rc, ref Byte c, ref Single v) { unsafe { @@ -36725,7 +36758,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, ref Byte c, ref Single v) + void ReplacementCodeuiColor4ubVertex3(ref Int32 rc, ref Byte c, ref Single v) { unsafe { @@ -36753,14 +36786,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single* c, Single* v) { unsafe { Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single* c, Single* v) { { Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)v); @@ -36769,7 +36802,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single* c, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -36779,7 +36812,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single* c, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -36789,7 +36822,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single* c, ref Single v) { fixed (Single* v_ptr = &v) { @@ -36799,7 +36832,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single* c, ref Single v) { fixed (Single* v_ptr = &v) { @@ -36809,7 +36842,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, [In, Out] Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, [In, Out] Single[] c, Single* v) { fixed (Single* c_ptr = c) { @@ -36819,7 +36852,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, [In, Out] Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, [In, Out] Single[] c, Single* v) { fixed (Single* c_ptr = c) { @@ -36829,7 +36862,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, [In, Out] Single[] c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, [In, Out] Single[] c, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -36840,7 +36873,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, [In, Out] Single[] c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, [In, Out] Single[] c, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -36851,7 +36884,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, [In, Out] Single[] c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, [In, Out] Single[] c, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -36862,7 +36895,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, [In, Out] Single[] c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, [In, Out] Single[] c, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -36873,7 +36906,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, ref Single c, Single* v) { fixed (Single* c_ptr = &c) { @@ -36883,7 +36916,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, ref Single c, Single* v) { fixed (Single* c_ptr = &c) { @@ -36893,7 +36926,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, ref Single c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, ref Single c, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -36904,7 +36937,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, ref Single c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, ref Single c, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -36915,7 +36948,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, ref Single c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, ref Single c, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -36926,7 +36959,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, ref Single c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, ref Single c, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -36937,7 +36970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] UInt32[] rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] UInt32[] rc, Single* c, Single* v) { fixed (UInt32* rc_ptr = rc) { @@ -36947,7 +36980,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] Int32[] rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] Int32[] rc, Single* c, Single* v) { fixed (Int32* rc_ptr = rc) { @@ -36957,7 +36990,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] UInt32[] rc, Single* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] UInt32[] rc, Single* c, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -36968,7 +37001,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] Int32[] rc, Single* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] Int32[] rc, Single* c, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -36979,7 +37012,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] UInt32[] rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] UInt32[] rc, Single* c, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -36990,7 +37023,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] Int32[] rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] Int32[] rc, Single* c, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -37001,7 +37034,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -37012,7 +37045,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -37023,7 +37056,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, [In, Out] Single[] v) + void ReplacementCodeuiColor3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, [In, Out] Single[] v) { unsafe { @@ -37037,7 +37070,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, [In, Out] Single[] v) + void ReplacementCodeuiColor3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, [In, Out] Single[] v) { unsafe { @@ -37052,7 +37085,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, ref Single v) + void ReplacementCodeuiColor3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, ref Single v) { unsafe { @@ -37066,7 +37099,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, ref Single v) + void ReplacementCodeuiColor3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, ref Single v) { unsafe { @@ -37081,7 +37114,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] UInt32[] rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] UInt32[] rc, ref Single c, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -37092,7 +37125,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v([In, Out] Int32[] rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3([In, Out] Int32[] rc, ref Single c, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -37103,7 +37136,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3v([In, Out] UInt32[] rc, ref Single c, [In, Out] Single[] v) + void ReplacementCodeuiColor3fVertex3([In, Out] UInt32[] rc, ref Single c, [In, Out] Single[] v) { unsafe { @@ -37117,7 +37150,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3v([In, Out] Int32[] rc, ref Single c, [In, Out] Single[] v) + void ReplacementCodeuiColor3fVertex3([In, Out] Int32[] rc, ref Single c, [In, Out] Single[] v) { unsafe { @@ -37132,7 +37165,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3v([In, Out] UInt32[] rc, ref Single c, ref Single v) + void ReplacementCodeuiColor3fVertex3([In, Out] UInt32[] rc, ref Single c, ref Single v) { unsafe { @@ -37146,7 +37179,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3v([In, Out] Int32[] rc, ref Single c, ref Single v) + void ReplacementCodeuiColor3fVertex3([In, Out] Int32[] rc, ref Single c, ref Single v) { unsafe { @@ -37161,7 +37194,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single* c, Single* v) { fixed (UInt32* rc_ptr = &rc) { @@ -37171,7 +37204,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, Single* c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single* c, Single* v) { fixed (Int32* rc_ptr = &rc) { @@ -37181,7 +37214,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, Single* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single* c, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -37192,7 +37225,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, Single* c, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single* c, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -37203,7 +37236,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, Single* c, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -37214,7 +37247,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, Single* c, ref Single v) + unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, Single* c, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -37225,7 +37258,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, [In, Out] Single[] c, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -37236,7 +37269,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, [In, Out] Single[] c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, [In, Out] Single[] c, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -37247,7 +37280,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, [In, Out] Single[] v) + void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, [In, Out] Single[] c, [In, Out] Single[] v) { unsafe { @@ -37261,7 +37294,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, [In, Out] Single[] c, [In, Out] Single[] v) + void ReplacementCodeuiColor3fVertex3(ref Int32 rc, [In, Out] Single[] c, [In, Out] Single[] v) { unsafe { @@ -37276,7 +37309,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, ref Single v) + void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, [In, Out] Single[] c, ref Single v) { unsafe { @@ -37290,7 +37323,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, [In, Out] Single[] c, ref Single v) + void ReplacementCodeuiColor3fVertex3(ref Int32 rc, [In, Out] Single[] c, ref Single v) { unsafe { @@ -37305,7 +37338,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, ref Single c, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -37316,7 +37349,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, ref Single c, Single* v) + unsafe void ReplacementCodeuiColor3fVertex3(ref Int32 rc, ref Single c, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -37327,7 +37360,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, ref Single c, [In, Out] Single[] v) + void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, ref Single c, [In, Out] Single[] v) { unsafe { @@ -37341,7 +37374,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, ref Single c, [In, Out] Single[] v) + void ReplacementCodeuiColor3fVertex3(ref Int32 rc, ref Single c, [In, Out] Single[] v) { unsafe { @@ -37356,7 +37389,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, ref Single c, ref Single v) + void ReplacementCodeuiColor3fVertex3(ref UInt32 rc, ref Single c, ref Single v) { unsafe { @@ -37370,7 +37403,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, ref Single c, ref Single v) + void ReplacementCodeuiColor3fVertex3(ref Int32 rc, ref Single c, ref Single v) { unsafe { @@ -37398,14 +37431,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single* n, Single* v) { unsafe { Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single* n, Single* v) { { Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc, (Single*)n, (Single*)v); @@ -37414,7 +37447,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -37424,7 +37457,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -37434,7 +37467,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -37444,7 +37477,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -37454,7 +37487,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -37464,7 +37497,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -37474,7 +37507,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -37485,7 +37518,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -37496,7 +37529,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -37507,7 +37540,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -37518,7 +37551,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -37528,7 +37561,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -37538,7 +37571,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -37549,7 +37582,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -37560,7 +37593,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -37571,7 +37604,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -37582,7 +37615,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] UInt32[] rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] UInt32[] rc, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) { @@ -37592,7 +37625,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] Int32[] rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] Int32[] rc, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) { @@ -37602,7 +37635,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] UInt32[] rc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] UInt32[] rc, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -37613,7 +37646,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] Int32[] rc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] Int32[] rc, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -37624,7 +37657,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] UInt32[] rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] UInt32[] rc, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -37635,7 +37668,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] Int32[] rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] Int32[] rc, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -37646,7 +37679,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -37657,7 +37690,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -37668,7 +37701,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -37682,7 +37715,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -37697,7 +37730,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -37711,7 +37744,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -37726,7 +37759,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] UInt32[] rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] UInt32[] rc, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -37737,7 +37770,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v([In, Out] Int32[] rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3([In, Out] Int32[] rc, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -37748,7 +37781,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3v([In, Out] UInt32[] rc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiNormal3fVertex3([In, Out] UInt32[] rc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -37762,7 +37795,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3v([In, Out] Int32[] rc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiNormal3fVertex3([In, Out] Int32[] rc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -37777,7 +37810,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3v([In, Out] UInt32[] rc, ref Single n, ref Single v) + void ReplacementCodeuiNormal3fVertex3([In, Out] UInt32[] rc, ref Single n, ref Single v) { unsafe { @@ -37791,7 +37824,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3v([In, Out] Int32[] rc, ref Single n, ref Single v) + void ReplacementCodeuiNormal3fVertex3([In, Out] Int32[] rc, ref Single n, ref Single v) { unsafe { @@ -37806,7 +37839,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) { @@ -37816,7 +37849,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, Single* n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) { @@ -37826,7 +37859,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -37837,7 +37870,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -37848,7 +37881,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -37859,7 +37892,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, Single* n, ref Single v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -37870,7 +37903,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -37881,7 +37914,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -37892,7 +37925,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -37906,7 +37939,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -37921,7 +37954,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -37935,7 +37968,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -37950,7 +37983,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -37961,7 +37994,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, ref Single n, Single* v) + unsafe void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -37972,7 +38005,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -37986,7 +38019,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -38001,7 +38034,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, ref Single n, ref Single v) + void ReplacementCodeuiNormal3fVertex3(ref UInt32 rc, ref Single n, ref Single v) { unsafe { @@ -38015,7 +38048,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, ref Single n, ref Single v) + void ReplacementCodeuiNormal3fVertex3(ref Int32 rc, ref Single n, ref Single v) { unsafe { @@ -38043,14 +38076,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single* n, Single* v) { unsafe { Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single* n, Single* v) { { Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)n, (Single*)v); @@ -38059,7 +38092,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -38069,7 +38102,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -38079,7 +38112,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -38089,7 +38122,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -38099,7 +38132,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -38109,7 +38142,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -38119,7 +38152,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -38130,7 +38163,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -38141,7 +38174,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -38152,7 +38185,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -38163,7 +38196,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -38173,7 +38206,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -38183,7 +38216,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -38194,7 +38227,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -38205,7 +38238,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single* c, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -38216,7 +38249,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single* c, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -38227,7 +38260,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* c_ptr = c) { @@ -38237,7 +38270,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* c_ptr = c) { @@ -38247,7 +38280,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -38258,7 +38291,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -38269,7 +38302,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -38280,7 +38313,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -38291,7 +38324,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -38302,7 +38335,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -38313,7 +38346,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -38325,7 +38358,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -38337,7 +38370,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -38349,7 +38382,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -38361,7 +38394,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -38372,7 +38405,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -38383,7 +38416,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -38395,7 +38428,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -38407,7 +38440,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -38419,7 +38452,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -38431,7 +38464,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, Single* n, Single* v) { fixed (Single* c_ptr = &c) { @@ -38441,7 +38474,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, Single* n, Single* v) { fixed (Single* c_ptr = &c) { @@ -38451,7 +38484,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -38462,7 +38495,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -38473,7 +38506,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, Single* n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -38484,7 +38517,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, Single* n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -38495,7 +38528,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -38506,7 +38539,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -38517,7 +38550,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -38529,7 +38562,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -38541,7 +38574,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -38553,7 +38586,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -38565,7 +38598,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, ref Single n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -38576,7 +38609,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, ref Single n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -38587,7 +38620,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -38599,7 +38632,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -38611,7 +38644,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, ref Single c, ref Single n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -38623,7 +38656,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, ref Single c, ref Single n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -38635,7 +38668,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) { @@ -38645,7 +38678,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) { @@ -38655,7 +38688,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -38666,7 +38699,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -38677,7 +38710,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -38688,7 +38721,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -38699,7 +38732,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -38710,7 +38743,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -38721,7 +38754,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -38733,7 +38766,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -38745,7 +38778,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -38757,7 +38790,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -38769,7 +38802,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -38780,7 +38813,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -38791,7 +38824,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -38803,7 +38836,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -38815,7 +38848,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -38827,7 +38860,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -38839,7 +38872,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -38850,7 +38883,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -38861,7 +38894,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -38873,7 +38906,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -38885,7 +38918,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -38897,7 +38930,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -38909,7 +38942,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -38921,7 +38954,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -38933,7 +38966,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -38948,7 +38981,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -38964,7 +38997,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -38979,7 +39012,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -38995,7 +39028,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -39007,7 +39040,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -39019,7 +39052,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -39034,7 +39067,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -39050,7 +39083,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -39065,7 +39098,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -39081,7 +39114,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39092,7 +39125,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39103,7 +39136,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39115,7 +39148,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39127,7 +39160,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39139,7 +39172,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39151,7 +39184,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39163,7 +39196,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39175,7 +39208,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -39190,7 +39223,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -39206,7 +39239,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -39221,7 +39254,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -39237,7 +39270,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39249,7 +39282,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -39261,7 +39294,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -39276,7 +39309,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -39292,7 +39325,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -39307,7 +39340,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -39323,7 +39356,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) { @@ -39333,7 +39366,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) { @@ -39343,7 +39376,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -39354,7 +39387,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -39365,7 +39398,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -39376,7 +39409,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -39387,7 +39420,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -39398,7 +39431,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -39409,7 +39442,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -39421,7 +39454,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -39433,7 +39466,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -39445,7 +39478,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -39457,7 +39490,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -39468,7 +39501,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -39479,7 +39512,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -39491,7 +39524,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -39503,7 +39536,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, Single* c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -39515,7 +39548,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, Single* c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -39527,7 +39560,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39538,7 +39571,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39549,7 +39582,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39561,7 +39594,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39573,7 +39606,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39585,7 +39618,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39597,7 +39630,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39609,7 +39642,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39621,7 +39654,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -39636,7 +39669,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -39652,7 +39685,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -39667,7 +39700,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -39683,7 +39716,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39695,7 +39728,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -39707,7 +39740,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -39722,7 +39755,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -39738,7 +39771,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -39753,7 +39786,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -39769,7 +39802,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39780,7 +39813,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39791,7 +39824,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39803,7 +39836,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39815,7 +39848,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39827,7 +39860,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39839,7 +39872,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39851,7 +39884,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39863,7 +39896,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -39878,7 +39911,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -39894,7 +39927,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -39909,7 +39942,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -39925,7 +39958,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39937,7 +39970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -39949,7 +39982,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -39964,7 +39997,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -39980,7 +40013,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref UInt32 rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -39995,7 +40028,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiColor4fNormal3fVertex3(ref Int32 rc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -40024,14 +40057,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single* tc, Single* v) { unsafe { Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single* tc, Single* v) { { Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)v); @@ -40040,7 +40073,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -40050,7 +40083,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single* tc, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -40060,7 +40093,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single* tc, ref Single v) { fixed (Single* v_ptr = &v) { @@ -40070,7 +40103,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single* tc, ref Single v) { fixed (Single* v_ptr = &v) { @@ -40080,7 +40113,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* v) { fixed (Single* tc_ptr = tc) { @@ -40090,7 +40123,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, [In, Out] Single[] tc, Single* v) { fixed (Single* tc_ptr = tc) { @@ -40100,7 +40133,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -40111,7 +40144,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -40122,7 +40155,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -40133,7 +40166,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -40144,7 +40177,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, ref Single tc, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -40154,7 +40187,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, ref Single tc, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -40164,7 +40197,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -40175,7 +40208,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -40186,7 +40219,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, ref Single tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, ref Single tc, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -40197,7 +40230,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, ref Single tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, ref Single tc, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -40208,7 +40241,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] UInt32[] rc, Single* tc, Single* v) { fixed (UInt32* rc_ptr = rc) { @@ -40218,7 +40251,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] Int32[] rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] Int32[] rc, Single* tc, Single* v) { fixed (Int32* rc_ptr = rc) { @@ -40228,7 +40261,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -40239,7 +40272,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -40250,7 +40283,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -40261,7 +40294,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] Int32[] rc, Single* tc, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -40272,7 +40305,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -40283,7 +40316,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -40294,7 +40327,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] v) { unsafe { @@ -40308,7 +40341,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] v) { unsafe { @@ -40323,7 +40356,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single v) { unsafe { @@ -40337,7 +40370,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single v) { unsafe { @@ -40352,7 +40385,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -40363,7 +40396,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3([In, Out] Int32[] rc, ref Single tc, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -40374,7 +40407,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] v) { unsafe { @@ -40388,7 +40421,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] v) { unsafe { @@ -40403,7 +40436,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single v) { unsafe { @@ -40417,7 +40450,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single v) { unsafe { @@ -40432,7 +40465,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single* tc, Single* v) { fixed (UInt32* rc_ptr = &rc) { @@ -40442,7 +40475,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, Single* tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single* tc, Single* v) { fixed (Int32* rc_ptr = &rc) { @@ -40452,7 +40485,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -40463,7 +40496,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -40474,7 +40507,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, Single* tc, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -40485,7 +40518,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, Single* tc, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, Single* tc, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -40496,7 +40529,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -40507,7 +40540,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -40518,7 +40551,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] v) { unsafe { @@ -40532,7 +40565,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] v) { unsafe { @@ -40547,7 +40580,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single v) { unsafe { @@ -40561,7 +40594,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single v) { unsafe { @@ -40576,7 +40609,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, ref Single tc, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -40587,7 +40620,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, ref Single tc, Single* v) + unsafe void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, ref Single tc, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -40598,7 +40631,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] v) { unsafe { @@ -40612,7 +40645,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] v) { unsafe { @@ -40627,7 +40660,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, ref Single tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3(ref UInt32 rc, ref Single tc, ref Single v) { unsafe { @@ -40641,7 +40674,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, ref Single tc, ref Single v) + void ReplacementCodeuiTexCoord2fVertex3(ref Int32 rc, ref Single tc, ref Single v) { unsafe { @@ -40669,14 +40702,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single* n, Single* v) { unsafe { Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single* n, Single* v) { { Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)n, (Single*)v); @@ -40685,7 +40718,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -40695,7 +40728,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -40705,7 +40738,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -40715,7 +40748,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -40725,7 +40758,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -40735,7 +40768,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -40745,7 +40778,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -40756,7 +40789,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -40767,7 +40800,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -40778,7 +40811,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -40789,7 +40822,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -40799,7 +40832,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -40809,7 +40842,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -40820,7 +40853,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -40831,7 +40864,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single* tc, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -40842,7 +40875,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single* tc, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -40853,7 +40886,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* n, Single* v) { fixed (Single* tc_ptr = tc) { @@ -40863,7 +40896,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* n, Single* v) { fixed (Single* tc_ptr = tc) { @@ -40873,7 +40906,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -40884,7 +40917,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -40895,7 +40928,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -40906,7 +40939,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -40917,7 +40950,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -40928,7 +40961,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -40939,7 +40972,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -40951,7 +40984,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -40963,7 +40996,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -40975,7 +41008,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -40987,7 +41020,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -40998,7 +41031,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -41009,7 +41042,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -41021,7 +41054,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -41033,7 +41066,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -41045,7 +41078,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -41057,7 +41090,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -41067,7 +41100,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -41077,7 +41110,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -41088,7 +41121,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -41099,7 +41132,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -41110,7 +41143,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -41121,7 +41154,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -41132,7 +41165,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -41143,7 +41176,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -41155,7 +41188,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -41167,7 +41200,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -41179,7 +41212,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -41191,7 +41224,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -41202,7 +41235,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -41213,7 +41246,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -41225,7 +41258,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -41237,7 +41270,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -41249,7 +41282,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, ref Single tc, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -41261,7 +41294,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) { @@ -41271,7 +41304,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) { @@ -41281,7 +41314,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -41292,7 +41325,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -41303,7 +41336,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -41314,7 +41347,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -41325,7 +41358,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -41336,7 +41369,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -41347,7 +41380,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -41359,7 +41392,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -41371,7 +41404,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -41383,7 +41416,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -41395,7 +41428,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -41406,7 +41439,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -41417,7 +41450,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -41429,7 +41462,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -41441,7 +41474,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -41453,7 +41486,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -41465,7 +41498,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41476,7 +41509,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41487,7 +41520,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41499,7 +41532,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41511,7 +41544,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41523,7 +41556,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41535,7 +41568,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41547,7 +41580,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41559,7 +41592,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -41574,7 +41607,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -41590,7 +41623,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -41605,7 +41638,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -41621,7 +41654,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41633,7 +41666,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -41645,7 +41678,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -41660,7 +41693,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -41676,7 +41709,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single n, ref Single v) { unsafe { @@ -41691,7 +41724,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single n, ref Single v) { unsafe { @@ -41707,7 +41740,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41718,7 +41751,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41729,7 +41762,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41741,7 +41774,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41753,7 +41786,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41765,7 +41798,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41777,7 +41810,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41789,7 +41822,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41801,7 +41834,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -41816,7 +41849,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -41832,7 +41865,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -41847,7 +41880,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -41863,7 +41896,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41875,7 +41908,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -41887,7 +41920,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -41902,7 +41935,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -41918,7 +41951,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -41933,7 +41966,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -41949,7 +41982,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) { @@ -41959,7 +41992,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) { @@ -41969,7 +42002,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -41980,7 +42013,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -41991,7 +42024,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -42002,7 +42035,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -42013,7 +42046,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -42024,7 +42057,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -42035,7 +42068,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -42047,7 +42080,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -42059,7 +42092,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -42071,7 +42104,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -42083,7 +42116,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -42094,7 +42127,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -42105,7 +42138,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -42117,7 +42150,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -42129,7 +42162,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -42141,7 +42174,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -42153,7 +42186,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42164,7 +42197,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42175,7 +42208,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42187,7 +42220,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42199,7 +42232,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42211,7 +42244,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42223,7 +42256,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42235,7 +42268,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42247,7 +42280,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -42262,7 +42295,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -42278,7 +42311,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -42293,7 +42326,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -42309,7 +42342,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42321,7 +42354,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -42333,7 +42366,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -42348,7 +42381,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -42364,7 +42397,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single n, ref Single v) { unsafe { @@ -42379,7 +42412,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single n, ref Single v) { unsafe { @@ -42395,7 +42428,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42406,7 +42439,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42417,7 +42450,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42429,7 +42462,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42441,7 +42474,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42453,7 +42486,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42465,7 +42498,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42477,7 +42510,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42489,7 +42522,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -42504,7 +42537,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -42520,7 +42553,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -42535,7 +42568,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] n, ref Single v) { unsafe { @@ -42551,7 +42584,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42563,7 +42596,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -42575,7 +42608,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -42590,7 +42623,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single n, [In, Out] Single[] v) { unsafe { @@ -42606,7 +42639,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -42621,7 +42654,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single n, ref Single v) { unsafe { @@ -42650,14 +42683,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single* n, Single* v) { unsafe { Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single* n, Single* v) { { Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v); @@ -42666,7 +42699,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -42676,7 +42709,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -42686,7 +42719,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -42696,7 +42729,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, Single* n, ref Single v) { fixed (Single* v_ptr = &v) { @@ -42706,7 +42739,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -42716,7 +42749,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* n_ptr = n) { @@ -42726,7 +42759,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -42737,7 +42770,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) @@ -42748,7 +42781,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -42759,7 +42792,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* n_ptr = n) fixed (Single* v_ptr = &v) @@ -42770,7 +42803,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -42780,7 +42813,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, ref Single n, Single* v) { fixed (Single* n_ptr = &n) { @@ -42790,7 +42823,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -42801,7 +42834,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = v) @@ -42812,7 +42845,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, Single* c, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -42823,7 +42856,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, Single* c, ref Single n, ref Single v) { fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) @@ -42834,7 +42867,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* c_ptr = c) { @@ -42844,7 +42877,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* c_ptr = c) { @@ -42854,7 +42887,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -42865,7 +42898,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) @@ -42876,7 +42909,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -42887,7 +42920,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* v_ptr = &v) @@ -42898,7 +42931,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -42909,7 +42942,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -42920,7 +42953,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -42932,7 +42965,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -42944,7 +42977,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -42956,7 +42989,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = n) @@ -42968,7 +43001,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -42979,7 +43012,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -42990,7 +43023,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -43002,7 +43035,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -43014,7 +43047,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -43026,7 +43059,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* c_ptr = c) fixed (Single* n_ptr = &n) @@ -43038,7 +43071,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, Single* n, Single* v) { fixed (Single* c_ptr = &c) { @@ -43048,7 +43081,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, Single* n, Single* v) { fixed (Single* c_ptr = &c) { @@ -43058,7 +43091,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -43069,7 +43102,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = v) @@ -43080,7 +43113,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, Single* n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -43091,7 +43124,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, Single* n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) @@ -43102,7 +43135,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -43113,7 +43146,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -43124,7 +43157,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -43136,7 +43169,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -43148,7 +43181,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -43160,7 +43193,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = n) @@ -43172,7 +43205,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, ref Single n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -43183,7 +43216,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, ref Single n, Single* v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -43194,7 +43227,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -43206,7 +43239,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -43218,7 +43251,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single* tc, ref Single c, ref Single n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -43230,7 +43263,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single* tc, ref Single c, ref Single n, ref Single v) { fixed (Single* c_ptr = &c) fixed (Single* n_ptr = &n) @@ -43242,7 +43275,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) { @@ -43252,7 +43285,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) { @@ -43262,7 +43295,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -43273,7 +43306,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) @@ -43284,7 +43317,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -43295,7 +43328,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = &v) @@ -43306,7 +43339,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -43317,7 +43350,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -43328,7 +43361,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -43340,7 +43373,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -43352,7 +43385,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -43364,7 +43397,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = n) @@ -43376,7 +43409,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -43387,7 +43420,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -43398,7 +43431,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -43410,7 +43443,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -43422,7 +43455,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -43434,7 +43467,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* n_ptr = &n) @@ -43446,7 +43479,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43457,7 +43490,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43468,7 +43501,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43480,7 +43513,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43492,7 +43525,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43504,7 +43537,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43516,7 +43549,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43528,7 +43561,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43540,7 +43573,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43553,7 +43586,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43566,7 +43599,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43579,7 +43612,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43592,7 +43625,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43604,7 +43637,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43616,7 +43649,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43629,7 +43662,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43642,7 +43675,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43655,7 +43688,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = c) @@ -43668,7 +43701,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43679,7 +43712,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43690,7 +43723,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43702,7 +43735,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43714,7 +43747,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43726,7 +43759,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43738,7 +43771,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43750,7 +43783,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43762,7 +43795,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43775,7 +43808,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43788,7 +43821,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43801,7 +43834,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43814,7 +43847,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43826,7 +43859,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43838,7 +43871,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43851,7 +43884,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43864,7 +43897,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43877,7 +43910,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) { fixed (Single* tc_ptr = tc) fixed (Single* c_ptr = &c) @@ -43890,7 +43923,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -43900,7 +43933,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) { @@ -43910,7 +43943,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -43921,7 +43954,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = v) @@ -43932,7 +43965,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -43943,7 +43976,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) @@ -43954,7 +43987,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -43965,7 +43998,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -43976,7 +44009,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -43988,7 +44021,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -44000,7 +44033,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -44012,7 +44045,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = n) @@ -44024,7 +44057,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -44035,7 +44068,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -44046,7 +44079,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -44058,7 +44091,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -44070,7 +44103,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, Single* c, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -44082,7 +44115,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, Single* c, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* n_ptr = &n) @@ -44094,7 +44127,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44105,7 +44138,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44116,7 +44149,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44128,7 +44161,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44140,7 +44173,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44152,7 +44185,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44164,7 +44197,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44176,7 +44209,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44188,7 +44221,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44201,7 +44234,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44214,7 +44247,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44227,7 +44260,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44240,7 +44273,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44252,7 +44285,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44264,7 +44297,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44277,7 +44310,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44290,7 +44323,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44303,7 +44336,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = c) @@ -44316,7 +44349,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44327,7 +44360,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, Single* n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44338,7 +44371,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44350,7 +44383,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44362,7 +44395,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44374,7 +44407,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, Single* n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44386,7 +44419,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44398,7 +44431,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44410,7 +44443,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44423,7 +44456,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44436,7 +44469,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44449,7 +44482,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44462,7 +44495,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44474,7 +44507,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, ref Single n, Single* v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44486,7 +44519,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44499,7 +44532,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44512,7 +44545,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, ref Single tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, ref Single tc, ref Single c, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44525,7 +44558,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, ref Single tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, ref Single tc, ref Single c, ref Single n, ref Single v) { fixed (Single* tc_ptr = &tc) fixed (Single* c_ptr = &c) @@ -44538,7 +44571,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) { @@ -44548,7 +44581,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) { @@ -44558,7 +44591,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -44569,7 +44602,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = v) @@ -44580,7 +44613,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -44591,7 +44624,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* v_ptr = &v) @@ -44602,7 +44635,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -44613,7 +44646,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -44624,7 +44657,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -44636,7 +44669,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -44648,7 +44681,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -44660,7 +44693,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = n) @@ -44672,7 +44705,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -44683,7 +44716,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -44694,7 +44727,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -44706,7 +44739,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -44718,7 +44751,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, Single* c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -44730,7 +44763,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, Single* c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* n_ptr = &n) @@ -44742,7 +44775,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44753,7 +44786,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44764,7 +44797,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44776,7 +44809,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44788,7 +44821,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44800,7 +44833,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44812,7 +44845,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44824,7 +44857,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44836,7 +44869,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44849,7 +44882,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44862,7 +44895,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44875,7 +44908,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44888,7 +44921,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44900,7 +44933,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44912,7 +44945,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44925,7 +44958,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44938,7 +44971,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44951,7 +44984,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = c) @@ -44964,7 +44997,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -44975,7 +45008,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -44986,7 +45019,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -44998,7 +45031,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45010,7 +45043,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45022,7 +45055,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45034,7 +45067,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45046,7 +45079,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45058,7 +45091,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45071,7 +45104,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45084,7 +45117,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45097,7 +45130,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45110,7 +45143,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45122,7 +45155,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45134,7 +45167,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45147,7 +45180,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45160,7 +45193,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, Single* tc, ref Single c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45173,7 +45206,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, Single* tc, ref Single c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* c_ptr = &c) @@ -45186,7 +45219,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45197,7 +45230,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45208,7 +45241,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45220,7 +45253,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45232,7 +45265,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45244,7 +45277,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45256,7 +45289,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45268,7 +45301,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45280,7 +45313,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45293,7 +45326,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45306,7 +45339,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45319,7 +45352,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45332,7 +45365,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45344,7 +45377,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45356,7 +45389,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45369,7 +45402,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45382,7 +45415,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45395,7 +45428,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45408,7 +45441,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45420,7 +45453,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45432,7 +45465,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45445,7 +45478,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45458,7 +45491,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45471,7 +45504,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45484,7 +45517,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45497,7 +45530,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45510,7 +45543,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -45526,7 +45559,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -45543,7 +45576,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -45559,7 +45592,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -45576,7 +45609,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45589,7 +45622,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45602,7 +45635,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -45618,7 +45651,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -45635,7 +45668,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -45651,7 +45684,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -45668,7 +45701,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45680,7 +45713,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45692,7 +45725,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45705,7 +45738,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45718,7 +45751,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45731,7 +45764,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45744,7 +45777,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45757,7 +45790,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45770,7 +45803,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -45786,7 +45819,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -45803,7 +45836,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -45819,7 +45852,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -45836,7 +45869,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45849,7 +45882,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = tc) @@ -45862,7 +45895,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -45878,7 +45911,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -45895,7 +45928,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -45911,7 +45944,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -45928,7 +45961,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -45939,7 +45972,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -45950,7 +45983,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -45962,7 +45995,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -45974,7 +46007,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -45986,7 +46019,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -45998,7 +46031,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46010,7 +46043,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46022,7 +46055,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46035,7 +46068,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46048,7 +46081,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46061,7 +46094,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46074,7 +46107,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46086,7 +46119,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46098,7 +46131,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46111,7 +46144,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46124,7 +46157,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, Single* c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46137,7 +46170,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, Single* c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46150,7 +46183,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46162,7 +46195,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46174,7 +46207,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46187,7 +46220,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46200,7 +46233,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46213,7 +46246,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46226,7 +46259,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46239,7 +46272,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46252,7 +46285,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -46268,7 +46301,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -46285,7 +46318,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -46301,7 +46334,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -46318,7 +46351,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46331,7 +46364,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46344,7 +46377,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -46360,7 +46393,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -46377,7 +46410,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -46393,7 +46426,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -46410,7 +46443,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single c, Single* n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46422,7 +46455,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single c, Single* n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46434,7 +46467,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46447,7 +46480,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46460,7 +46493,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46473,7 +46506,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single c, Single* n, ref Single v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46486,7 +46519,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46499,7 +46532,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46512,7 +46545,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -46528,7 +46561,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -46545,7 +46578,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -46561,7 +46594,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -46578,7 +46611,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46591,7 +46624,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single c, ref Single n, Single* v) { fixed (Int32* rc_ptr = rc) fixed (Single* tc_ptr = &tc) @@ -46604,7 +46637,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -46620,7 +46653,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -46637,7 +46670,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] UInt32[] rc, ref Single tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] UInt32[] rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -46653,7 +46686,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v([In, Out] Int32[] rc, ref Single tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([In, Out] Int32[] rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -46670,7 +46703,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) { @@ -46680,7 +46713,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) { @@ -46690,7 +46723,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -46701,7 +46734,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = v) @@ -46712,7 +46745,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -46723,7 +46756,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = &v) @@ -46734,7 +46767,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -46745,7 +46778,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -46756,7 +46789,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -46768,7 +46801,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -46780,7 +46813,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -46792,7 +46825,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = n) @@ -46804,7 +46837,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -46815,7 +46848,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -46826,7 +46859,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -46838,7 +46871,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -46850,7 +46883,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, Single* c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -46862,7 +46895,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, Single* c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* n_ptr = &n) @@ -46874,7 +46907,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46885,7 +46918,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46896,7 +46929,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46908,7 +46941,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46920,7 +46953,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46932,7 +46965,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46944,7 +46977,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46956,7 +46989,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46968,7 +47001,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46981,7 +47014,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -46994,7 +47027,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -47007,7 +47040,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -47020,7 +47053,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -47032,7 +47065,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -47044,7 +47077,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -47057,7 +47090,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -47070,7 +47103,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -47083,7 +47116,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, [In, Out] Single[] c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = c) @@ -47096,7 +47129,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47107,7 +47140,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47118,7 +47151,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47130,7 +47163,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47142,7 +47175,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47154,7 +47187,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47166,7 +47199,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47178,7 +47211,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47190,7 +47223,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47203,7 +47236,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47216,7 +47249,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47229,7 +47262,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47242,7 +47275,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47254,7 +47287,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47266,7 +47299,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47279,7 +47312,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47292,7 +47325,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, Single* tc, ref Single c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47305,7 +47338,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, Single* tc, ref Single c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, Single* tc, ref Single c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* c_ptr = &c) @@ -47318,7 +47351,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47329,7 +47362,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47340,7 +47373,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47352,7 +47385,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47364,7 +47397,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47376,7 +47409,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47388,7 +47421,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47400,7 +47433,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47412,7 +47445,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47425,7 +47458,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47438,7 +47471,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47451,7 +47484,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47464,7 +47497,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47476,7 +47509,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47488,7 +47521,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47501,7 +47534,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47514,7 +47547,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47527,7 +47560,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, Single* c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47540,7 +47573,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47552,7 +47585,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47564,7 +47597,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47577,7 +47610,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47590,7 +47623,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47603,7 +47636,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47616,7 +47649,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47629,7 +47662,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47642,7 +47675,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -47658,7 +47691,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -47675,7 +47708,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -47691,7 +47724,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -47708,7 +47741,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47721,7 +47754,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47734,7 +47767,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -47750,7 +47783,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -47767,7 +47800,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -47783,7 +47816,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -47800,7 +47833,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47812,7 +47845,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47824,7 +47857,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47837,7 +47870,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47850,7 +47883,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47863,7 +47896,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47876,7 +47909,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47889,7 +47922,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47902,7 +47935,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -47918,7 +47951,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -47935,7 +47968,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -47951,7 +47984,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -47968,7 +48001,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47981,7 +48014,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = tc) @@ -47994,7 +48027,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -48010,7 +48043,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -48027,7 +48060,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -48043,7 +48076,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, [In, Out] Single[] tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -48060,7 +48093,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48071,7 +48104,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48082,7 +48115,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48094,7 +48127,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48106,7 +48139,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48118,7 +48151,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48130,7 +48163,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48142,7 +48175,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48154,7 +48187,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48167,7 +48200,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, [In, Out] Single[] n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48180,7 +48213,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48193,7 +48226,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, [In, Out] Single[] n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48206,7 +48239,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48218,7 +48251,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48230,7 +48263,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48243,7 +48276,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, ref Single n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48256,7 +48289,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, Single* c, ref Single n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48269,7 +48302,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, Single* c, ref Single n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, Single* c, ref Single n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48282,7 +48315,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48294,7 +48327,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48306,7 +48339,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48319,7 +48352,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48332,7 +48365,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48345,7 +48378,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48358,7 +48391,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48371,7 +48404,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48384,7 +48417,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -48400,7 +48433,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -48417,7 +48450,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -48433,7 +48466,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -48450,7 +48483,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48463,7 +48496,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48476,7 +48509,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -48492,7 +48525,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -48509,7 +48542,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -48525,7 +48558,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, [In, Out] Single[] c, ref Single n, ref Single v) { unsafe { @@ -48542,7 +48575,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, Single* n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48554,7 +48587,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, Single* n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, Single* n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48566,7 +48599,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48579,7 +48612,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, Single* n, [In, Out] Single[] v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48592,7 +48625,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, Single* n, ref Single v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48605,7 +48638,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, Single* n, ref Single v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, Single* n, ref Single v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48618,7 +48651,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48631,7 +48664,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48644,7 +48677,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -48660,7 +48693,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, [In, Out] Single[] v) { unsafe { @@ -48677,7 +48710,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -48693,7 +48726,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, [In, Out] Single[] n, ref Single v) { unsafe { @@ -48710,7 +48743,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, Single* v) { fixed (UInt32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48723,7 +48756,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, ref Single n, Single* v) + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, ref Single n, Single* v) { fixed (Int32* rc_ptr = &rc) fixed (Single* tc_ptr = &tc) @@ -48736,7 +48769,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -48752,7 +48785,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, ref Single n, [In, Out] Single[] v) { unsafe { @@ -48769,7 +48802,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -48785,7 +48818,7 @@ namespace OpenTK.OpenGL } public static - void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) + void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(ref Int32 rc, ref Single tc, ref Single c, ref Single n, ref Single v) { unsafe { @@ -48801,7 +48834,7 @@ namespace OpenTK.OpenGL } public static - void DrawMeshArraysSUN(GL.Enums.BeginMode mode, Int32 first, Int32 count, Int32 width) + void DrawMeshArrays(GL.Enums.BeginMode mode, Int32 first, Int32 count, Int32 width) { Delegates.glDrawMeshArraysSUN((GL.Enums.BeginMode)mode, (Int32)first, (Int32)count, (Int32)width); } @@ -48811,7 +48844,7 @@ namespace OpenTK.OpenGL public static class INGR { public static - void BlendFuncSeparateINGR(GL.Enums.All sfactorRGB, GL.Enums.All dfactorRGB, GL.Enums.All sfactorAlpha, GL.Enums.All dfactorAlpha) + void BlendFuncSeparate(GL.Enums.All sfactorRGB, GL.Enums.All dfactorRGB, GL.Enums.All sfactorAlpha, GL.Enums.All dfactorAlpha) { Delegates.glBlendFuncSeparateINGR((GL.Enums.All)sfactorRGB, (GL.Enums.All)dfactorRGB, (GL.Enums.All)sfactorAlpha, (GL.Enums.All)dfactorAlpha); } @@ -48821,20 +48854,20 @@ namespace OpenTK.OpenGL public static class NV { public static - void FlushVertexArrayRangeNV() + void FlushVertexArrayRange() { Delegates.glFlushVertexArrayRangeNV(); } [System.CLSCompliant(false)] public static - unsafe void VertexArrayRangeNV(Int32 length, void* pointer) + unsafe void VertexArrayRange(Int32 length, void* pointer) { unsafe { Delegates.glVertexArrayRangeNV((Int32)length, (void*)pointer); } } public static - void VertexArrayRangeNV(Int32 length, [In, Out] object pointer) + void VertexArrayRange(Int32 length, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -48882,7 +48915,7 @@ namespace OpenTK.OpenGL } public static - void CombinerParameterfNV(GL.Enums.NV_register_combiners pname, Single param) + void CombinerParameterf(GL.Enums.NV_register_combiners pname, Single param) { Delegates.glCombinerParameterfNV((GL.Enums.NV_register_combiners)pname, (Single)param); } @@ -48919,25 +48952,25 @@ namespace OpenTK.OpenGL } public static - void CombinerParameteriNV(GL.Enums.NV_register_combiners pname, Int32 param) + void CombinerParameteri(GL.Enums.NV_register_combiners pname, Int32 param) { Delegates.glCombinerParameteriNV((GL.Enums.NV_register_combiners)pname, (Int32)param); } public static - void CombinerInputNV(GL.Enums.NV_register_combiners stage, GL.Enums.NV_register_combiners portion, GL.Enums.NV_register_combiners variable, GL.Enums.NV_register_combiners input, GL.Enums.NV_register_combiners mapping, GL.Enums.NV_register_combiners componentUsage) + void CombinerInput(GL.Enums.NV_register_combiners stage, GL.Enums.NV_register_combiners portion, GL.Enums.NV_register_combiners variable, GL.Enums.NV_register_combiners input, GL.Enums.NV_register_combiners mapping, GL.Enums.NV_register_combiners componentUsage) { Delegates.glCombinerInputNV((GL.Enums.NV_register_combiners)stage, (GL.Enums.NV_register_combiners)portion, (GL.Enums.NV_register_combiners)variable, (GL.Enums.NV_register_combiners)input, (GL.Enums.NV_register_combiners)mapping, (GL.Enums.NV_register_combiners)componentUsage); } public static - void CombinerOutputNV(GL.Enums.NV_register_combiners stage, GL.Enums.NV_register_combiners portion, GL.Enums.NV_register_combiners abOutput, GL.Enums.NV_register_combiners cdOutput, GL.Enums.NV_register_combiners sumOutput, GL.Enums.NV_register_combiners scale, GL.Enums.NV_register_combiners bias, GL.Enums.Boolean abDotProduct, GL.Enums.Boolean cdDotProduct, GL.Enums.Boolean muxSum) + void CombinerOutput(GL.Enums.NV_register_combiners stage, GL.Enums.NV_register_combiners portion, GL.Enums.NV_register_combiners abOutput, GL.Enums.NV_register_combiners cdOutput, GL.Enums.NV_register_combiners sumOutput, GL.Enums.NV_register_combiners scale, GL.Enums.NV_register_combiners bias, GL.Enums.Boolean abDotProduct, GL.Enums.Boolean cdDotProduct, GL.Enums.Boolean muxSum) { Delegates.glCombinerOutputNV((GL.Enums.NV_register_combiners)stage, (GL.Enums.NV_register_combiners)portion, (GL.Enums.NV_register_combiners)abOutput, (GL.Enums.NV_register_combiners)cdOutput, (GL.Enums.NV_register_combiners)sumOutput, (GL.Enums.NV_register_combiners)scale, (GL.Enums.NV_register_combiners)bias, (GL.Enums.Boolean)abDotProduct, (GL.Enums.Boolean)cdDotProduct, (GL.Enums.Boolean)muxSum); } public static - void FinalCombinerInputNV(GL.Enums.NV_register_combiners variable, GL.Enums.NV_register_combiners input, GL.Enums.NV_register_combiners mapping, GL.Enums.NV_register_combiners componentUsage) + void FinalCombinerInput(GL.Enums.NV_register_combiners variable, GL.Enums.NV_register_combiners input, GL.Enums.NV_register_combiners mapping, GL.Enums.NV_register_combiners componentUsage) { Delegates.glFinalCombinerInputNV((GL.Enums.NV_register_combiners)variable, (GL.Enums.NV_register_combiners)input, (GL.Enums.NV_register_combiners)mapping, (GL.Enums.NV_register_combiners)componentUsage); } @@ -49142,14 +49175,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteFencesNV(Int32 n, UInt32* fences) + unsafe void DeleteFences(Int32 n, UInt32* fences) { unsafe { Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); } } [System.CLSCompliant(false)] public static - unsafe void DeleteFencesNV(Int32 n, Int32* fences) + unsafe void DeleteFences(Int32 n, Int32* fences) { { Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); @@ -49158,7 +49191,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFencesNV(Int32 n, [In, Out] UInt32[] fences) + void DeleteFences(Int32 n, [In, Out] UInt32[] fences) { unsafe { @@ -49170,7 +49203,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFencesNV(Int32 n, [In, Out] Int32[] fences) + void DeleteFences(Int32 n, [In, Out] Int32[] fences) { unsafe { @@ -49183,7 +49216,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFencesNV(Int32 n, ref UInt32 fences) + void DeleteFences(Int32 n, ref UInt32 fences) { unsafe { @@ -49195,7 +49228,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFencesNV(Int32 n, ref Int32 fences) + void DeleteFences(Int32 n, ref Int32 fences) { unsafe { @@ -49208,14 +49241,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenFencesNV(Int32 n, [Out] UInt32* fences) + unsafe void GenFences(Int32 n, [Out] UInt32* fences) { unsafe { Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); } } [System.CLSCompliant(false)] public static - unsafe void GenFencesNV(Int32 n, [Out] Int32* fences) + unsafe void GenFences(Int32 n, [Out] Int32* fences) { fences = default(Int32*); { @@ -49225,7 +49258,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFencesNV(Int32 n, [In, Out] UInt32[] fences) + void GenFences(Int32 n, [In, Out] UInt32[] fences) { unsafe { @@ -49237,7 +49270,7 @@ namespace OpenTK.OpenGL } public static - void GenFencesNV(Int32 n, [In, Out] Int32[] fences) + void GenFences(Int32 n, [In, Out] Int32[] fences) { unsafe { @@ -49250,7 +49283,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFencesNV(Int32 n, [Out] out UInt32 fences) + void GenFences(Int32 n, [Out] out UInt32 fences) { fences = default(UInt32); unsafe @@ -49264,7 +49297,7 @@ namespace OpenTK.OpenGL } public static - void GenFencesNV(Int32 n, [Out] out Int32 fences) + void GenFences(Int32 n, [Out] out Int32 fences) { fences = default(Int32); unsafe @@ -49279,26 +49312,26 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsFenceNV(UInt32 fence) + Boolean IsFence(UInt32 fence) { return Delegates.glIsFenceNV((UInt32)fence); } public static - Boolean IsFenceNV(Int32 fence) + Boolean IsFence(Int32 fence) { return Delegates.glIsFenceNV((UInt32)fence); } [System.CLSCompliant(false)] public static - Boolean TestFenceNV(UInt32 fence) + Boolean TestFence(UInt32 fence) { return Delegates.glTestFenceNV((UInt32)fence); } public static - Boolean TestFenceNV(Int32 fence) + Boolean TestFence(Int32 fence) { return Delegates.glTestFenceNV((UInt32)fence); } @@ -49376,40 +49409,40 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void FinishFenceNV(UInt32 fence) + void FinishFence(UInt32 fence) { Delegates.glFinishFenceNV((UInt32)fence); } public static - void FinishFenceNV(Int32 fence) + void FinishFence(Int32 fence) { Delegates.glFinishFenceNV((UInt32)fence); } [System.CLSCompliant(false)] public static - void SetFenceNV(UInt32 fence, GL.Enums.NV_fence condition) + void SetFence(UInt32 fence, GL.Enums.NV_fence condition) { Delegates.glSetFenceNV((UInt32)fence, (GL.Enums.NV_fence)condition); } public static - void SetFenceNV(Int32 fence, GL.Enums.NV_fence condition) + void SetFence(Int32 fence, GL.Enums.NV_fence condition) { Delegates.glSetFenceNV((UInt32)fence, (GL.Enums.NV_fence)condition); } [System.CLSCompliant(false)] public static - unsafe void MapControlPointsNV(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, GL.Enums.Boolean packed, void* points) + unsafe void MapControlPoints(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, GL.Enums.Boolean packed, void* points) { unsafe { Delegates.glMapControlPointsNV((GL.Enums.NV_evaluators)target, (UInt32)index, (GL.Enums.NV_evaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (GL.Enums.Boolean)packed, (void*)points); } } [System.CLSCompliant(false)] public static - unsafe void MapControlPointsNV(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, GL.Enums.Boolean packed, void* points) + unsafe void MapControlPoints(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, GL.Enums.Boolean packed, void* points) { { Delegates.glMapControlPointsNV((GL.Enums.NV_evaluators)target, (UInt32)index, (GL.Enums.NV_evaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (GL.Enums.Boolean)packed, (void*)points); @@ -49480,14 +49513,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetMapControlPointsNV(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators type, Int32 ustride, Int32 vstride, GL.Enums.Boolean packed, [Out] void* points) + unsafe void GetMapControlPoints(GL.Enums.NV_evaluators target, UInt32 index, GL.Enums.NV_evaluators type, Int32 ustride, Int32 vstride, GL.Enums.Boolean packed, [Out] void* points) { unsafe { Delegates.glGetMapControlPointsNV((GL.Enums.NV_evaluators)target, (UInt32)index, (GL.Enums.NV_evaluators)type, (Int32)ustride, (Int32)vstride, (GL.Enums.Boolean)packed, (void*)points); } } [System.CLSCompliant(false)] public static - unsafe void GetMapControlPointsNV(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators type, Int32 ustride, Int32 vstride, GL.Enums.Boolean packed, [Out] void* points) + unsafe void GetMapControlPoints(GL.Enums.NV_evaluators target, Int32 index, GL.Enums.NV_evaluators type, Int32 ustride, Int32 vstride, GL.Enums.Boolean packed, [Out] void* points) { points = default(void*); { @@ -49704,7 +49737,7 @@ namespace OpenTK.OpenGL } public static - void EvalMapsNV(GL.Enums.NV_evaluators target, GL.Enums.NV_evaluators mode) + void EvalMaps(GL.Enums.NV_evaluators target, GL.Enums.NV_evaluators mode) { Delegates.glEvalMapsNV((GL.Enums.NV_evaluators)target, (GL.Enums.NV_evaluators)mode); } @@ -49775,14 +49808,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreProgramsResidentNV(Int32 n, UInt32* programs, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreProgramsResident(Int32 n, UInt32* programs, [Out] GL.Enums.Boolean* residences) { unsafe { return Delegates.glAreProgramsResidentNV((Int32)n, (UInt32*)programs, (GL.Enums.Boolean*)residences); } } [System.CLSCompliant(false)] public static - unsafe Boolean AreProgramsResidentNV(Int32 n, Int32* programs, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreProgramsResident(Int32 n, Int32* programs, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); { @@ -49793,7 +49826,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreProgramsResidentNV(Int32 n, [In, Out] UInt32[] programs, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreProgramsResident(Int32 n, [In, Out] UInt32[] programs, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); fixed (UInt32* programs_ptr = programs) @@ -49805,7 +49838,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreProgramsResidentNV(Int32 n, [In, Out] Int32[] programs, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreProgramsResident(Int32 n, [In, Out] Int32[] programs, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); fixed (Int32* programs_ptr = programs) @@ -49817,7 +49850,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreProgramsResidentNV(Int32 n, ref UInt32 programs, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreProgramsResident(Int32 n, ref UInt32 programs, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); fixed (UInt32* programs_ptr = &programs) @@ -49829,7 +49862,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe Boolean AreProgramsResidentNV(Int32 n, ref Int32 programs, [Out] GL.Enums.Boolean* residences) + unsafe Boolean AreProgramsResident(Int32 n, ref Int32 programs, [Out] GL.Enums.Boolean* residences) { residences = default(GL.Enums.Boolean*); fixed (Int32* programs_ptr = &programs) @@ -49841,27 +49874,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void BindProgramNV(GL.Enums.NV_vertex_program target, UInt32 id) + void BindProgram(GL.Enums.NV_vertex_program target, UInt32 id) { Delegates.glBindProgramNV((GL.Enums.NV_vertex_program)target, (UInt32)id); } public static - void BindProgramNV(GL.Enums.NV_vertex_program target, Int32 id) + void BindProgram(GL.Enums.NV_vertex_program target, Int32 id) { Delegates.glBindProgramNV((GL.Enums.NV_vertex_program)target, (UInt32)id); } [System.CLSCompliant(false)] public static - unsafe void DeleteProgramsNV(Int32 n, UInt32* programs) + unsafe void DeletePrograms(Int32 n, UInt32* programs) { unsafe { Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void DeleteProgramsNV(Int32 n, Int32* programs) + unsafe void DeletePrograms(Int32 n, Int32* programs) { { Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs); @@ -49870,7 +49903,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteProgramsNV(Int32 n, [In, Out] UInt32[] programs) + void DeletePrograms(Int32 n, [In, Out] UInt32[] programs) { unsafe { @@ -49882,7 +49915,7 @@ namespace OpenTK.OpenGL } public static - void DeleteProgramsNV(Int32 n, [In, Out] Int32[] programs) + void DeletePrograms(Int32 n, [In, Out] Int32[] programs) { unsafe { @@ -49895,7 +49928,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteProgramsNV(Int32 n, ref UInt32 programs) + void DeletePrograms(Int32 n, ref UInt32 programs) { unsafe { @@ -49907,7 +49940,7 @@ namespace OpenTK.OpenGL } public static - void DeleteProgramsNV(Int32 n, ref Int32 programs) + void DeletePrograms(Int32 n, ref Int32 programs) { unsafe { @@ -49920,14 +49953,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ExecuteProgramNV(GL.Enums.NV_vertex_program target, UInt32 id, Single* @params) + unsafe void ExecuteProgram(GL.Enums.NV_vertex_program target, UInt32 id, Single* @params) { unsafe { Delegates.glExecuteProgramNV((GL.Enums.NV_vertex_program)target, (UInt32)id, (Single*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ExecuteProgramNV(GL.Enums.NV_vertex_program target, Int32 id, Single* @params) + unsafe void ExecuteProgram(GL.Enums.NV_vertex_program target, Int32 id, Single* @params) { { Delegates.glExecuteProgramNV((GL.Enums.NV_vertex_program)target, (UInt32)id, (Single*)@params); @@ -49936,7 +49969,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ExecuteProgramNV(GL.Enums.NV_vertex_program target, UInt32 id, [In, Out] Single[] @params) + void ExecuteProgram(GL.Enums.NV_vertex_program target, UInt32 id, [In, Out] Single[] @params) { unsafe { @@ -49948,7 +49981,7 @@ namespace OpenTK.OpenGL } public static - void ExecuteProgramNV(GL.Enums.NV_vertex_program target, Int32 id, [In, Out] Single[] @params) + void ExecuteProgram(GL.Enums.NV_vertex_program target, Int32 id, [In, Out] Single[] @params) { unsafe { @@ -49961,7 +49994,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ExecuteProgramNV(GL.Enums.NV_vertex_program target, UInt32 id, ref Single @params) + void ExecuteProgram(GL.Enums.NV_vertex_program target, UInt32 id, ref Single @params) { unsafe { @@ -49973,7 +50006,7 @@ namespace OpenTK.OpenGL } public static - void ExecuteProgramNV(GL.Enums.NV_vertex_program target, Int32 id, ref Single @params) + void ExecuteProgram(GL.Enums.NV_vertex_program target, Int32 id, ref Single @params) { unsafe { @@ -49986,14 +50019,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenProgramsNV(Int32 n, [Out] UInt32* programs) + unsafe void GenPrograms(Int32 n, [Out] UInt32* programs) { unsafe { Delegates.glGenProgramsNV((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void GenProgramsNV(Int32 n, [Out] Int32* programs) + unsafe void GenPrograms(Int32 n, [Out] Int32* programs) { programs = default(Int32*); { @@ -50003,7 +50036,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenProgramsNV(Int32 n, [In, Out] UInt32[] programs) + void GenPrograms(Int32 n, [In, Out] UInt32[] programs) { unsafe { @@ -50015,7 +50048,7 @@ namespace OpenTK.OpenGL } public static - void GenProgramsNV(Int32 n, [In, Out] Int32[] programs) + void GenPrograms(Int32 n, [In, Out] Int32[] programs) { unsafe { @@ -50028,7 +50061,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenProgramsNV(Int32 n, [Out] out UInt32 programs) + void GenPrograms(Int32 n, [Out] out UInt32 programs) { programs = default(UInt32); unsafe @@ -50042,7 +50075,7 @@ namespace OpenTK.OpenGL } public static - void GenProgramsNV(Int32 n, [Out] out Int32 programs) + void GenPrograms(Int32 n, [Out] out Int32 programs) { programs = default(Int32); unsafe @@ -50270,14 +50303,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetProgramStringNV(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] Byte* program) + unsafe void GetProgramString(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] Byte* program) { unsafe { Delegates.glGetProgramStringNV((UInt32)id, (GL.Enums.NV_vertex_program)pname, (Byte*)program); } } [System.CLSCompliant(false)] public static - unsafe void GetProgramStringNV(Int32 id, GL.Enums.NV_vertex_program pname, [Out] Byte* program) + unsafe void GetProgramString(Int32 id, GL.Enums.NV_vertex_program pname, [Out] Byte* program) { program = default(Byte*); { @@ -50287,7 +50320,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetProgramStringNV(UInt32 id, GL.Enums.NV_vertex_program pname, [In, Out] Byte[] program) + void GetProgramString(UInt32 id, GL.Enums.NV_vertex_program pname, [In, Out] Byte[] program) { unsafe { @@ -50299,7 +50332,7 @@ namespace OpenTK.OpenGL } public static - void GetProgramStringNV(Int32 id, GL.Enums.NV_vertex_program pname, [In, Out] Byte[] program) + void GetProgramString(Int32 id, GL.Enums.NV_vertex_program pname, [In, Out] Byte[] program) { unsafe { @@ -50312,7 +50345,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetProgramStringNV(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] out Byte program) + void GetProgramString(UInt32 id, GL.Enums.NV_vertex_program pname, [Out] out Byte program) { program = default(Byte); unsafe @@ -50326,7 +50359,7 @@ namespace OpenTK.OpenGL } public static - void GetProgramStringNV(Int32 id, GL.Enums.NV_vertex_program pname, [Out] out Byte program) + void GetProgramString(Int32 id, GL.Enums.NV_vertex_program pname, [Out] out Byte program) { program = default(Byte); unsafe @@ -50625,14 +50658,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribPointervNV(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] void* pointer) + unsafe void GetVertexAttribPointerv(UInt32 index, GL.Enums.NV_vertex_program pname, [Out] void* pointer) { unsafe { Delegates.glGetVertexAttribPointervNV((UInt32)index, (GL.Enums.NV_vertex_program)pname, (void*)pointer); } } [System.CLSCompliant(false)] public static - unsafe void GetVertexAttribPointervNV(Int32 index, GL.Enums.NV_vertex_program pname, [Out] void* pointer) + unsafe void GetVertexAttribPointerv(Int32 index, GL.Enums.NV_vertex_program pname, [Out] void* pointer) { pointer = default(void*); { @@ -50642,7 +50675,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetVertexAttribPointervNV(UInt32 index, GL.Enums.NV_vertex_program pname, [In, Out] object pointer) + void GetVertexAttribPointerv(UInt32 index, GL.Enums.NV_vertex_program pname, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -50659,7 +50692,7 @@ namespace OpenTK.OpenGL } public static - void GetVertexAttribPointervNV(Int32 index, GL.Enums.NV_vertex_program pname, [In, Out] object pointer) + void GetVertexAttribPointerv(Int32 index, GL.Enums.NV_vertex_program pname, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -50677,27 +50710,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsProgramNV(UInt32 id) + Boolean IsProgram(UInt32 id) { return Delegates.glIsProgramNV((UInt32)id); } public static - Boolean IsProgramNV(Int32 id) + Boolean IsProgram(Int32 id) { return Delegates.glIsProgramNV((UInt32)id); } [System.CLSCompliant(false)] public static - unsafe void LoadProgramNV(GL.Enums.NV_vertex_program target, UInt32 id, Int32 len, Byte* program) + unsafe void LoadProgram(GL.Enums.NV_vertex_program target, UInt32 id, Int32 len, Byte* program) { unsafe { Delegates.glLoadProgramNV((GL.Enums.NV_vertex_program)target, (UInt32)id, (Int32)len, (Byte*)program); } } [System.CLSCompliant(false)] public static - unsafe void LoadProgramNV(GL.Enums.NV_vertex_program target, Int32 id, Int32 len, Byte* program) + unsafe void LoadProgram(GL.Enums.NV_vertex_program target, Int32 id, Int32 len, Byte* program) { { Delegates.glLoadProgramNV((GL.Enums.NV_vertex_program)target, (UInt32)id, (Int32)len, (Byte*)program); @@ -50706,7 +50739,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void LoadProgramNV(GL.Enums.NV_vertex_program target, UInt32 id, Int32 len, [In, Out] Byte[] program) + void LoadProgram(GL.Enums.NV_vertex_program target, UInt32 id, Int32 len, [In, Out] Byte[] program) { unsafe { @@ -50718,7 +50751,7 @@ namespace OpenTK.OpenGL } public static - void LoadProgramNV(GL.Enums.NV_vertex_program target, Int32 id, Int32 len, [In, Out] Byte[] program) + void LoadProgram(GL.Enums.NV_vertex_program target, Int32 id, Int32 len, [In, Out] Byte[] program) { unsafe { @@ -50731,7 +50764,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void LoadProgramNV(GL.Enums.NV_vertex_program target, UInt32 id, Int32 len, ref Byte program) + void LoadProgram(GL.Enums.NV_vertex_program target, UInt32 id, Int32 len, ref Byte program) { unsafe { @@ -50743,7 +50776,7 @@ namespace OpenTK.OpenGL } public static - void LoadProgramNV(GL.Enums.NV_vertex_program target, Int32 id, Int32 len, ref Byte program) + void LoadProgram(GL.Enums.NV_vertex_program target, Int32 id, Int32 len, ref Byte program) { unsafe { @@ -50769,14 +50802,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, Double* v) + unsafe void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, Double* v) { unsafe { Delegates.glProgramParameter4dvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, Double* v) + unsafe void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, Double* v) { { Delegates.glProgramParameter4dvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (Double*)v); @@ -50785,7 +50818,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, [In, Out] Double[] v) + void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, [In, Out] Double[] v) { unsafe { @@ -50797,7 +50830,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, [In, Out] Double[] v) + void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, [In, Out] Double[] v) { unsafe { @@ -50810,7 +50843,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, ref Double v) + void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, ref Double v) { unsafe { @@ -50822,7 +50855,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, ref Double v) + void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, ref Double v) { unsafe { @@ -50848,14 +50881,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, Single* v) + unsafe void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, Single* v) { unsafe { Delegates.glProgramParameter4fvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, Single* v) + unsafe void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, Single* v) { { Delegates.glProgramParameter4fvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (Single*)v); @@ -50864,7 +50897,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, [In, Out] Single[] v) + void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, [In, Out] Single[] v) { unsafe { @@ -50876,7 +50909,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, [In, Out] Single[] v) + void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, [In, Out] Single[] v) { unsafe { @@ -50889,7 +50922,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameter4v(GL.Enums.NV_vertex_program target, UInt32 index, ref Single v) + void ProgramParameter4(GL.Enums.NV_vertex_program target, UInt32 index, ref Single v) { unsafe { @@ -50901,7 +50934,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameter4v(GL.Enums.NV_vertex_program target, Int32 index, ref Single v) + void ProgramParameter4(GL.Enums.NV_vertex_program target, Int32 index, ref Single v) { unsafe { @@ -50914,14 +50947,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4v(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Double* v) + unsafe void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Double* v) { unsafe { Delegates.glProgramParameters4dvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (UInt32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4v(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Double* v) + unsafe void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Double* v) { { Delegates.glProgramParameters4dvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (UInt32)count, (Double*)v); @@ -50930,7 +50963,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameters4v(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, [In, Out] Double[] v) + void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, [In, Out] Double[] v) { unsafe { @@ -50942,7 +50975,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameters4v(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, [In, Out] Double[] v) + void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, [In, Out] Double[] v) { unsafe { @@ -50955,7 +50988,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameters4v(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, ref Double v) + void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, ref Double v) { unsafe { @@ -50967,7 +51000,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameters4v(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, ref Double v) + void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, ref Double v) { unsafe { @@ -50980,14 +51013,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4v(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Single* v) + unsafe void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, Single* v) { unsafe { Delegates.glProgramParameters4fvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (UInt32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramParameters4v(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Single* v) + unsafe void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, Single* v) { { Delegates.glProgramParameters4fvNV((GL.Enums.NV_vertex_program)target, (UInt32)index, (UInt32)count, (Single*)v); @@ -50996,7 +51029,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameters4v(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, [In, Out] Single[] v) + void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, [In, Out] Single[] v) { unsafe { @@ -51008,7 +51041,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameters4v(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, [In, Out] Single[] v) + void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, [In, Out] Single[] v) { unsafe { @@ -51021,7 +51054,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramParameters4v(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, ref Single v) + void ProgramParameters4(GL.Enums.NV_vertex_program target, UInt32 index, UInt32 count, ref Single v) { unsafe { @@ -51033,7 +51066,7 @@ namespace OpenTK.OpenGL } public static - void ProgramParameters4v(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, ref Single v) + void ProgramParameters4(GL.Enums.NV_vertex_program target, Int32 index, Int32 count, ref Single v) { unsafe { @@ -51046,14 +51079,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void RequestResidentProgramsNV(Int32 n, UInt32* programs) + unsafe void RequestResidentPrograms(Int32 n, UInt32* programs) { unsafe { Delegates.glRequestResidentProgramsNV((Int32)n, (UInt32*)programs); } } [System.CLSCompliant(false)] public static - unsafe void RequestResidentProgramsNV(Int32 n, Int32* programs) + unsafe void RequestResidentPrograms(Int32 n, Int32* programs) { { Delegates.glRequestResidentProgramsNV((Int32)n, (UInt32*)programs); @@ -51062,7 +51095,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void RequestResidentProgramsNV(Int32 n, [In, Out] UInt32[] programs) + void RequestResidentPrograms(Int32 n, [In, Out] UInt32[] programs) { unsafe { @@ -51074,7 +51107,7 @@ namespace OpenTK.OpenGL } public static - void RequestResidentProgramsNV(Int32 n, [In, Out] Int32[] programs) + void RequestResidentPrograms(Int32 n, [In, Out] Int32[] programs) { unsafe { @@ -51087,7 +51120,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void RequestResidentProgramsNV(Int32 n, ref UInt32 programs) + void RequestResidentPrograms(Int32 n, ref UInt32 programs) { unsafe { @@ -51099,7 +51132,7 @@ namespace OpenTK.OpenGL } public static - void RequestResidentProgramsNV(Int32 n, ref Int32 programs) + void RequestResidentPrograms(Int32 n, ref Int32 programs) { unsafe { @@ -51112,27 +51145,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TrackMatrixNV(GL.Enums.NV_vertex_program target, UInt32 address, GL.Enums.NV_vertex_program matrix, GL.Enums.NV_vertex_program transform) + void TrackMatrix(GL.Enums.NV_vertex_program target, UInt32 address, GL.Enums.NV_vertex_program matrix, GL.Enums.NV_vertex_program transform) { Delegates.glTrackMatrixNV((GL.Enums.NV_vertex_program)target, (UInt32)address, (GL.Enums.NV_vertex_program)matrix, (GL.Enums.NV_vertex_program)transform); } public static - void TrackMatrixNV(GL.Enums.NV_vertex_program target, Int32 address, GL.Enums.NV_vertex_program matrix, GL.Enums.NV_vertex_program transform) + void TrackMatrix(GL.Enums.NV_vertex_program target, Int32 address, GL.Enums.NV_vertex_program matrix, GL.Enums.NV_vertex_program transform) { Delegates.glTrackMatrixNV((GL.Enums.NV_vertex_program)target, (UInt32)address, (GL.Enums.NV_vertex_program)matrix, (GL.Enums.NV_vertex_program)transform); } [System.CLSCompliant(false)] public static - unsafe void VertexAttribPointerNV(UInt32 index, Int32 fsize, GL.Enums.NV_vertex_program type, Int32 stride, void* pointer) + unsafe void VertexAttribPointer(UInt32 index, Int32 fsize, GL.Enums.NV_vertex_program type, Int32 stride, void* pointer) { unsafe { Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (GL.Enums.NV_vertex_program)type, (Int32)stride, (void*)pointer); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribPointerNV(Int32 index, Int32 fsize, GL.Enums.NV_vertex_program type, Int32 stride, void* pointer) + unsafe void VertexAttribPointer(Int32 index, Int32 fsize, GL.Enums.NV_vertex_program type, Int32 stride, void* pointer) { { Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (GL.Enums.NV_vertex_program)type, (Int32)stride, (void*)pointer); @@ -51141,7 +51174,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribPointerNV(UInt32 index, Int32 fsize, GL.Enums.NV_vertex_program type, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(UInt32 index, Int32 fsize, GL.Enums.NV_vertex_program type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -51158,7 +51191,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribPointerNV(Int32 index, Int32 fsize, GL.Enums.NV_vertex_program type, Int32 stride, [In, Out] object pointer) + void VertexAttribPointer(Int32 index, Int32 fsize, GL.Enums.NV_vertex_program type, Int32 stride, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -51189,14 +51222,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(UInt32 index, Double* v) + unsafe void VertexAttrib1dv(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib1dvNV((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(Int32 index, Double* v) + unsafe void VertexAttrib1dv(Int32 index, Double* v) { { Delegates.glVertexAttrib1dvNV((UInt32)index, (Double*)v); @@ -51205,7 +51238,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib1dv(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -51217,7 +51250,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, [In, Out] Double[] v) + void VertexAttrib1dv(Int32 index, [In, Out] Double[] v) { unsafe { @@ -51230,7 +51263,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, ref Double v) + void VertexAttrib1dv(UInt32 index, ref Double v) { unsafe { @@ -51242,7 +51275,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, ref Double v) + void VertexAttrib1dv(Int32 index, ref Double v) { unsafe { @@ -51268,14 +51301,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(UInt32 index, Single* v) + unsafe void VertexAttrib1fv(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib1fvNV((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(Int32 index, Single* v) + unsafe void VertexAttrib1fv(Int32 index, Single* v) { { Delegates.glVertexAttrib1fvNV((UInt32)index, (Single*)v); @@ -51284,7 +51317,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib1fv(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -51296,7 +51329,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, [In, Out] Single[] v) + void VertexAttrib1fv(Int32 index, [In, Out] Single[] v) { unsafe { @@ -51309,7 +51342,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, ref Single v) + void VertexAttrib1fv(UInt32 index, ref Single v) { unsafe { @@ -51321,7 +51354,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, ref Single v) + void VertexAttrib1fv(Int32 index, ref Single v) { unsafe { @@ -51347,14 +51380,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(UInt32 index, Int16* v) + unsafe void VertexAttrib1sv(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib1svNV((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1v(Int32 index, Int16* v) + unsafe void VertexAttrib1sv(Int32 index, Int16* v) { { Delegates.glVertexAttrib1svNV((UInt32)index, (Int16*)v); @@ -51363,7 +51396,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib1sv(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -51375,7 +51408,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib1sv(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -51388,7 +51421,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1v(UInt32 index, ref Int16 v) + void VertexAttrib1sv(UInt32 index, ref Int16 v) { unsafe { @@ -51400,7 +51433,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1v(Int32 index, ref Int16 v) + void VertexAttrib1sv(Int32 index, ref Int16 v) { unsafe { @@ -51426,14 +51459,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(UInt32 index, Double* v) + unsafe void VertexAttrib2(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib2dvNV((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(Int32 index, Double* v) + unsafe void VertexAttrib2(Int32 index, Double* v) { { Delegates.glVertexAttrib2dvNV((UInt32)index, (Double*)v); @@ -51442,7 +51475,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib2(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -51454,7 +51487,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, [In, Out] Double[] v) + void VertexAttrib2(Int32 index, [In, Out] Double[] v) { unsafe { @@ -51467,7 +51500,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, ref Double v) + void VertexAttrib2(UInt32 index, ref Double v) { unsafe { @@ -51479,7 +51512,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, ref Double v) + void VertexAttrib2(Int32 index, ref Double v) { unsafe { @@ -51505,14 +51538,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(UInt32 index, Single* v) + unsafe void VertexAttrib2(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib2fvNV((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(Int32 index, Single* v) + unsafe void VertexAttrib2(Int32 index, Single* v) { { Delegates.glVertexAttrib2fvNV((UInt32)index, (Single*)v); @@ -51521,7 +51554,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib2(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -51533,7 +51566,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, [In, Out] Single[] v) + void VertexAttrib2(Int32 index, [In, Out] Single[] v) { unsafe { @@ -51546,7 +51579,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, ref Single v) + void VertexAttrib2(UInt32 index, ref Single v) { unsafe { @@ -51558,7 +51591,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, ref Single v) + void VertexAttrib2(Int32 index, ref Single v) { unsafe { @@ -51584,14 +51617,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(UInt32 index, Int16* v) + unsafe void VertexAttrib2(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib2svNV((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2v(Int32 index, Int16* v) + unsafe void VertexAttrib2(Int32 index, Int16* v) { { Delegates.glVertexAttrib2svNV((UInt32)index, (Int16*)v); @@ -51600,7 +51633,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib2(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -51612,7 +51645,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib2(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -51625,7 +51658,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2v(UInt32 index, ref Int16 v) + void VertexAttrib2(UInt32 index, ref Int16 v) { unsafe { @@ -51637,7 +51670,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2v(Int32 index, ref Int16 v) + void VertexAttrib2(Int32 index, ref Int16 v) { unsafe { @@ -51663,14 +51696,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(UInt32 index, Double* v) + unsafe void VertexAttrib3(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib3dvNV((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(Int32 index, Double* v) + unsafe void VertexAttrib3(Int32 index, Double* v) { { Delegates.glVertexAttrib3dvNV((UInt32)index, (Double*)v); @@ -51679,7 +51712,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib3(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -51691,7 +51724,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, [In, Out] Double[] v) + void VertexAttrib3(Int32 index, [In, Out] Double[] v) { unsafe { @@ -51704,7 +51737,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, ref Double v) + void VertexAttrib3(UInt32 index, ref Double v) { unsafe { @@ -51716,7 +51749,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, ref Double v) + void VertexAttrib3(Int32 index, ref Double v) { unsafe { @@ -51742,14 +51775,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(UInt32 index, Single* v) + unsafe void VertexAttrib3(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib3fvNV((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(Int32 index, Single* v) + unsafe void VertexAttrib3(Int32 index, Single* v) { { Delegates.glVertexAttrib3fvNV((UInt32)index, (Single*)v); @@ -51758,7 +51791,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib3(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -51770,7 +51803,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, [In, Out] Single[] v) + void VertexAttrib3(Int32 index, [In, Out] Single[] v) { unsafe { @@ -51783,7 +51816,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, ref Single v) + void VertexAttrib3(UInt32 index, ref Single v) { unsafe { @@ -51795,7 +51828,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, ref Single v) + void VertexAttrib3(Int32 index, ref Single v) { unsafe { @@ -51821,14 +51854,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(UInt32 index, Int16* v) + unsafe void VertexAttrib3(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib3svNV((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3v(Int32 index, Int16* v) + unsafe void VertexAttrib3(Int32 index, Int16* v) { { Delegates.glVertexAttrib3svNV((UInt32)index, (Int16*)v); @@ -51837,7 +51870,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib3(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -51849,7 +51882,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib3(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -51862,7 +51895,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3v(UInt32 index, ref Int16 v) + void VertexAttrib3(UInt32 index, ref Int16 v) { unsafe { @@ -51874,7 +51907,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3v(Int32 index, ref Int16 v) + void VertexAttrib3(Int32 index, ref Int16 v) { unsafe { @@ -51900,14 +51933,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Double* v) + unsafe void VertexAttrib4(UInt32 index, Double* v) { unsafe { Delegates.glVertexAttrib4dvNV((UInt32)index, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Double* v) + unsafe void VertexAttrib4(Int32 index, Double* v) { { Delegates.glVertexAttrib4dvNV((UInt32)index, (Double*)v); @@ -51916,7 +51949,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Double[] v) + void VertexAttrib4(UInt32 index, [In, Out] Double[] v) { unsafe { @@ -51928,7 +51961,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Double[] v) + void VertexAttrib4(Int32 index, [In, Out] Double[] v) { unsafe { @@ -51941,7 +51974,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Double v) + void VertexAttrib4(UInt32 index, ref Double v) { unsafe { @@ -51953,7 +51986,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Double v) + void VertexAttrib4(Int32 index, ref Double v) { unsafe { @@ -51979,14 +52012,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Single* v) + unsafe void VertexAttrib4(UInt32 index, Single* v) { unsafe { Delegates.glVertexAttrib4fvNV((UInt32)index, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Single* v) + unsafe void VertexAttrib4(Int32 index, Single* v) { { Delegates.glVertexAttrib4fvNV((UInt32)index, (Single*)v); @@ -51995,7 +52028,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Single[] v) + void VertexAttrib4(UInt32 index, [In, Out] Single[] v) { unsafe { @@ -52007,7 +52040,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Single[] v) + void VertexAttrib4(Int32 index, [In, Out] Single[] v) { unsafe { @@ -52020,7 +52053,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Single v) + void VertexAttrib4(UInt32 index, ref Single v) { unsafe { @@ -52032,7 +52065,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Single v) + void VertexAttrib4(Int32 index, ref Single v) { unsafe { @@ -52058,14 +52091,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Int16* v) + unsafe void VertexAttrib4(UInt32 index, Int16* v) { unsafe { Delegates.glVertexAttrib4svNV((UInt32)index, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Int16* v) + unsafe void VertexAttrib4(Int32 index, Int16* v) { { Delegates.glVertexAttrib4svNV((UInt32)index, (Int16*)v); @@ -52074,7 +52107,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Int16[] v) + void VertexAttrib4(UInt32 index, [In, Out] Int16[] v) { unsafe { @@ -52086,7 +52119,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Int16[] v) + void VertexAttrib4(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -52099,7 +52132,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Int16 v) + void VertexAttrib4(UInt32 index, ref Int16 v) { unsafe { @@ -52111,7 +52144,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Int16 v) + void VertexAttrib4(Int32 index, ref Int16 v) { unsafe { @@ -52137,14 +52170,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(UInt32 index, Byte* v) + unsafe void VertexAttrib4(UInt32 index, Byte* v) { unsafe { Delegates.glVertexAttrib4ubvNV((UInt32)index, (Byte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4v(Int32 index, Byte* v) + unsafe void VertexAttrib4(Int32 index, Byte* v) { { Delegates.glVertexAttrib4ubvNV((UInt32)index, (Byte*)v); @@ -52153,7 +52186,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, [In, Out] Byte[] v) + void VertexAttrib4(UInt32 index, [In, Out] Byte[] v) { unsafe { @@ -52165,7 +52198,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, [In, Out] Byte[] v) + void VertexAttrib4(Int32 index, [In, Out] Byte[] v) { unsafe { @@ -52178,7 +52211,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4v(UInt32 index, ref Byte v) + void VertexAttrib4(UInt32 index, ref Byte v) { unsafe { @@ -52190,7 +52223,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4v(Int32 index, ref Byte v) + void VertexAttrib4(Int32 index, ref Byte v) { unsafe { @@ -52203,14 +52236,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1v(UInt32 index, Int32 count, Double* v) + unsafe void VertexAttribs1(UInt32 index, Int32 count, Double* v) { unsafe { Delegates.glVertexAttribs1dvNV((UInt32)index, (Int32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1v(Int32 index, Int32 count, Double* v) + unsafe void VertexAttribs1(Int32 index, Int32 count, Double* v) { { Delegates.glVertexAttribs1dvNV((UInt32)index, (Int32)count, (Double*)v); @@ -52219,7 +52252,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1v(UInt32 index, Int32 count, [In, Out] Double[] v) + void VertexAttribs1(UInt32 index, Int32 count, [In, Out] Double[] v) { unsafe { @@ -52231,7 +52264,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1v(Int32 index, Int32 count, [In, Out] Double[] v) + void VertexAttribs1(Int32 index, Int32 count, [In, Out] Double[] v) { unsafe { @@ -52244,7 +52277,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1v(UInt32 index, Int32 count, ref Double v) + void VertexAttribs1(UInt32 index, Int32 count, ref Double v) { unsafe { @@ -52256,7 +52289,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1v(Int32 index, Int32 count, ref Double v) + void VertexAttribs1(Int32 index, Int32 count, ref Double v) { unsafe { @@ -52269,14 +52302,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1v(UInt32 index, Int32 count, Single* v) + unsafe void VertexAttribs1(UInt32 index, Int32 count, Single* v) { unsafe { Delegates.glVertexAttribs1fvNV((UInt32)index, (Int32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1v(Int32 index, Int32 count, Single* v) + unsafe void VertexAttribs1(Int32 index, Int32 count, Single* v) { { Delegates.glVertexAttribs1fvNV((UInt32)index, (Int32)count, (Single*)v); @@ -52285,7 +52318,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1v(UInt32 index, Int32 count, [In, Out] Single[] v) + void VertexAttribs1(UInt32 index, Int32 count, [In, Out] Single[] v) { unsafe { @@ -52297,7 +52330,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1v(Int32 index, Int32 count, [In, Out] Single[] v) + void VertexAttribs1(Int32 index, Int32 count, [In, Out] Single[] v) { unsafe { @@ -52310,7 +52343,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1v(UInt32 index, Int32 count, ref Single v) + void VertexAttribs1(UInt32 index, Int32 count, ref Single v) { unsafe { @@ -52322,7 +52355,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1v(Int32 index, Int32 count, ref Single v) + void VertexAttribs1(Int32 index, Int32 count, ref Single v) { unsafe { @@ -52335,14 +52368,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1v(UInt32 index, Int32 count, Int16* v) + unsafe void VertexAttribs1(UInt32 index, Int32 count, Int16* v) { unsafe { Delegates.glVertexAttribs1svNV((UInt32)index, (Int32)count, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1v(Int32 index, Int32 count, Int16* v) + unsafe void VertexAttribs1(Int32 index, Int32 count, Int16* v) { { Delegates.glVertexAttribs1svNV((UInt32)index, (Int32)count, (Int16*)v); @@ -52351,7 +52384,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1v(UInt32 index, Int32 count, [In, Out] Int16[] v) + void VertexAttribs1(UInt32 index, Int32 count, [In, Out] Int16[] v) { unsafe { @@ -52363,7 +52396,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1v(Int32 index, Int32 count, [In, Out] Int16[] v) + void VertexAttribs1(Int32 index, Int32 count, [In, Out] Int16[] v) { unsafe { @@ -52376,7 +52409,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1v(UInt32 index, Int32 count, ref Int16 v) + void VertexAttribs1(UInt32 index, Int32 count, ref Int16 v) { unsafe { @@ -52388,7 +52421,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1v(Int32 index, Int32 count, ref Int16 v) + void VertexAttribs1(Int32 index, Int32 count, ref Int16 v) { unsafe { @@ -52401,14 +52434,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2v(UInt32 index, Int32 count, Double* v) + unsafe void VertexAttribs2(UInt32 index, Int32 count, Double* v) { unsafe { Delegates.glVertexAttribs2dvNV((UInt32)index, (Int32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2v(Int32 index, Int32 count, Double* v) + unsafe void VertexAttribs2(Int32 index, Int32 count, Double* v) { { Delegates.glVertexAttribs2dvNV((UInt32)index, (Int32)count, (Double*)v); @@ -52417,7 +52450,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2v(UInt32 index, Int32 count, [In, Out] Double[] v) + void VertexAttribs2(UInt32 index, Int32 count, [In, Out] Double[] v) { unsafe { @@ -52429,7 +52462,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2v(Int32 index, Int32 count, [In, Out] Double[] v) + void VertexAttribs2(Int32 index, Int32 count, [In, Out] Double[] v) { unsafe { @@ -52442,7 +52475,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2v(UInt32 index, Int32 count, ref Double v) + void VertexAttribs2(UInt32 index, Int32 count, ref Double v) { unsafe { @@ -52454,7 +52487,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2v(Int32 index, Int32 count, ref Double v) + void VertexAttribs2(Int32 index, Int32 count, ref Double v) { unsafe { @@ -52467,14 +52500,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2v(UInt32 index, Int32 count, Single* v) + unsafe void VertexAttribs2(UInt32 index, Int32 count, Single* v) { unsafe { Delegates.glVertexAttribs2fvNV((UInt32)index, (Int32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2v(Int32 index, Int32 count, Single* v) + unsafe void VertexAttribs2(Int32 index, Int32 count, Single* v) { { Delegates.glVertexAttribs2fvNV((UInt32)index, (Int32)count, (Single*)v); @@ -52483,7 +52516,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2v(UInt32 index, Int32 count, [In, Out] Single[] v) + void VertexAttribs2(UInt32 index, Int32 count, [In, Out] Single[] v) { unsafe { @@ -52495,7 +52528,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2v(Int32 index, Int32 count, [In, Out] Single[] v) + void VertexAttribs2(Int32 index, Int32 count, [In, Out] Single[] v) { unsafe { @@ -52508,7 +52541,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2v(UInt32 index, Int32 count, ref Single v) + void VertexAttribs2(UInt32 index, Int32 count, ref Single v) { unsafe { @@ -52520,7 +52553,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2v(Int32 index, Int32 count, ref Single v) + void VertexAttribs2(Int32 index, Int32 count, ref Single v) { unsafe { @@ -52533,14 +52566,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2v(UInt32 index, Int32 count, Int16* v) + unsafe void VertexAttribs2(UInt32 index, Int32 count, Int16* v) { unsafe { Delegates.glVertexAttribs2svNV((UInt32)index, (Int32)count, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2v(Int32 index, Int32 count, Int16* v) + unsafe void VertexAttribs2(Int32 index, Int32 count, Int16* v) { { Delegates.glVertexAttribs2svNV((UInt32)index, (Int32)count, (Int16*)v); @@ -52549,7 +52582,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2v(UInt32 index, Int32 count, [In, Out] Int16[] v) + void VertexAttribs2(UInt32 index, Int32 count, [In, Out] Int16[] v) { unsafe { @@ -52561,7 +52594,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2v(Int32 index, Int32 count, [In, Out] Int16[] v) + void VertexAttribs2(Int32 index, Int32 count, [In, Out] Int16[] v) { unsafe { @@ -52574,7 +52607,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2v(UInt32 index, Int32 count, ref Int16 v) + void VertexAttribs2(UInt32 index, Int32 count, ref Int16 v) { unsafe { @@ -52586,7 +52619,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2v(Int32 index, Int32 count, ref Int16 v) + void VertexAttribs2(Int32 index, Int32 count, ref Int16 v) { unsafe { @@ -52599,14 +52632,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3v(UInt32 index, Int32 count, Double* v) + unsafe void VertexAttribs3(UInt32 index, Int32 count, Double* v) { unsafe { Delegates.glVertexAttribs3dvNV((UInt32)index, (Int32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3v(Int32 index, Int32 count, Double* v) + unsafe void VertexAttribs3(Int32 index, Int32 count, Double* v) { { Delegates.glVertexAttribs3dvNV((UInt32)index, (Int32)count, (Double*)v); @@ -52615,7 +52648,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3v(UInt32 index, Int32 count, [In, Out] Double[] v) + void VertexAttribs3(UInt32 index, Int32 count, [In, Out] Double[] v) { unsafe { @@ -52627,7 +52660,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3v(Int32 index, Int32 count, [In, Out] Double[] v) + void VertexAttribs3(Int32 index, Int32 count, [In, Out] Double[] v) { unsafe { @@ -52640,7 +52673,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3v(UInt32 index, Int32 count, ref Double v) + void VertexAttribs3(UInt32 index, Int32 count, ref Double v) { unsafe { @@ -52652,7 +52685,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3v(Int32 index, Int32 count, ref Double v) + void VertexAttribs3(Int32 index, Int32 count, ref Double v) { unsafe { @@ -52665,14 +52698,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3v(UInt32 index, Int32 count, Single* v) + unsafe void VertexAttribs3(UInt32 index, Int32 count, Single* v) { unsafe { Delegates.glVertexAttribs3fvNV((UInt32)index, (Int32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3v(Int32 index, Int32 count, Single* v) + unsafe void VertexAttribs3(Int32 index, Int32 count, Single* v) { { Delegates.glVertexAttribs3fvNV((UInt32)index, (Int32)count, (Single*)v); @@ -52681,7 +52714,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3v(UInt32 index, Int32 count, [In, Out] Single[] v) + void VertexAttribs3(UInt32 index, Int32 count, [In, Out] Single[] v) { unsafe { @@ -52693,7 +52726,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3v(Int32 index, Int32 count, [In, Out] Single[] v) + void VertexAttribs3(Int32 index, Int32 count, [In, Out] Single[] v) { unsafe { @@ -52706,7 +52739,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3v(UInt32 index, Int32 count, ref Single v) + void VertexAttribs3(UInt32 index, Int32 count, ref Single v) { unsafe { @@ -52718,7 +52751,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3v(Int32 index, Int32 count, ref Single v) + void VertexAttribs3(Int32 index, Int32 count, ref Single v) { unsafe { @@ -52731,14 +52764,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3v(UInt32 index, Int32 count, Int16* v) + unsafe void VertexAttribs3(UInt32 index, Int32 count, Int16* v) { unsafe { Delegates.glVertexAttribs3svNV((UInt32)index, (Int32)count, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3v(Int32 index, Int32 count, Int16* v) + unsafe void VertexAttribs3(Int32 index, Int32 count, Int16* v) { { Delegates.glVertexAttribs3svNV((UInt32)index, (Int32)count, (Int16*)v); @@ -52747,7 +52780,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3v(UInt32 index, Int32 count, [In, Out] Int16[] v) + void VertexAttribs3(UInt32 index, Int32 count, [In, Out] Int16[] v) { unsafe { @@ -52759,7 +52792,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3v(Int32 index, Int32 count, [In, Out] Int16[] v) + void VertexAttribs3(Int32 index, Int32 count, [In, Out] Int16[] v) { unsafe { @@ -52772,7 +52805,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3v(UInt32 index, Int32 count, ref Int16 v) + void VertexAttribs3(UInt32 index, Int32 count, ref Int16 v) { unsafe { @@ -52784,7 +52817,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3v(Int32 index, Int32 count, ref Int16 v) + void VertexAttribs3(Int32 index, Int32 count, ref Int16 v) { unsafe { @@ -52797,14 +52830,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4v(UInt32 index, Int32 count, Double* v) + unsafe void VertexAttribs4(UInt32 index, Int32 count, Double* v) { unsafe { Delegates.glVertexAttribs4dvNV((UInt32)index, (Int32)count, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4v(Int32 index, Int32 count, Double* v) + unsafe void VertexAttribs4(Int32 index, Int32 count, Double* v) { { Delegates.glVertexAttribs4dvNV((UInt32)index, (Int32)count, (Double*)v); @@ -52813,7 +52846,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4v(UInt32 index, Int32 count, [In, Out] Double[] v) + void VertexAttribs4(UInt32 index, Int32 count, [In, Out] Double[] v) { unsafe { @@ -52825,7 +52858,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4v(Int32 index, Int32 count, [In, Out] Double[] v) + void VertexAttribs4(Int32 index, Int32 count, [In, Out] Double[] v) { unsafe { @@ -52838,7 +52871,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4v(UInt32 index, Int32 count, ref Double v) + void VertexAttribs4(UInt32 index, Int32 count, ref Double v) { unsafe { @@ -52850,7 +52883,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4v(Int32 index, Int32 count, ref Double v) + void VertexAttribs4(Int32 index, Int32 count, ref Double v) { unsafe { @@ -52863,14 +52896,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4v(UInt32 index, Int32 count, Single* v) + unsafe void VertexAttribs4(UInt32 index, Int32 count, Single* v) { unsafe { Delegates.glVertexAttribs4fvNV((UInt32)index, (Int32)count, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4v(Int32 index, Int32 count, Single* v) + unsafe void VertexAttribs4(Int32 index, Int32 count, Single* v) { { Delegates.glVertexAttribs4fvNV((UInt32)index, (Int32)count, (Single*)v); @@ -52879,7 +52912,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4v(UInt32 index, Int32 count, [In, Out] Single[] v) + void VertexAttribs4(UInt32 index, Int32 count, [In, Out] Single[] v) { unsafe { @@ -52891,7 +52924,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4v(Int32 index, Int32 count, [In, Out] Single[] v) + void VertexAttribs4(Int32 index, Int32 count, [In, Out] Single[] v) { unsafe { @@ -52904,7 +52937,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4v(UInt32 index, Int32 count, ref Single v) + void VertexAttribs4(UInt32 index, Int32 count, ref Single v) { unsafe { @@ -52916,7 +52949,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4v(Int32 index, Int32 count, ref Single v) + void VertexAttribs4(Int32 index, Int32 count, ref Single v) { unsafe { @@ -52929,14 +52962,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4v(UInt32 index, Int32 count, Int16* v) + unsafe void VertexAttribs4(UInt32 index, Int32 count, Int16* v) { unsafe { Delegates.glVertexAttribs4svNV((UInt32)index, (Int32)count, (Int16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4v(Int32 index, Int32 count, Int16* v) + unsafe void VertexAttribs4(Int32 index, Int32 count, Int16* v) { { Delegates.glVertexAttribs4svNV((UInt32)index, (Int32)count, (Int16*)v); @@ -52945,7 +52978,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4v(UInt32 index, Int32 count, [In, Out] Int16[] v) + void VertexAttribs4(UInt32 index, Int32 count, [In, Out] Int16[] v) { unsafe { @@ -52957,7 +52990,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4v(Int32 index, Int32 count, [In, Out] Int16[] v) + void VertexAttribs4(Int32 index, Int32 count, [In, Out] Int16[] v) { unsafe { @@ -52970,7 +53003,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4v(UInt32 index, Int32 count, ref Int16 v) + void VertexAttribs4(UInt32 index, Int32 count, ref Int16 v) { unsafe { @@ -52982,7 +53015,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4v(Int32 index, Int32 count, ref Int16 v) + void VertexAttribs4(Int32 index, Int32 count, ref Int16 v) { unsafe { @@ -52995,14 +53028,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4v(UInt32 index, Int32 count, Byte* v) + unsafe void VertexAttribs4(UInt32 index, Int32 count, Byte* v) { unsafe { Delegates.glVertexAttribs4ubvNV((UInt32)index, (Int32)count, (Byte*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4v(Int32 index, Int32 count, Byte* v) + unsafe void VertexAttribs4(Int32 index, Int32 count, Byte* v) { { Delegates.glVertexAttribs4ubvNV((UInt32)index, (Int32)count, (Byte*)v); @@ -53011,7 +53044,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4v(UInt32 index, Int32 count, [In, Out] Byte[] v) + void VertexAttribs4(UInt32 index, Int32 count, [In, Out] Byte[] v) { unsafe { @@ -53023,7 +53056,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4v(Int32 index, Int32 count, [In, Out] Byte[] v) + void VertexAttribs4(Int32 index, Int32 count, [In, Out] Byte[] v) { unsafe { @@ -53036,7 +53069,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4v(UInt32 index, Int32 count, ref Byte v) + void VertexAttribs4(UInt32 index, Int32 count, ref Byte v) { unsafe { @@ -53048,7 +53081,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4v(Int32 index, Int32 count, ref Byte v) + void VertexAttribs4(Int32 index, Int32 count, ref Byte v) { unsafe { @@ -53061,14 +53094,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenOcclusionQueriesNV(Int32 n, [Out] UInt32* ids) + unsafe void GenOcclusionQueries(Int32 n, [Out] UInt32* ids) { unsafe { Delegates.glGenOcclusionQueriesNV((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void GenOcclusionQueriesNV(Int32 n, [Out] Int32* ids) + unsafe void GenOcclusionQueries(Int32 n, [Out] Int32* ids) { ids = default(Int32*); { @@ -53078,7 +53111,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenOcclusionQueriesNV(Int32 n, [In, Out] UInt32[] ids) + void GenOcclusionQueries(Int32 n, [In, Out] UInt32[] ids) { unsafe { @@ -53090,7 +53123,7 @@ namespace OpenTK.OpenGL } public static - void GenOcclusionQueriesNV(Int32 n, [In, Out] Int32[] ids) + void GenOcclusionQueries(Int32 n, [In, Out] Int32[] ids) { unsafe { @@ -53103,7 +53136,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenOcclusionQueriesNV(Int32 n, [Out] out UInt32 ids) + void GenOcclusionQueries(Int32 n, [Out] out UInt32 ids) { ids = default(UInt32); unsafe @@ -53117,7 +53150,7 @@ namespace OpenTK.OpenGL } public static - void GenOcclusionQueriesNV(Int32 n, [Out] out Int32 ids) + void GenOcclusionQueries(Int32 n, [Out] out Int32 ids) { ids = default(Int32); unsafe @@ -53132,14 +53165,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteOcclusionQueriesNV(Int32 n, UInt32* ids) + unsafe void DeleteOcclusionQueries(Int32 n, UInt32* ids) { unsafe { Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids); } } [System.CLSCompliant(false)] public static - unsafe void DeleteOcclusionQueriesNV(Int32 n, Int32* ids) + unsafe void DeleteOcclusionQueries(Int32 n, Int32* ids) { { Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids); @@ -53148,7 +53181,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteOcclusionQueriesNV(Int32 n, [In, Out] UInt32[] ids) + void DeleteOcclusionQueries(Int32 n, [In, Out] UInt32[] ids) { unsafe { @@ -53160,7 +53193,7 @@ namespace OpenTK.OpenGL } public static - void DeleteOcclusionQueriesNV(Int32 n, [In, Out] Int32[] ids) + void DeleteOcclusionQueries(Int32 n, [In, Out] Int32[] ids) { unsafe { @@ -53173,7 +53206,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteOcclusionQueriesNV(Int32 n, ref UInt32 ids) + void DeleteOcclusionQueries(Int32 n, ref UInt32 ids) { unsafe { @@ -53185,7 +53218,7 @@ namespace OpenTK.OpenGL } public static - void DeleteOcclusionQueriesNV(Int32 n, ref Int32 ids) + void DeleteOcclusionQueries(Int32 n, ref Int32 ids) { unsafe { @@ -53198,32 +53231,32 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsOcclusionQueryNV(UInt32 id) + Boolean IsOcclusionQuery(UInt32 id) { return Delegates.glIsOcclusionQueryNV((UInt32)id); } public static - Boolean IsOcclusionQueryNV(Int32 id) + Boolean IsOcclusionQuery(Int32 id) { return Delegates.glIsOcclusionQueryNV((UInt32)id); } [System.CLSCompliant(false)] public static - void BeginOcclusionQueryNV(UInt32 id) + void BeginOcclusionQuery(UInt32 id) { Delegates.glBeginOcclusionQueryNV((UInt32)id); } public static - void BeginOcclusionQueryNV(Int32 id) + void BeginOcclusionQuery(Int32 id) { Delegates.glBeginOcclusionQueryNV((UInt32)id); } public static - void EndOcclusionQueryNV() + void EndOcclusionQuery() { Delegates.glEndOcclusionQueryNV(); } @@ -53335,7 +53368,7 @@ namespace OpenTK.OpenGL } public static - void PointParameteriNV(GL.Enums.NV_point_sprite pname, Int32 param) + void PointParameteri(GL.Enums.NV_point_sprite pname, Int32 param) { Delegates.glPointParameteriNV((GL.Enums.NV_point_sprite)pname, (Int32)param); } @@ -53505,14 +53538,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, Single* v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single* v) { unsafe { Delegates.glProgramNamedParameter4fvNV((UInt32)id, (Int32)len, (Byte*)name, (Single*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, Single* v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single* v) { { Delegates.glProgramNamedParameter4fvNV((UInt32)id, (Int32)len, (Byte*)name, (Single*)v); @@ -53521,7 +53554,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, [In, Out] Single[] v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -53531,7 +53564,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, [In, Out] Single[] v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, [In, Out] Single[] v) { fixed (Single* v_ptr = v) { @@ -53541,7 +53574,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, ref Single v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, ref Single v) { fixed (Single* v_ptr = &v) { @@ -53551,7 +53584,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, ref Single v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, ref Single v) { fixed (Single* v_ptr = &v) { @@ -53561,7 +53594,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, [In, Out] Byte[] name, Single* v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [In, Out] Byte[] name, Single* v) { fixed (Byte* name_ptr = name) { @@ -53571,7 +53604,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, [In, Out] Byte[] name, Single* v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [In, Out] Byte[] name, Single* v) { fixed (Byte* name_ptr = name) { @@ -53581,7 +53614,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4v(UInt32 id, Int32 len, [In, Out] Byte[] name, [In, Out] Single[] v) + void ProgramNamedParameter4(UInt32 id, Int32 len, [In, Out] Byte[] name, [In, Out] Single[] v) { unsafe { @@ -53594,7 +53627,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4v(Int32 id, Int32 len, [In, Out] Byte[] name, [In, Out] Single[] v) + void ProgramNamedParameter4(Int32 id, Int32 len, [In, Out] Byte[] name, [In, Out] Single[] v) { unsafe { @@ -53608,7 +53641,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4v(UInt32 id, Int32 len, [In, Out] Byte[] name, ref Single v) + void ProgramNamedParameter4(UInt32 id, Int32 len, [In, Out] Byte[] name, ref Single v) { unsafe { @@ -53621,7 +53654,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4v(Int32 id, Int32 len, [In, Out] Byte[] name, ref Single v) + void ProgramNamedParameter4(Int32 id, Int32 len, [In, Out] Byte[] name, ref Single v) { unsafe { @@ -53635,7 +53668,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, Single* v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Single* v) { fixed (Byte* name_ptr = &name) { @@ -53645,7 +53678,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, Single* v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Single* v) { fixed (Byte* name_ptr = &name) { @@ -53655,7 +53688,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, [In, Out] Single[] v) + void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, [In, Out] Single[] v) { unsafe { @@ -53668,7 +53701,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, [In, Out] Single[] v) + void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, [In, Out] Single[] v) { unsafe { @@ -53682,7 +53715,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, ref Single v) + void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, ref Single v) { unsafe { @@ -53695,7 +53728,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, ref Single v) + void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, ref Single v) { unsafe { @@ -53709,14 +53742,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, Double* v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double* v) { unsafe { Delegates.glProgramNamedParameter4dvNV((UInt32)id, (Int32)len, (Byte*)name, (Double*)v); } } [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, Double* v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double* v) { { Delegates.glProgramNamedParameter4dvNV((UInt32)id, (Int32)len, (Byte*)name, (Double*)v); @@ -53725,7 +53758,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, [In, Out] Double[] v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, [In, Out] Double[] v) { fixed (Double* v_ptr = v) { @@ -53735,7 +53768,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, [In, Out] Double[] v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, [In, Out] Double[] v) { fixed (Double* v_ptr = v) { @@ -53745,7 +53778,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, Byte* name, ref Double v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, ref Double v) { fixed (Double* v_ptr = &v) { @@ -53755,7 +53788,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, Byte* name, ref Double v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, ref Double v) { fixed (Double* v_ptr = &v) { @@ -53765,7 +53798,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, [In, Out] Byte[] name, Double* v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [In, Out] Byte[] name, Double* v) { fixed (Byte* name_ptr = name) { @@ -53775,7 +53808,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, [In, Out] Byte[] name, Double* v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [In, Out] Byte[] name, Double* v) { fixed (Byte* name_ptr = name) { @@ -53785,7 +53818,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4v(UInt32 id, Int32 len, [In, Out] Byte[] name, [In, Out] Double[] v) + void ProgramNamedParameter4(UInt32 id, Int32 len, [In, Out] Byte[] name, [In, Out] Double[] v) { unsafe { @@ -53798,7 +53831,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4v(Int32 id, Int32 len, [In, Out] Byte[] name, [In, Out] Double[] v) + void ProgramNamedParameter4(Int32 id, Int32 len, [In, Out] Byte[] name, [In, Out] Double[] v) { unsafe { @@ -53812,7 +53845,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4v(UInt32 id, Int32 len, [In, Out] Byte[] name, ref Double v) + void ProgramNamedParameter4(UInt32 id, Int32 len, [In, Out] Byte[] name, ref Double v) { unsafe { @@ -53825,7 +53858,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4v(Int32 id, Int32 len, [In, Out] Byte[] name, ref Double v) + void ProgramNamedParameter4(Int32 id, Int32 len, [In, Out] Byte[] name, ref Double v) { unsafe { @@ -53839,7 +53872,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, Double* v) + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Double* v) { fixed (Byte* name_ptr = &name) { @@ -53849,7 +53882,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, Double* v) + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Double* v) { fixed (Byte* name_ptr = &name) { @@ -53859,7 +53892,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, [In, Out] Double[] v) + void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, [In, Out] Double[] v) { unsafe { @@ -53872,7 +53905,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, [In, Out] Double[] v) + void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, [In, Out] Double[] v) { unsafe { @@ -53886,7 +53919,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramNamedParameter4v(UInt32 id, Int32 len, ref Byte name, ref Double v) + void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, ref Double v) { unsafe { @@ -53899,7 +53932,7 @@ namespace OpenTK.OpenGL } public static - void ProgramNamedParameter4v(Int32 id, Int32 len, ref Byte name, ref Double v) + void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, ref Double v) { unsafe { @@ -54355,27 +54388,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Vertex2hNV(UInt16 x, UInt16 y) + void Vertex2h(UInt16 x, UInt16 y) { Delegates.glVertex2hNV((UInt16)x, (UInt16)y); } public static - void Vertex2hNV(Int16 x, Int16 y) + void Vertex2h(Int16 x, Int16 y) { Delegates.glVertex2hNV((UInt16)x, (UInt16)y); } [System.CLSCompliant(false)] public static - unsafe void Vertex2hvNV(UInt16* v) + unsafe void Vertex2hv(UInt16* v) { unsafe { Delegates.glVertex2hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void Vertex2hvNV(Int16* v) + unsafe void Vertex2hv(Int16* v) { { Delegates.glVertex2hvNV((UInt16*)v); @@ -54384,7 +54417,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Vertex2hvNV([In, Out] UInt16[] v) + void Vertex2hv([In, Out] UInt16[] v) { unsafe { @@ -54396,7 +54429,7 @@ namespace OpenTK.OpenGL } public static - void Vertex2hvNV([In, Out] Int16[] v) + void Vertex2hv([In, Out] Int16[] v) { unsafe { @@ -54409,7 +54442,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Vertex2hvNV(ref UInt16 v) + void Vertex2hv(ref UInt16 v) { unsafe { @@ -54421,7 +54454,7 @@ namespace OpenTK.OpenGL } public static - void Vertex2hvNV(ref Int16 v) + void Vertex2hv(ref Int16 v) { unsafe { @@ -54434,27 +54467,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Vertex3hNV(UInt16 x, UInt16 y, UInt16 z) + void Vertex3h(UInt16 x, UInt16 y, UInt16 z) { Delegates.glVertex3hNV((UInt16)x, (UInt16)y, (UInt16)z); } public static - void Vertex3hNV(Int16 x, Int16 y, Int16 z) + void Vertex3h(Int16 x, Int16 y, Int16 z) { Delegates.glVertex3hNV((UInt16)x, (UInt16)y, (UInt16)z); } [System.CLSCompliant(false)] public static - unsafe void Vertex3hvNV(UInt16* v) + unsafe void Vertex3hv(UInt16* v) { unsafe { Delegates.glVertex3hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void Vertex3hvNV(Int16* v) + unsafe void Vertex3hv(Int16* v) { { Delegates.glVertex3hvNV((UInt16*)v); @@ -54463,7 +54496,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Vertex3hvNV([In, Out] UInt16[] v) + void Vertex3hv([In, Out] UInt16[] v) { unsafe { @@ -54475,7 +54508,7 @@ namespace OpenTK.OpenGL } public static - void Vertex3hvNV([In, Out] Int16[] v) + void Vertex3hv([In, Out] Int16[] v) { unsafe { @@ -54488,7 +54521,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Vertex3hvNV(ref UInt16 v) + void Vertex3hv(ref UInt16 v) { unsafe { @@ -54500,7 +54533,7 @@ namespace OpenTK.OpenGL } public static - void Vertex3hvNV(ref Int16 v) + void Vertex3hv(ref Int16 v) { unsafe { @@ -54513,27 +54546,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Vertex4hNV(UInt16 x, UInt16 y, UInt16 z, UInt16 w) + void Vertex4h(UInt16 x, UInt16 y, UInt16 z, UInt16 w) { Delegates.glVertex4hNV((UInt16)x, (UInt16)y, (UInt16)z, (UInt16)w); } public static - void Vertex4hNV(Int16 x, Int16 y, Int16 z, Int16 w) + void Vertex4h(Int16 x, Int16 y, Int16 z, Int16 w) { Delegates.glVertex4hNV((UInt16)x, (UInt16)y, (UInt16)z, (UInt16)w); } [System.CLSCompliant(false)] public static - unsafe void Vertex4hvNV(UInt16* v) + unsafe void Vertex4hv(UInt16* v) { unsafe { Delegates.glVertex4hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void Vertex4hvNV(Int16* v) + unsafe void Vertex4hv(Int16* v) { { Delegates.glVertex4hvNV((UInt16*)v); @@ -54542,7 +54575,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Vertex4hvNV([In, Out] UInt16[] v) + void Vertex4hv([In, Out] UInt16[] v) { unsafe { @@ -54554,7 +54587,7 @@ namespace OpenTK.OpenGL } public static - void Vertex4hvNV([In, Out] Int16[] v) + void Vertex4hv([In, Out] Int16[] v) { unsafe { @@ -54567,7 +54600,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Vertex4hvNV(ref UInt16 v) + void Vertex4hv(ref UInt16 v) { unsafe { @@ -54579,7 +54612,7 @@ namespace OpenTK.OpenGL } public static - void Vertex4hvNV(ref Int16 v) + void Vertex4hv(ref Int16 v) { unsafe { @@ -54592,27 +54625,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Normal3hNV(UInt16 nx, UInt16 ny, UInt16 nz) + void Normal3h(UInt16 nx, UInt16 ny, UInt16 nz) { Delegates.glNormal3hNV((UInt16)nx, (UInt16)ny, (UInt16)nz); } public static - void Normal3hNV(Int16 nx, Int16 ny, Int16 nz) + void Normal3h(Int16 nx, Int16 ny, Int16 nz) { Delegates.glNormal3hNV((UInt16)nx, (UInt16)ny, (UInt16)nz); } [System.CLSCompliant(false)] public static - unsafe void Normal3hvNV(UInt16* v) + unsafe void Normal3hv(UInt16* v) { unsafe { Delegates.glNormal3hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void Normal3hvNV(Int16* v) + unsafe void Normal3hv(Int16* v) { { Delegates.glNormal3hvNV((UInt16*)v); @@ -54621,7 +54654,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Normal3hvNV([In, Out] UInt16[] v) + void Normal3hv([In, Out] UInt16[] v) { unsafe { @@ -54633,7 +54666,7 @@ namespace OpenTK.OpenGL } public static - void Normal3hvNV([In, Out] Int16[] v) + void Normal3hv([In, Out] Int16[] v) { unsafe { @@ -54646,7 +54679,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Normal3hvNV(ref UInt16 v) + void Normal3hv(ref UInt16 v) { unsafe { @@ -54658,7 +54691,7 @@ namespace OpenTK.OpenGL } public static - void Normal3hvNV(ref Int16 v) + void Normal3hv(ref Int16 v) { unsafe { @@ -54671,27 +54704,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color3hNV(UInt16 red, UInt16 green, UInt16 blue) + void Color3h(UInt16 red, UInt16 green, UInt16 blue) { Delegates.glColor3hNV((UInt16)red, (UInt16)green, (UInt16)blue); } public static - void Color3hNV(Int16 red, Int16 green, Int16 blue) + void Color3h(Int16 red, Int16 green, Int16 blue) { Delegates.glColor3hNV((UInt16)red, (UInt16)green, (UInt16)blue); } [System.CLSCompliant(false)] public static - unsafe void Color3hvNV(UInt16* v) + unsafe void Color3hv(UInt16* v) { unsafe { Delegates.glColor3hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void Color3hvNV(Int16* v) + unsafe void Color3hv(Int16* v) { { Delegates.glColor3hvNV((UInt16*)v); @@ -54700,7 +54733,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color3hvNV([In, Out] UInt16[] v) + void Color3hv([In, Out] UInt16[] v) { unsafe { @@ -54712,7 +54745,7 @@ namespace OpenTK.OpenGL } public static - void Color3hvNV([In, Out] Int16[] v) + void Color3hv([In, Out] Int16[] v) { unsafe { @@ -54725,7 +54758,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color3hvNV(ref UInt16 v) + void Color3hv(ref UInt16 v) { unsafe { @@ -54737,7 +54770,7 @@ namespace OpenTK.OpenGL } public static - void Color3hvNV(ref Int16 v) + void Color3hv(ref Int16 v) { unsafe { @@ -54750,27 +54783,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color4hNV(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha) + void Color4h(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha) { Delegates.glColor4hNV((UInt16)red, (UInt16)green, (UInt16)blue, (UInt16)alpha); } public static - void Color4hNV(Int16 red, Int16 green, Int16 blue, Int16 alpha) + void Color4h(Int16 red, Int16 green, Int16 blue, Int16 alpha) { Delegates.glColor4hNV((UInt16)red, (UInt16)green, (UInt16)blue, (UInt16)alpha); } [System.CLSCompliant(false)] public static - unsafe void Color4hvNV(UInt16* v) + unsafe void Color4hv(UInt16* v) { unsafe { Delegates.glColor4hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void Color4hvNV(Int16* v) + unsafe void Color4hv(Int16* v) { { Delegates.glColor4hvNV((UInt16*)v); @@ -54779,7 +54812,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color4hvNV([In, Out] UInt16[] v) + void Color4hv([In, Out] UInt16[] v) { unsafe { @@ -54791,7 +54824,7 @@ namespace OpenTK.OpenGL } public static - void Color4hvNV([In, Out] Int16[] v) + void Color4hv([In, Out] Int16[] v) { unsafe { @@ -54804,7 +54837,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void Color4hvNV(ref UInt16 v) + void Color4hv(ref UInt16 v) { unsafe { @@ -54816,7 +54849,7 @@ namespace OpenTK.OpenGL } public static - void Color4hvNV(ref Int16 v) + void Color4hv(ref Int16 v) { unsafe { @@ -54829,27 +54862,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord1hNV(UInt16 s) + void TexCoord1h(UInt16 s) { Delegates.glTexCoord1hNV((UInt16)s); } public static - void TexCoord1hNV(Int16 s) + void TexCoord1h(Int16 s) { Delegates.glTexCoord1hNV((UInt16)s); } [System.CLSCompliant(false)] public static - unsafe void TexCoord1hvNV(UInt16* v) + unsafe void TexCoord1hv(UInt16* v) { unsafe { Delegates.glTexCoord1hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord1hvNV(Int16* v) + unsafe void TexCoord1hv(Int16* v) { { Delegates.glTexCoord1hvNV((UInt16*)v); @@ -54858,7 +54891,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord1hvNV([In, Out] UInt16[] v) + void TexCoord1hv([In, Out] UInt16[] v) { unsafe { @@ -54870,7 +54903,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1hvNV([In, Out] Int16[] v) + void TexCoord1hv([In, Out] Int16[] v) { unsafe { @@ -54883,7 +54916,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord1hvNV(ref UInt16 v) + void TexCoord1hv(ref UInt16 v) { unsafe { @@ -54895,7 +54928,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord1hvNV(ref Int16 v) + void TexCoord1hv(ref Int16 v) { unsafe { @@ -54908,27 +54941,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord2hNV(UInt16 s, UInt16 t) + void TexCoord2h(UInt16 s, UInt16 t) { Delegates.glTexCoord2hNV((UInt16)s, (UInt16)t); } public static - void TexCoord2hNV(Int16 s, Int16 t) + void TexCoord2h(Int16 s, Int16 t) { Delegates.glTexCoord2hNV((UInt16)s, (UInt16)t); } [System.CLSCompliant(false)] public static - unsafe void TexCoord2hvNV(UInt16* v) + unsafe void TexCoord2hv(UInt16* v) { unsafe { Delegates.glTexCoord2hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord2hvNV(Int16* v) + unsafe void TexCoord2hv(Int16* v) { { Delegates.glTexCoord2hvNV((UInt16*)v); @@ -54937,7 +54970,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord2hvNV([In, Out] UInt16[] v) + void TexCoord2hv([In, Out] UInt16[] v) { unsafe { @@ -54949,7 +54982,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2hvNV([In, Out] Int16[] v) + void TexCoord2hv([In, Out] Int16[] v) { unsafe { @@ -54962,7 +54995,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord2hvNV(ref UInt16 v) + void TexCoord2hv(ref UInt16 v) { unsafe { @@ -54974,7 +55007,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord2hvNV(ref Int16 v) + void TexCoord2hv(ref Int16 v) { unsafe { @@ -54987,27 +55020,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord3hNV(UInt16 s, UInt16 t, UInt16 r) + void TexCoord3h(UInt16 s, UInt16 t, UInt16 r) { Delegates.glTexCoord3hNV((UInt16)s, (UInt16)t, (UInt16)r); } public static - void TexCoord3hNV(Int16 s, Int16 t, Int16 r) + void TexCoord3h(Int16 s, Int16 t, Int16 r) { Delegates.glTexCoord3hNV((UInt16)s, (UInt16)t, (UInt16)r); } [System.CLSCompliant(false)] public static - unsafe void TexCoord3hvNV(UInt16* v) + unsafe void TexCoord3hv(UInt16* v) { unsafe { Delegates.glTexCoord3hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord3hvNV(Int16* v) + unsafe void TexCoord3hv(Int16* v) { { Delegates.glTexCoord3hvNV((UInt16*)v); @@ -55016,7 +55049,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord3hvNV([In, Out] UInt16[] v) + void TexCoord3hv([In, Out] UInt16[] v) { unsafe { @@ -55028,7 +55061,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord3hvNV([In, Out] Int16[] v) + void TexCoord3hv([In, Out] Int16[] v) { unsafe { @@ -55041,7 +55074,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord3hvNV(ref UInt16 v) + void TexCoord3hv(ref UInt16 v) { unsafe { @@ -55053,7 +55086,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord3hvNV(ref Int16 v) + void TexCoord3hv(ref Int16 v) { unsafe { @@ -55066,27 +55099,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord4hNV(UInt16 s, UInt16 t, UInt16 r, UInt16 q) + void TexCoord4h(UInt16 s, UInt16 t, UInt16 r, UInt16 q) { Delegates.glTexCoord4hNV((UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); } public static - void TexCoord4hNV(Int16 s, Int16 t, Int16 r, Int16 q) + void TexCoord4h(Int16 s, Int16 t, Int16 r, Int16 q) { Delegates.glTexCoord4hNV((UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); } [System.CLSCompliant(false)] public static - unsafe void TexCoord4hvNV(UInt16* v) + unsafe void TexCoord4hv(UInt16* v) { unsafe { Delegates.glTexCoord4hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void TexCoord4hvNV(Int16* v) + unsafe void TexCoord4hv(Int16* v) { { Delegates.glTexCoord4hvNV((UInt16*)v); @@ -55095,7 +55128,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord4hvNV([In, Out] UInt16[] v) + void TexCoord4hv([In, Out] UInt16[] v) { unsafe { @@ -55107,7 +55140,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4hvNV([In, Out] Int16[] v) + void TexCoord4hv([In, Out] Int16[] v) { unsafe { @@ -55120,7 +55153,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TexCoord4hvNV(ref UInt16 v) + void TexCoord4hv(ref UInt16 v) { unsafe { @@ -55132,7 +55165,7 @@ namespace OpenTK.OpenGL } public static - void TexCoord4hvNV(ref Int16 v) + void TexCoord4hv(ref Int16 v) { unsafe { @@ -55145,27 +55178,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord1hNV(GL.Enums.NV_half_float target, UInt16 s) + void MultiTexCoord1h(GL.Enums.NV_half_float target, UInt16 s) { Delegates.glMultiTexCoord1hNV((GL.Enums.NV_half_float)target, (UInt16)s); } public static - void MultiTexCoord1hNV(GL.Enums.NV_half_float target, Int16 s) + void MultiTexCoord1h(GL.Enums.NV_half_float target, Int16 s) { Delegates.glMultiTexCoord1hNV((GL.Enums.NV_half_float)target, (UInt16)s); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1hvNV(GL.Enums.NV_half_float target, UInt16* v) + unsafe void MultiTexCoord1hv(GL.Enums.NV_half_float target, UInt16* v) { unsafe { Delegates.glMultiTexCoord1hvNV((GL.Enums.NV_half_float)target, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord1hvNV(GL.Enums.NV_half_float target, Int16* v) + unsafe void MultiTexCoord1hv(GL.Enums.NV_half_float target, Int16* v) { { Delegates.glMultiTexCoord1hvNV((GL.Enums.NV_half_float)target, (UInt16*)v); @@ -55174,7 +55207,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord1hvNV(GL.Enums.NV_half_float target, [In, Out] UInt16[] v) + void MultiTexCoord1hv(GL.Enums.NV_half_float target, [In, Out] UInt16[] v) { unsafe { @@ -55186,7 +55219,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1hvNV(GL.Enums.NV_half_float target, [In, Out] Int16[] v) + void MultiTexCoord1hv(GL.Enums.NV_half_float target, [In, Out] Int16[] v) { unsafe { @@ -55199,7 +55232,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord1hvNV(GL.Enums.NV_half_float target, ref UInt16 v) + void MultiTexCoord1hv(GL.Enums.NV_half_float target, ref UInt16 v) { unsafe { @@ -55211,7 +55244,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord1hvNV(GL.Enums.NV_half_float target, ref Int16 v) + void MultiTexCoord1hv(GL.Enums.NV_half_float target, ref Int16 v) { unsafe { @@ -55224,27 +55257,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord2hNV(GL.Enums.NV_half_float target, UInt16 s, UInt16 t) + void MultiTexCoord2h(GL.Enums.NV_half_float target, UInt16 s, UInt16 t) { Delegates.glMultiTexCoord2hNV((GL.Enums.NV_half_float)target, (UInt16)s, (UInt16)t); } public static - void MultiTexCoord2hNV(GL.Enums.NV_half_float target, Int16 s, Int16 t) + void MultiTexCoord2h(GL.Enums.NV_half_float target, Int16 s, Int16 t) { Delegates.glMultiTexCoord2hNV((GL.Enums.NV_half_float)target, (UInt16)s, (UInt16)t); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2hvNV(GL.Enums.NV_half_float target, UInt16* v) + unsafe void MultiTexCoord2hv(GL.Enums.NV_half_float target, UInt16* v) { unsafe { Delegates.glMultiTexCoord2hvNV((GL.Enums.NV_half_float)target, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord2hvNV(GL.Enums.NV_half_float target, Int16* v) + unsafe void MultiTexCoord2hv(GL.Enums.NV_half_float target, Int16* v) { { Delegates.glMultiTexCoord2hvNV((GL.Enums.NV_half_float)target, (UInt16*)v); @@ -55253,7 +55286,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord2hvNV(GL.Enums.NV_half_float target, [In, Out] UInt16[] v) + void MultiTexCoord2hv(GL.Enums.NV_half_float target, [In, Out] UInt16[] v) { unsafe { @@ -55265,7 +55298,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2hvNV(GL.Enums.NV_half_float target, [In, Out] Int16[] v) + void MultiTexCoord2hv(GL.Enums.NV_half_float target, [In, Out] Int16[] v) { unsafe { @@ -55278,7 +55311,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord2hvNV(GL.Enums.NV_half_float target, ref UInt16 v) + void MultiTexCoord2hv(GL.Enums.NV_half_float target, ref UInt16 v) { unsafe { @@ -55290,7 +55323,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord2hvNV(GL.Enums.NV_half_float target, ref Int16 v) + void MultiTexCoord2hv(GL.Enums.NV_half_float target, ref Int16 v) { unsafe { @@ -55303,27 +55336,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord3hNV(GL.Enums.NV_half_float target, UInt16 s, UInt16 t, UInt16 r) + void MultiTexCoord3h(GL.Enums.NV_half_float target, UInt16 s, UInt16 t, UInt16 r) { Delegates.glMultiTexCoord3hNV((GL.Enums.NV_half_float)target, (UInt16)s, (UInt16)t, (UInt16)r); } public static - void MultiTexCoord3hNV(GL.Enums.NV_half_float target, Int16 s, Int16 t, Int16 r) + void MultiTexCoord3h(GL.Enums.NV_half_float target, Int16 s, Int16 t, Int16 r) { Delegates.glMultiTexCoord3hNV((GL.Enums.NV_half_float)target, (UInt16)s, (UInt16)t, (UInt16)r); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3hvNV(GL.Enums.NV_half_float target, UInt16* v) + unsafe void MultiTexCoord3hv(GL.Enums.NV_half_float target, UInt16* v) { unsafe { Delegates.glMultiTexCoord3hvNV((GL.Enums.NV_half_float)target, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord3hvNV(GL.Enums.NV_half_float target, Int16* v) + unsafe void MultiTexCoord3hv(GL.Enums.NV_half_float target, Int16* v) { { Delegates.glMultiTexCoord3hvNV((GL.Enums.NV_half_float)target, (UInt16*)v); @@ -55332,7 +55365,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord3hvNV(GL.Enums.NV_half_float target, [In, Out] UInt16[] v) + void MultiTexCoord3hv(GL.Enums.NV_half_float target, [In, Out] UInt16[] v) { unsafe { @@ -55344,7 +55377,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3hvNV(GL.Enums.NV_half_float target, [In, Out] Int16[] v) + void MultiTexCoord3hv(GL.Enums.NV_half_float target, [In, Out] Int16[] v) { unsafe { @@ -55357,7 +55390,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord3hvNV(GL.Enums.NV_half_float target, ref UInt16 v) + void MultiTexCoord3hv(GL.Enums.NV_half_float target, ref UInt16 v) { unsafe { @@ -55369,7 +55402,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord3hvNV(GL.Enums.NV_half_float target, ref Int16 v) + void MultiTexCoord3hv(GL.Enums.NV_half_float target, ref Int16 v) { unsafe { @@ -55382,27 +55415,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord4hNV(GL.Enums.NV_half_float target, UInt16 s, UInt16 t, UInt16 r, UInt16 q) + void MultiTexCoord4h(GL.Enums.NV_half_float target, UInt16 s, UInt16 t, UInt16 r, UInt16 q) { Delegates.glMultiTexCoord4hNV((GL.Enums.NV_half_float)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); } public static - void MultiTexCoord4hNV(GL.Enums.NV_half_float target, Int16 s, Int16 t, Int16 r, Int16 q) + void MultiTexCoord4h(GL.Enums.NV_half_float target, Int16 s, Int16 t, Int16 r, Int16 q) { Delegates.glMultiTexCoord4hNV((GL.Enums.NV_half_float)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q); } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4hvNV(GL.Enums.NV_half_float target, UInt16* v) + unsafe void MultiTexCoord4hv(GL.Enums.NV_half_float target, UInt16* v) { unsafe { Delegates.glMultiTexCoord4hvNV((GL.Enums.NV_half_float)target, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void MultiTexCoord4hvNV(GL.Enums.NV_half_float target, Int16* v) + unsafe void MultiTexCoord4hv(GL.Enums.NV_half_float target, Int16* v) { { Delegates.glMultiTexCoord4hvNV((GL.Enums.NV_half_float)target, (UInt16*)v); @@ -55411,7 +55444,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord4hvNV(GL.Enums.NV_half_float target, [In, Out] UInt16[] v) + void MultiTexCoord4hv(GL.Enums.NV_half_float target, [In, Out] UInt16[] v) { unsafe { @@ -55423,7 +55456,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4hvNV(GL.Enums.NV_half_float target, [In, Out] Int16[] v) + void MultiTexCoord4hv(GL.Enums.NV_half_float target, [In, Out] Int16[] v) { unsafe { @@ -55436,7 +55469,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiTexCoord4hvNV(GL.Enums.NV_half_float target, ref UInt16 v) + void MultiTexCoord4hv(GL.Enums.NV_half_float target, ref UInt16 v) { unsafe { @@ -55448,7 +55481,7 @@ namespace OpenTK.OpenGL } public static - void MultiTexCoord4hvNV(GL.Enums.NV_half_float target, ref Int16 v) + void MultiTexCoord4hv(GL.Enums.NV_half_float target, ref Int16 v) { unsafe { @@ -55461,27 +55494,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void FogCoordhNV(UInt16 fog) + void FogCoordh(UInt16 fog) { Delegates.glFogCoordhNV((UInt16)fog); } public static - void FogCoordhNV(Int16 fog) + void FogCoordh(Int16 fog) { Delegates.glFogCoordhNV((UInt16)fog); } [System.CLSCompliant(false)] public static - unsafe void FogCoordhvNV(UInt16* fog) + unsafe void FogCoordhv(UInt16* fog) { unsafe { Delegates.glFogCoordhvNV((UInt16*)fog); } } [System.CLSCompliant(false)] public static - unsafe void FogCoordhvNV(Int16* fog) + unsafe void FogCoordhv(Int16* fog) { { Delegates.glFogCoordhvNV((UInt16*)fog); @@ -55490,7 +55523,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void FogCoordhvNV([In, Out] UInt16[] fog) + void FogCoordhv([In, Out] UInt16[] fog) { unsafe { @@ -55502,7 +55535,7 @@ namespace OpenTK.OpenGL } public static - void FogCoordhvNV([In, Out] Int16[] fog) + void FogCoordhv([In, Out] Int16[] fog) { unsafe { @@ -55515,7 +55548,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void FogCoordhvNV(ref UInt16 fog) + void FogCoordhv(ref UInt16 fog) { unsafe { @@ -55527,7 +55560,7 @@ namespace OpenTK.OpenGL } public static - void FogCoordhvNV(ref Int16 fog) + void FogCoordhv(ref Int16 fog) { unsafe { @@ -55540,27 +55573,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3hNV(UInt16 red, UInt16 green, UInt16 blue) + void SecondaryColor3h(UInt16 red, UInt16 green, UInt16 blue) { Delegates.glSecondaryColor3hNV((UInt16)red, (UInt16)green, (UInt16)blue); } public static - void SecondaryColor3hNV(Int16 red, Int16 green, Int16 blue) + void SecondaryColor3h(Int16 red, Int16 green, Int16 blue) { Delegates.glSecondaryColor3hNV((UInt16)red, (UInt16)green, (UInt16)blue); } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3hvNV(UInt16* v) + unsafe void SecondaryColor3hv(UInt16* v) { unsafe { Delegates.glSecondaryColor3hvNV((UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void SecondaryColor3hvNV(Int16* v) + unsafe void SecondaryColor3hv(Int16* v) { { Delegates.glSecondaryColor3hvNV((UInt16*)v); @@ -55569,7 +55602,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3hvNV([In, Out] UInt16[] v) + void SecondaryColor3hv([In, Out] UInt16[] v) { unsafe { @@ -55581,7 +55614,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3hvNV([In, Out] Int16[] v) + void SecondaryColor3hv([In, Out] Int16[] v) { unsafe { @@ -55594,7 +55627,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SecondaryColor3hvNV(ref UInt16 v) + void SecondaryColor3hv(ref UInt16 v) { unsafe { @@ -55606,7 +55639,7 @@ namespace OpenTK.OpenGL } public static - void SecondaryColor3hvNV(ref Int16 v) + void SecondaryColor3hv(ref Int16 v) { unsafe { @@ -55619,27 +55652,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexWeighthNV(UInt16 weight) + void VertexWeighth(UInt16 weight) { Delegates.glVertexWeighthNV((UInt16)weight); } public static - void VertexWeighthNV(Int16 weight) + void VertexWeighth(Int16 weight) { Delegates.glVertexWeighthNV((UInt16)weight); } [System.CLSCompliant(false)] public static - unsafe void VertexWeighthvNV(UInt16* weight) + unsafe void VertexWeighthv(UInt16* weight) { unsafe { Delegates.glVertexWeighthvNV((UInt16*)weight); } } [System.CLSCompliant(false)] public static - unsafe void VertexWeighthvNV(Int16* weight) + unsafe void VertexWeighthv(Int16* weight) { { Delegates.glVertexWeighthvNV((UInt16*)weight); @@ -55648,7 +55681,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexWeighthvNV([In, Out] UInt16[] weight) + void VertexWeighthv([In, Out] UInt16[] weight) { unsafe { @@ -55660,7 +55693,7 @@ namespace OpenTK.OpenGL } public static - void VertexWeighthvNV([In, Out] Int16[] weight) + void VertexWeighthv([In, Out] Int16[] weight) { unsafe { @@ -55673,7 +55706,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexWeighthvNV(ref UInt16 weight) + void VertexWeighthv(ref UInt16 weight) { unsafe { @@ -55685,7 +55718,7 @@ namespace OpenTK.OpenGL } public static - void VertexWeighthvNV(ref Int16 weight) + void VertexWeighthv(ref Int16 weight) { unsafe { @@ -55698,27 +55731,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1hNV(UInt32 index, UInt16 x) + void VertexAttrib1h(UInt32 index, UInt16 x) { Delegates.glVertexAttrib1hNV((UInt32)index, (UInt16)x); } public static - void VertexAttrib1hNV(Int32 index, Int16 x) + void VertexAttrib1h(Int32 index, Int16 x) { Delegates.glVertexAttrib1hNV((UInt32)index, (UInt16)x); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1hvNV(UInt32 index, UInt16* v) + unsafe void VertexAttrib1hv(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib1hvNV((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib1hvNV(Int32 index, Int16* v) + unsafe void VertexAttrib1hv(Int32 index, Int16* v) { { Delegates.glVertexAttrib1hvNV((UInt32)index, (UInt16*)v); @@ -55727,7 +55760,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1hvNV(UInt32 index, [In, Out] UInt16[] v) + void VertexAttrib1hv(UInt32 index, [In, Out] UInt16[] v) { unsafe { @@ -55739,7 +55772,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1hvNV(Int32 index, [In, Out] Int16[] v) + void VertexAttrib1hv(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -55752,7 +55785,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib1hvNV(UInt32 index, ref UInt16 v) + void VertexAttrib1hv(UInt32 index, ref UInt16 v) { unsafe { @@ -55764,7 +55797,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib1hvNV(Int32 index, ref Int16 v) + void VertexAttrib1hv(Int32 index, ref Int16 v) { unsafe { @@ -55777,27 +55810,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2hNV(UInt32 index, UInt16 x, UInt16 y) + void VertexAttrib2h(UInt32 index, UInt16 x, UInt16 y) { Delegates.glVertexAttrib2hNV((UInt32)index, (UInt16)x, (UInt16)y); } public static - void VertexAttrib2hNV(Int32 index, Int16 x, Int16 y) + void VertexAttrib2h(Int32 index, Int16 x, Int16 y) { Delegates.glVertexAttrib2hNV((UInt32)index, (UInt16)x, (UInt16)y); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2hvNV(UInt32 index, UInt16* v) + unsafe void VertexAttrib2hv(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib2hvNV((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib2hvNV(Int32 index, Int16* v) + unsafe void VertexAttrib2hv(Int32 index, Int16* v) { { Delegates.glVertexAttrib2hvNV((UInt32)index, (UInt16*)v); @@ -55806,7 +55839,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2hvNV(UInt32 index, [In, Out] UInt16[] v) + void VertexAttrib2hv(UInt32 index, [In, Out] UInt16[] v) { unsafe { @@ -55818,7 +55851,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2hvNV(Int32 index, [In, Out] Int16[] v) + void VertexAttrib2hv(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -55831,7 +55864,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib2hvNV(UInt32 index, ref UInt16 v) + void VertexAttrib2hv(UInt32 index, ref UInt16 v) { unsafe { @@ -55843,7 +55876,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib2hvNV(Int32 index, ref Int16 v) + void VertexAttrib2hv(Int32 index, ref Int16 v) { unsafe { @@ -55856,27 +55889,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3hNV(UInt32 index, UInt16 x, UInt16 y, UInt16 z) + void VertexAttrib3h(UInt32 index, UInt16 x, UInt16 y, UInt16 z) { Delegates.glVertexAttrib3hNV((UInt32)index, (UInt16)x, (UInt16)y, (UInt16)z); } public static - void VertexAttrib3hNV(Int32 index, Int16 x, Int16 y, Int16 z) + void VertexAttrib3h(Int32 index, Int16 x, Int16 y, Int16 z) { Delegates.glVertexAttrib3hNV((UInt32)index, (UInt16)x, (UInt16)y, (UInt16)z); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3hvNV(UInt32 index, UInt16* v) + unsafe void VertexAttrib3hv(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib3hvNV((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib3hvNV(Int32 index, Int16* v) + unsafe void VertexAttrib3hv(Int32 index, Int16* v) { { Delegates.glVertexAttrib3hvNV((UInt32)index, (UInt16*)v); @@ -55885,7 +55918,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3hvNV(UInt32 index, [In, Out] UInt16[] v) + void VertexAttrib3hv(UInt32 index, [In, Out] UInt16[] v) { unsafe { @@ -55897,7 +55930,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3hvNV(Int32 index, [In, Out] Int16[] v) + void VertexAttrib3hv(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -55910,7 +55943,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib3hvNV(UInt32 index, ref UInt16 v) + void VertexAttrib3hv(UInt32 index, ref UInt16 v) { unsafe { @@ -55922,7 +55955,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib3hvNV(Int32 index, ref Int16 v) + void VertexAttrib3hv(Int32 index, ref Int16 v) { unsafe { @@ -55935,27 +55968,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4hNV(UInt32 index, UInt16 x, UInt16 y, UInt16 z, UInt16 w) + void VertexAttrib4h(UInt32 index, UInt16 x, UInt16 y, UInt16 z, UInt16 w) { Delegates.glVertexAttrib4hNV((UInt32)index, (UInt16)x, (UInt16)y, (UInt16)z, (UInt16)w); } public static - void VertexAttrib4hNV(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) + void VertexAttrib4h(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { Delegates.glVertexAttrib4hNV((UInt32)index, (UInt16)x, (UInt16)y, (UInt16)z, (UInt16)w); } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4hvNV(UInt32 index, UInt16* v) + unsafe void VertexAttrib4hv(UInt32 index, UInt16* v) { unsafe { Delegates.glVertexAttrib4hvNV((UInt32)index, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttrib4hvNV(Int32 index, Int16* v) + unsafe void VertexAttrib4hv(Int32 index, Int16* v) { { Delegates.glVertexAttrib4hvNV((UInt32)index, (UInt16*)v); @@ -55964,7 +55997,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4hvNV(UInt32 index, [In, Out] UInt16[] v) + void VertexAttrib4hv(UInt32 index, [In, Out] UInt16[] v) { unsafe { @@ -55976,7 +56009,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4hvNV(Int32 index, [In, Out] Int16[] v) + void VertexAttrib4hv(Int32 index, [In, Out] Int16[] v) { unsafe { @@ -55989,7 +56022,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttrib4hvNV(UInt32 index, ref UInt16 v) + void VertexAttrib4hv(UInt32 index, ref UInt16 v) { unsafe { @@ -56001,7 +56034,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttrib4hvNV(Int32 index, ref Int16 v) + void VertexAttrib4hv(Int32 index, ref Int16 v) { unsafe { @@ -56014,14 +56047,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1hvNV(UInt32 index, Int32 n, UInt16* v) + unsafe void VertexAttribs1hv(UInt32 index, Int32 n, UInt16* v) { unsafe { Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs1hvNV(Int32 index, Int32 n, Int16* v) + unsafe void VertexAttribs1hv(Int32 index, Int32 n, Int16* v) { { Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (UInt16*)v); @@ -56030,7 +56063,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1hvNV(UInt32 index, Int32 n, [In, Out] UInt16[] v) + void VertexAttribs1hv(UInt32 index, Int32 n, [In, Out] UInt16[] v) { unsafe { @@ -56042,7 +56075,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1hvNV(Int32 index, Int32 n, [In, Out] Int16[] v) + void VertexAttribs1hv(Int32 index, Int32 n, [In, Out] Int16[] v) { unsafe { @@ -56055,7 +56088,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs1hvNV(UInt32 index, Int32 n, ref UInt16 v) + void VertexAttribs1hv(UInt32 index, Int32 n, ref UInt16 v) { unsafe { @@ -56067,7 +56100,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs1hvNV(Int32 index, Int32 n, ref Int16 v) + void VertexAttribs1hv(Int32 index, Int32 n, ref Int16 v) { unsafe { @@ -56080,14 +56113,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2hvNV(UInt32 index, Int32 n, UInt16* v) + unsafe void VertexAttribs2hv(UInt32 index, Int32 n, UInt16* v) { unsafe { Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs2hvNV(Int32 index, Int32 n, Int16* v) + unsafe void VertexAttribs2hv(Int32 index, Int32 n, Int16* v) { { Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (UInt16*)v); @@ -56096,7 +56129,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2hvNV(UInt32 index, Int32 n, [In, Out] UInt16[] v) + void VertexAttribs2hv(UInt32 index, Int32 n, [In, Out] UInt16[] v) { unsafe { @@ -56108,7 +56141,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2hvNV(Int32 index, Int32 n, [In, Out] Int16[] v) + void VertexAttribs2hv(Int32 index, Int32 n, [In, Out] Int16[] v) { unsafe { @@ -56121,7 +56154,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs2hvNV(UInt32 index, Int32 n, ref UInt16 v) + void VertexAttribs2hv(UInt32 index, Int32 n, ref UInt16 v) { unsafe { @@ -56133,7 +56166,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs2hvNV(Int32 index, Int32 n, ref Int16 v) + void VertexAttribs2hv(Int32 index, Int32 n, ref Int16 v) { unsafe { @@ -56146,14 +56179,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3hvNV(UInt32 index, Int32 n, UInt16* v) + unsafe void VertexAttribs3hv(UInt32 index, Int32 n, UInt16* v) { unsafe { Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs3hvNV(Int32 index, Int32 n, Int16* v) + unsafe void VertexAttribs3hv(Int32 index, Int32 n, Int16* v) { { Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (UInt16*)v); @@ -56162,7 +56195,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3hvNV(UInt32 index, Int32 n, [In, Out] UInt16[] v) + void VertexAttribs3hv(UInt32 index, Int32 n, [In, Out] UInt16[] v) { unsafe { @@ -56174,7 +56207,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3hvNV(Int32 index, Int32 n, [In, Out] Int16[] v) + void VertexAttribs3hv(Int32 index, Int32 n, [In, Out] Int16[] v) { unsafe { @@ -56187,7 +56220,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs3hvNV(UInt32 index, Int32 n, ref UInt16 v) + void VertexAttribs3hv(UInt32 index, Int32 n, ref UInt16 v) { unsafe { @@ -56199,7 +56232,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs3hvNV(Int32 index, Int32 n, ref Int16 v) + void VertexAttribs3hv(Int32 index, Int32 n, ref Int16 v) { unsafe { @@ -56212,14 +56245,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4hvNV(UInt32 index, Int32 n, UInt16* v) + unsafe void VertexAttribs4hv(UInt32 index, Int32 n, UInt16* v) { unsafe { Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (UInt16*)v); } } [System.CLSCompliant(false)] public static - unsafe void VertexAttribs4hvNV(Int32 index, Int32 n, Int16* v) + unsafe void VertexAttribs4hv(Int32 index, Int32 n, Int16* v) { { Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (UInt16*)v); @@ -56228,7 +56261,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4hvNV(UInt32 index, Int32 n, [In, Out] UInt16[] v) + void VertexAttribs4hv(UInt32 index, Int32 n, [In, Out] UInt16[] v) { unsafe { @@ -56240,7 +56273,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4hvNV(Int32 index, Int32 n, [In, Out] Int16[] v) + void VertexAttribs4hv(Int32 index, Int32 n, [In, Out] Int16[] v) { unsafe { @@ -56253,7 +56286,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VertexAttribs4hvNV(UInt32 index, Int32 n, ref UInt16 v) + void VertexAttribs4hv(UInt32 index, Int32 n, ref UInt16 v) { unsafe { @@ -56265,7 +56298,7 @@ namespace OpenTK.OpenGL } public static - void VertexAttribs4hvNV(Int32 index, Int32 n, ref Int16 v) + void VertexAttribs4hv(Int32 index, Int32 n, ref Int16 v) { unsafe { @@ -56278,13 +56311,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void PixelDataRangeNV(GL.Enums.NV_pixel_data_range target, Int32 length, [Out] void* pointer) + unsafe void PixelDataRange(GL.Enums.NV_pixel_data_range target, Int32 length, [Out] void* pointer) { unsafe { Delegates.glPixelDataRangeNV((GL.Enums.NV_pixel_data_range)target, (Int32)length, (void*)pointer); } } public static - void PixelDataRangeNV(GL.Enums.NV_pixel_data_range target, Int32 length, [In, Out] object pointer) + void PixelDataRange(GL.Enums.NV_pixel_data_range target, Int32 length, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -56301,26 +56334,26 @@ namespace OpenTK.OpenGL } public static - void FlushPixelDataRangeNV(GL.Enums.NV_pixel_data_range target) + void FlushPixelDataRange(GL.Enums.NV_pixel_data_range target) { Delegates.glFlushPixelDataRangeNV((GL.Enums.NV_pixel_data_range)target); } public static - void PrimitiveRestartNV() + void PrimitiveRestart() { Delegates.glPrimitiveRestartNV(); } [System.CLSCompliant(false)] public static - void PrimitiveRestartIndexNV(UInt32 index) + void PrimitiveRestartIndex(UInt32 index) { Delegates.glPrimitiveRestartIndexNV((UInt32)index); } public static - void PrimitiveRestartIndexNV(Int32 index) + void PrimitiveRestartIndex(Int32 index) { Delegates.glPrimitiveRestartIndexNV((UInt32)index); } @@ -56340,14 +56373,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32* @params) + unsafe void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32* @params) { unsafe { Delegates.glProgramLocalParameterI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32* @params) + unsafe void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32* @params) { { Delegates.glProgramLocalParameterI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32*)@params); @@ -56356,7 +56389,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, [In, Out] Int32[] @params) + void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, [In, Out] Int32[] @params) { unsafe { @@ -56368,7 +56401,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, [In, Out] Int32[] @params) + void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, [In, Out] Int32[] @params) { unsafe { @@ -56381,7 +56414,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, ref Int32 @params) + void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, ref Int32 @params) { unsafe { @@ -56393,7 +56426,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, ref Int32 @params) + void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, ref Int32 @params) { unsafe { @@ -56406,14 +56439,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32* @params) { unsafe { Delegates.glProgramLocalParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) { { Delegates.glProgramLocalParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params); @@ -56422,7 +56455,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, [In, Out] Int32[] @params) + void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, [In, Out] Int32[] @params) { unsafe { @@ -56434,7 +56467,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParametersI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, [In, Out] Int32[] @params) + void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, [In, Out] Int32[] @params) { unsafe { @@ -56447,7 +56480,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref Int32 @params) + void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref Int32 @params) { unsafe { @@ -56459,7 +56492,7 @@ namespace OpenTK.OpenGL } public static - void ProgramLocalParametersI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) + void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) { unsafe { @@ -56479,14 +56512,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32* @params) + unsafe void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32* @params) { unsafe { Delegates.glProgramLocalParameterI4uivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, [In, Out] UInt32[] @params) + void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, [In, Out] UInt32[] @params) { unsafe { @@ -56499,7 +56532,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, ref UInt32 @params) + void ProgramLocalParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, ref UInt32 @params) { unsafe { @@ -56512,14 +56545,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramLocalParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32* @params) { unsafe { Delegates.glProgramLocalParametersI4uivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, [In, Out] UInt32[] @params) + void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, [In, Out] UInt32[] @params) { unsafe { @@ -56532,7 +56565,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramLocalParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramLocalParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { @@ -56558,14 +56591,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32* @params) + unsafe void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32* @params) { unsafe { Delegates.glProgramEnvParameterI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32* @params) + unsafe void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32* @params) { { Delegates.glProgramEnvParameterI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32*)@params); @@ -56574,7 +56607,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, [In, Out] Int32[] @params) + void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, [In, Out] Int32[] @params) { unsafe { @@ -56586,7 +56619,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, [In, Out] Int32[] @params) + void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, [In, Out] Int32[] @params) { unsafe { @@ -56599,7 +56632,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, ref Int32 @params) + void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, ref Int32 @params) { unsafe { @@ -56611,7 +56644,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, Int32 index, ref Int32 @params) + void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, Int32 index, ref Int32 @params) { unsafe { @@ -56624,14 +56657,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32* @params) + unsafe void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, Int32* @params) { unsafe { Delegates.glProgramEnvParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params); } } [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) + unsafe void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, Int32* @params) { { Delegates.glProgramEnvParametersI4ivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (Int32*)@params); @@ -56640,7 +56673,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, [In, Out] Int32[] @params) + void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, [In, Out] Int32[] @params) { unsafe { @@ -56652,7 +56685,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParametersI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, [In, Out] Int32[] @params) + void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, [In, Out] Int32[] @params) { unsafe { @@ -56665,7 +56698,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref Int32 @params) + void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref Int32 @params) { unsafe { @@ -56677,7 +56710,7 @@ namespace OpenTK.OpenGL } public static - void ProgramEnvParametersI4v(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) + void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, Int32 index, Int32 count, ref Int32 @params) { unsafe { @@ -56697,14 +56730,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32* @params) + unsafe void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, UInt32* @params) { unsafe { Delegates.glProgramEnvParameterI4uivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, [In, Out] UInt32[] @params) + void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, [In, Out] UInt32[] @params) { unsafe { @@ -56717,7 +56750,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParameterI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, ref UInt32 @params) + void ProgramEnvParameterI4(GL.Enums.NV_gpu_program4 target, UInt32 index, ref UInt32 @params) { unsafe { @@ -56730,14 +56763,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ProgramEnvParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32* @params) + unsafe void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, UInt32* @params) { unsafe { Delegates.glProgramEnvParametersI4uivNV((GL.Enums.NV_gpu_program4)target, (UInt32)index, (Int32)count, (UInt32*)@params); } } [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, [In, Out] UInt32[] @params) + void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, [In, Out] UInt32[] @params) { unsafe { @@ -56750,7 +56783,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ProgramEnvParametersI4v(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref UInt32 @params) + void ProgramEnvParametersI4(GL.Enums.NV_gpu_program4 target, UInt32 index, Int32 count, ref UInt32 @params) { unsafe { @@ -56974,31 +57007,31 @@ namespace OpenTK.OpenGL } public static - void ProgramVertexLimitNV(GL.Enums.NV_geometry_program4 target, Int32 limit) + void ProgramVertexLimit(GL.Enums.NV_geometry_program4 target, Int32 limit) { Delegates.glProgramVertexLimitNV((GL.Enums.NV_geometry_program4)target, (Int32)limit); } public static - void DepthRangedNV(Double zNear, Double zFar) + void DepthRanged(Double zNear, Double zFar) { Delegates.glDepthRangedNV((Double)zNear, (Double)zFar); } public static - void ClearDepthdNV(Double depth) + void ClearDepthd(Double depth) { Delegates.glClearDepthdNV((Double)depth); } public static - void DepthBoundsdNV(Double zmin, Double zmax) + void DepthBoundsd(Double zmin, Double zmax) { Delegates.glDepthBoundsdNV((Double)zmin, (Double)zmax); } public static - void RenderbufferStorageMultisampleCoverageNV(GL.Enums.NV_framebuffer_multisample_coverage target, Int32 coverageSamples, Int32 colorSamples, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height) + void RenderbufferStorageMultisampleCoverage(GL.Enums.NV_framebuffer_multisample_coverage target, Int32 coverageSamples, Int32 colorSamples, GL.Enums.PixelInternalFormat internalformat, Int32 width, Int32 height) { Delegates.glRenderbufferStorageMultisampleCoverageNV((GL.Enums.NV_framebuffer_multisample_coverage)target, (Int32)coverageSamples, (Int32)colorSamples, (GL.Enums.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); } @@ -57169,27 +57202,27 @@ namespace OpenTK.OpenGL } public static - void BeginTransformFeedbackNV(GL.Enums.NV_transform_feedback primitiveMode) + void BeginTransformFeedback(GL.Enums.NV_transform_feedback primitiveMode) { Delegates.glBeginTransformFeedbackNV((GL.Enums.NV_transform_feedback)primitiveMode); } public static - void EndTransformFeedbackNV() + void EndTransformFeedback() { Delegates.glEndTransformFeedbackNV(); } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackAttribsNV(UInt32 count, Int32* attribs, GL.Enums.NV_transform_feedback bufferMode) + unsafe void TransformFeedbackAttribs(UInt32 count, Int32* attribs, GL.Enums.NV_transform_feedback bufferMode) { unsafe { Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (GL.Enums.NV_transform_feedback)bufferMode); } } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackAttribsNV(Int32 count, Int32* attribs, GL.Enums.NV_transform_feedback bufferMode) + unsafe void TransformFeedbackAttribs(Int32 count, Int32* attribs, GL.Enums.NV_transform_feedback bufferMode) { { Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (GL.Enums.NV_transform_feedback)bufferMode); @@ -57198,7 +57231,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TransformFeedbackAttribsNV(UInt32 count, [In, Out] Int32[] attribs, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackAttribs(UInt32 count, [In, Out] Int32[] attribs, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -57210,7 +57243,7 @@ namespace OpenTK.OpenGL } public static - void TransformFeedbackAttribsNV(Int32 count, [In, Out] Int32[] attribs, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackAttribs(Int32 count, [In, Out] Int32[] attribs, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -57223,7 +57256,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TransformFeedbackAttribsNV(UInt32 count, ref Int32 attribs, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackAttribs(UInt32 count, ref Int32 attribs, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -57235,7 +57268,7 @@ namespace OpenTK.OpenGL } public static - void TransformFeedbackAttribsNV(Int32 count, ref Int32 attribs, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackAttribs(Int32 count, ref Int32 attribs, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -57248,53 +57281,53 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void BindBufferRangeNV(GL.Enums.NV_transform_feedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) + void BindBufferRange(GL.Enums.NV_transform_feedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { Delegates.glBindBufferRangeNV((GL.Enums.NV_transform_feedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); } public static - void BindBufferRangeNV(GL.Enums.NV_transform_feedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) + void BindBufferRange(GL.Enums.NV_transform_feedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { Delegates.glBindBufferRangeNV((GL.Enums.NV_transform_feedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); } [System.CLSCompliant(false)] public static - void BindBufferOffsetNV(GL.Enums.NV_transform_feedback target, UInt32 index, UInt32 buffer, IntPtr offset) + void BindBufferOffset(GL.Enums.NV_transform_feedback target, UInt32 index, UInt32 buffer, IntPtr offset) { Delegates.glBindBufferOffsetNV((GL.Enums.NV_transform_feedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); } public static - void BindBufferOffsetNV(GL.Enums.NV_transform_feedback target, Int32 index, Int32 buffer, IntPtr offset) + void BindBufferOffset(GL.Enums.NV_transform_feedback target, Int32 index, Int32 buffer, IntPtr offset) { Delegates.glBindBufferOffsetNV((GL.Enums.NV_transform_feedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); } [System.CLSCompliant(false)] public static - void BindBufferBaseNV(GL.Enums.NV_transform_feedback target, UInt32 index, UInt32 buffer) + void BindBufferBase(GL.Enums.NV_transform_feedback target, UInt32 index, UInt32 buffer) { Delegates.glBindBufferBaseNV((GL.Enums.NV_transform_feedback)target, (UInt32)index, (UInt32)buffer); } public static - void BindBufferBaseNV(GL.Enums.NV_transform_feedback target, Int32 index, Int32 buffer) + void BindBufferBase(GL.Enums.NV_transform_feedback target, Int32 index, Int32 buffer) { Delegates.glBindBufferBaseNV((GL.Enums.NV_transform_feedback)target, (UInt32)index, (UInt32)buffer); } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackVaryingsNV(UInt32 program, Int32 count, Int32* locations, GL.Enums.NV_transform_feedback bufferMode) + unsafe void TransformFeedbackVaryings(UInt32 program, Int32 count, Int32* locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (GL.Enums.NV_transform_feedback)bufferMode); } } [System.CLSCompliant(false)] public static - unsafe void TransformFeedbackVaryingsNV(Int32 program, Int32 count, Int32* locations, GL.Enums.NV_transform_feedback bufferMode) + unsafe void TransformFeedbackVaryings(Int32 program, Int32 count, Int32* locations, GL.Enums.NV_transform_feedback bufferMode) { { Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (GL.Enums.NV_transform_feedback)bufferMode); @@ -57303,7 +57336,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TransformFeedbackVaryingsNV(UInt32 program, Int32 count, [In, Out] Int32[] locations, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackVaryings(UInt32 program, Int32 count, [In, Out] Int32[] locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -57315,7 +57348,7 @@ namespace OpenTK.OpenGL } public static - void TransformFeedbackVaryingsNV(Int32 program, Int32 count, [In, Out] Int32[] locations, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackVaryings(Int32 program, Int32 count, [In, Out] Int32[] locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -57328,7 +57361,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void TransformFeedbackVaryingsNV(UInt32 program, Int32 count, ref Int32 locations, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackVaryings(UInt32 program, Int32 count, ref Int32 locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -57340,7 +57373,7 @@ namespace OpenTK.OpenGL } public static - void TransformFeedbackVaryingsNV(Int32 program, Int32 count, ref Int32 locations, GL.Enums.NV_transform_feedback bufferMode) + void TransformFeedbackVaryings(Int32 program, Int32 count, ref Int32 locations, GL.Enums.NV_transform_feedback bufferMode) { unsafe { @@ -57353,40 +57386,40 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void ActiveVaryingNV(UInt32 program, System.String name) + void ActiveVarying(UInt32 program, System.String name) { Delegates.glActiveVaryingNV((UInt32)program, (System.String)name); } public static - void ActiveVaryingNV(Int32 program, System.String name) + void ActiveVarying(Int32 program, System.String name) { Delegates.glActiveVaryingNV((UInt32)program, (System.String)name); } [System.CLSCompliant(false)] public static - Int32 GetVaryingLocationNV(UInt32 program, System.String name) + Int32 GetVaryingLocation(UInt32 program, System.String name) { return Delegates.glGetVaryingLocationNV((UInt32)program, (System.String)name); } public static - Int32 GetVaryingLocationNV(Int32 program, System.String name) + Int32 GetVaryingLocation(Int32 program, System.String name) { return Delegates.glGetVaryingLocationNV((UInt32)program, (System.String)name); } [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { unsafe { Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (GL.Enums.NV_transform_feedback*)type, (System.Text.StringBuilder)name); } } [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -57399,7 +57432,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -57412,7 +57445,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -57425,7 +57458,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -57440,7 +57473,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32*); @@ -57455,7 +57488,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.NV_transform_feedback*); @@ -57468,7 +57501,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.NV_transform_feedback*); @@ -57481,7 +57514,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); name = default(System.Text.StringBuilder); @@ -57494,7 +57527,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); name = default(System.Text.StringBuilder); @@ -57507,7 +57540,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.NV_transform_feedback); @@ -57522,7 +57555,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32*); type = default(GL.Enums.NV_transform_feedback); @@ -57537,7 +57570,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -57552,7 +57585,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -57567,7 +57600,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -57582,7 +57615,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -57597,7 +57630,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -57614,7 +57647,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32*); size = default(Int32); @@ -57631,7 +57664,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.NV_transform_feedback*); @@ -57644,7 +57677,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.NV_transform_feedback*); @@ -57657,7 +57690,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { size = default(Int32*); name = default(System.Text.StringBuilder); @@ -57670,7 +57703,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { size = default(Int32*); name = default(System.Text.StringBuilder); @@ -57683,7 +57716,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.NV_transform_feedback); @@ -57698,7 +57731,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { size = default(Int32*); type = default(GL.Enums.NV_transform_feedback); @@ -57713,7 +57746,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.NV_transform_feedback*); name = default(System.Text.StringBuilder); @@ -57726,7 +57759,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.NV_transform_feedback*); name = default(System.Text.StringBuilder); @@ -57739,7 +57772,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { name = default(System.Text.StringBuilder); unsafe @@ -57754,7 +57787,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { name = default(System.Text.StringBuilder); unsafe @@ -57770,7 +57803,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.NV_transform_feedback); name = default(System.Text.StringBuilder); @@ -57787,7 +57820,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { type = default(GL.Enums.NV_transform_feedback); name = default(System.Text.StringBuilder); @@ -57805,7 +57838,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.NV_transform_feedback*); @@ -57820,7 +57853,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.NV_transform_feedback*); @@ -57835,7 +57868,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { size = default(Int32); name = default(System.Text.StringBuilder); @@ -57852,7 +57885,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { size = default(Int32); name = default(System.Text.StringBuilder); @@ -57870,7 +57903,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.NV_transform_feedback); @@ -57889,7 +57922,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [In, Out] Int32[] length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { size = default(Int32); type = default(GL.Enums.NV_transform_feedback); @@ -57909,7 +57942,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -57924,7 +57957,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -57939,7 +57972,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -57954,7 +57987,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -57969,7 +58002,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -57986,7 +58019,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] Int32* size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32*); @@ -58003,7 +58036,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.NV_transform_feedback*); @@ -58018,7 +58051,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.NV_transform_feedback*); @@ -58033,7 +58066,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); name = default(System.Text.StringBuilder); @@ -58050,7 +58083,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); name = default(System.Text.StringBuilder); @@ -58068,7 +58101,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.NV_transform_feedback); @@ -58087,7 +58120,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [In, Out] Int32[] size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32); type = default(GL.Enums.NV_transform_feedback); @@ -58107,7 +58140,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -58124,7 +58157,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) + unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] GL.Enums.NV_transform_feedback* type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -58141,7 +58174,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -58160,7 +58193,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [In, Out] GL.Enums.NV_transform_feedback[] type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -58180,7 +58213,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -58201,7 +58234,7 @@ namespace OpenTK.OpenGL } public static - void GetActiveVaryingNV(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) + void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out GL.Enums.NV_transform_feedback type, [Out] System.Text.StringBuilder name) { length = default(Int32); size = default(Int32); @@ -58223,14 +58256,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GetTransformFeedbackVaryingNV(UInt32 program, UInt32 index, [Out] Int32* location) + unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] Int32* location) { unsafe { Delegates.glGetTransformFeedbackVaryingNV((UInt32)program, (UInt32)index, (Int32*)location); } } [System.CLSCompliant(false)] public static - unsafe void GetTransformFeedbackVaryingNV(Int32 program, Int32 index, [Out] Int32* location) + unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] Int32* location) { location = default(Int32*); { @@ -58240,7 +58273,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetTransformFeedbackVaryingNV(UInt32 program, UInt32 index, [In, Out] Int32[] location) + void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [In, Out] Int32[] location) { unsafe { @@ -58252,7 +58285,7 @@ namespace OpenTK.OpenGL } public static - void GetTransformFeedbackVaryingNV(Int32 program, Int32 index, [In, Out] Int32[] location) + void GetTransformFeedbackVarying(Int32 program, Int32 index, [In, Out] Int32[] location) { unsafe { @@ -58265,7 +58298,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GetTransformFeedbackVaryingNV(UInt32 program, UInt32 index, [Out] out Int32 location) + void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] out Int32 location) { location = default(Int32); unsafe @@ -58279,7 +58312,7 @@ namespace OpenTK.OpenGL } public static - void GetTransformFeedbackVaryingNV(Int32 program, Int32 index, [Out] out Int32 location) + void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] out Int32 location) { location = default(Int32); unsafe @@ -58297,7 +58330,7 @@ namespace OpenTK.OpenGL public static class MESA { public static - void ResizeBuffersMESA() + void ResizeBuffers() { Delegates.glResizeBuffersMESA(); } @@ -58310,13 +58343,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Double* v) + unsafe void WindowPos2(Double* v) { unsafe { Delegates.glWindowPos2dvMESA((Double*)v); } } public static - void WindowPos2v([In, Out] Double[] v) + void WindowPos2([In, Out] Double[] v) { unsafe { @@ -58328,7 +58361,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Double v) + void WindowPos2(ref Double v) { unsafe { @@ -58347,13 +58380,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Single* v) + unsafe void WindowPos2(Single* v) { unsafe { Delegates.glWindowPos2fvMESA((Single*)v); } } public static - void WindowPos2v([In, Out] Single[] v) + void WindowPos2([In, Out] Single[] v) { unsafe { @@ -58365,7 +58398,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Single v) + void WindowPos2(ref Single v) { unsafe { @@ -58384,13 +58417,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Int32* v) + unsafe void WindowPos2(Int32* v) { unsafe { Delegates.glWindowPos2ivMESA((Int32*)v); } } public static - void WindowPos2v([In, Out] Int32[] v) + void WindowPos2([In, Out] Int32[] v) { unsafe { @@ -58402,7 +58435,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Int32 v) + void WindowPos2(ref Int32 v) { unsafe { @@ -58421,13 +58454,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos2v(Int16* v) + unsafe void WindowPos2(Int16* v) { unsafe { Delegates.glWindowPos2svMESA((Int16*)v); } } public static - void WindowPos2v([In, Out] Int16[] v) + void WindowPos2([In, Out] Int16[] v) { unsafe { @@ -58439,7 +58472,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos2v(ref Int16 v) + void WindowPos2(ref Int16 v) { unsafe { @@ -58458,13 +58491,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Double* v) + unsafe void WindowPos3(Double* v) { unsafe { Delegates.glWindowPos3dvMESA((Double*)v); } } public static - void WindowPos3v([In, Out] Double[] v) + void WindowPos3([In, Out] Double[] v) { unsafe { @@ -58476,7 +58509,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Double v) + void WindowPos3(ref Double v) { unsafe { @@ -58495,13 +58528,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Single* v) + unsafe void WindowPos3(Single* v) { unsafe { Delegates.glWindowPos3fvMESA((Single*)v); } } public static - void WindowPos3v([In, Out] Single[] v) + void WindowPos3([In, Out] Single[] v) { unsafe { @@ -58513,7 +58546,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Single v) + void WindowPos3(ref Single v) { unsafe { @@ -58532,13 +58565,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Int32* v) + unsafe void WindowPos3(Int32* v) { unsafe { Delegates.glWindowPos3ivMESA((Int32*)v); } } public static - void WindowPos3v([In, Out] Int32[] v) + void WindowPos3([In, Out] Int32[] v) { unsafe { @@ -58550,7 +58583,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Int32 v) + void WindowPos3(ref Int32 v) { unsafe { @@ -58569,13 +58602,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos3v(Int16* v) + unsafe void WindowPos3(Int16* v) { unsafe { Delegates.glWindowPos3svMESA((Int16*)v); } } public static - void WindowPos3v([In, Out] Int16[] v) + void WindowPos3([In, Out] Int16[] v) { unsafe { @@ -58587,7 +58620,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos3v(ref Int16 v) + void WindowPos3(ref Int16 v) { unsafe { @@ -58606,13 +58639,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos4v(Double* v) + unsafe void WindowPos4(Double* v) { unsafe { Delegates.glWindowPos4dvMESA((Double*)v); } } public static - void WindowPos4v([In, Out] Double[] v) + void WindowPos4([In, Out] Double[] v) { unsafe { @@ -58624,7 +58657,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos4v(ref Double v) + void WindowPos4(ref Double v) { unsafe { @@ -58643,13 +58676,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos4v(Single* v) + unsafe void WindowPos4(Single* v) { unsafe { Delegates.glWindowPos4fvMESA((Single*)v); } } public static - void WindowPos4v([In, Out] Single[] v) + void WindowPos4([In, Out] Single[] v) { unsafe { @@ -58661,7 +58694,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos4v(ref Single v) + void WindowPos4(ref Single v) { unsafe { @@ -58680,13 +58713,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos4v(Int32* v) + unsafe void WindowPos4(Int32* v) { unsafe { Delegates.glWindowPos4ivMESA((Int32*)v); } } public static - void WindowPos4v([In, Out] Int32[] v) + void WindowPos4([In, Out] Int32[] v) { unsafe { @@ -58698,7 +58731,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos4v(ref Int32 v) + void WindowPos4(ref Int32 v) { unsafe { @@ -58717,13 +58750,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void WindowPos4v(Int16* v) + unsafe void WindowPos4(Int16* v) { unsafe { Delegates.glWindowPos4svMESA((Int16*)v); } } public static - void WindowPos4v([In, Out] Int16[] v) + void WindowPos4([In, Out] Int16[] v) { unsafe { @@ -58735,7 +58768,7 @@ namespace OpenTK.OpenGL } public static - void WindowPos4v(ref Int16 v) + void WindowPos4(ref Int16 v) { unsafe { @@ -58752,14 +58785,14 @@ namespace OpenTK.OpenGL { [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(GL.Enums.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { unsafe { Delegates.glMultiModeDrawArraysIBM((GL.Enums.BeginMode*)mode, (Int32*)first, (Int32*)count, (Int32)primcount, (Int32)modestride); } } [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(GL.Enums.BeginMode* mode, Int32* first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, Int32* first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) { fixed (Int32* count_ptr = count) { @@ -58769,7 +58802,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(GL.Enums.BeginMode* mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) { fixed (Int32* count_ptr = &count) { @@ -58779,7 +58812,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(GL.Enums.BeginMode* mode, [In, Out] Int32[] first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, [In, Out] Int32[] first, Int32* count, Int32 primcount, Int32 modestride) { fixed (Int32* first_ptr = first) { @@ -58789,7 +58822,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(GL.Enums.BeginMode* mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) { fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) @@ -58800,7 +58833,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(GL.Enums.BeginMode* mode, [In, Out] Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, [In, Out] Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) { fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = &count) @@ -58811,7 +58844,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(GL.Enums.BeginMode* mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) { fixed (Int32* first_ptr = &first) { @@ -58821,7 +58854,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(GL.Enums.BeginMode* mode, ref Int32 first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, ref Int32 first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) { fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = count) @@ -58832,7 +58865,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(GL.Enums.BeginMode* mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(GL.Enums.BeginMode* mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) @@ -58843,7 +58876,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM([In, Out] GL.Enums.BeginMode[] mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays([In, Out] GL.Enums.BeginMode[] mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = mode) { @@ -58853,7 +58886,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM([In, Out] GL.Enums.BeginMode[] mode, Int32* first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays([In, Out] GL.Enums.BeginMode[] mode, Int32* first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = mode) fixed (Int32* count_ptr = count) @@ -58864,7 +58897,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM([In, Out] GL.Enums.BeginMode[] mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays([In, Out] GL.Enums.BeginMode[] mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = mode) fixed (Int32* count_ptr = &count) @@ -58875,7 +58908,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] first, Int32* count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = mode) fixed (Int32* first_ptr = first) @@ -58885,7 +58918,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArraysIBM([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -58899,7 +58932,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArraysIBM([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -58914,7 +58947,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM([In, Out] GL.Enums.BeginMode[] mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays([In, Out] GL.Enums.BeginMode[] mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = mode) fixed (Int32* first_ptr = &first) @@ -58924,7 +58957,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArraysIBM([In, Out] GL.Enums.BeginMode[] mode, ref Int32 first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays([In, Out] GL.Enums.BeginMode[] mode, ref Int32 first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -58938,7 +58971,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArraysIBM([In, Out] GL.Enums.BeginMode[] mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays([In, Out] GL.Enums.BeginMode[] mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -58953,7 +58986,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(ref GL.Enums.BeginMode mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = &mode) { @@ -58963,7 +58996,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(ref GL.Enums.BeginMode mode, Int32* first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, Int32* first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = &mode) fixed (Int32* count_ptr = count) @@ -58974,7 +59007,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(ref GL.Enums.BeginMode mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, Int32* first, ref Int32 count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = &mode) fixed (Int32* count_ptr = &count) @@ -58985,7 +59018,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(ref GL.Enums.BeginMode mode, [In, Out] Int32[] first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, [In, Out] Int32[] first, Int32* count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = &mode) fixed (Int32* first_ptr = first) @@ -58995,7 +59028,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArraysIBM(ref GL.Enums.BeginMode mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -59009,7 +59042,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArraysIBM(ref GL.Enums.BeginMode mode, [In, Out] Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, [In, Out] Int32[] first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -59024,7 +59057,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawArraysIBM(ref GL.Enums.BeginMode mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, ref Int32 first, Int32* count, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = &mode) fixed (Int32* first_ptr = &first) @@ -59034,7 +59067,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArraysIBM(ref GL.Enums.BeginMode mode, ref Int32 first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, ref Int32 first, [In, Out] Int32[] count, Int32 primcount, Int32 modestride) { unsafe { @@ -59048,7 +59081,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawArraysIBM(ref GL.Enums.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) + void MultiModeDrawArrays(ref GL.Enums.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { unsafe { @@ -59063,14 +59096,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(GL.Enums.BeginMode* mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(GL.Enums.BeginMode* mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) { unsafe { Delegates.glMultiModeDrawElementsIBM((GL.Enums.BeginMode*)mode, (Int32*)count, (GL.Enums.IBM_multimode_draw_arrays)type, (void*)indices, (Int32)primcount, (Int32)modestride); } } [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(GL.Enums.BeginMode* mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(GL.Enums.BeginMode* mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); try @@ -59085,7 +59118,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(GL.Enums.BeginMode* mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(GL.Enums.BeginMode* mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) { fixed (Int32* count_ptr = count) { @@ -59095,7 +59128,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(GL.Enums.BeginMode* mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(GL.Enums.BeginMode* mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); fixed (Int32* count_ptr = count) @@ -59111,7 +59144,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(GL.Enums.BeginMode* mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(GL.Enums.BeginMode* mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) { fixed (Int32* count_ptr = &count) { @@ -59121,7 +59154,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(GL.Enums.BeginMode* mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(GL.Enums.BeginMode* mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); fixed (Int32* count_ptr = &count) @@ -59137,7 +59170,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM([In, Out] GL.Enums.BeginMode[] mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements([In, Out] GL.Enums.BeginMode[] mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = mode) { @@ -59147,7 +59180,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM([In, Out] GL.Enums.BeginMode[] mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements([In, Out] GL.Enums.BeginMode[] mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); fixed (GL.Enums.BeginMode* mode_ptr = mode) @@ -59163,7 +59196,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = mode) fixed (Int32* count_ptr = count) @@ -59173,7 +59206,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawElementsIBM([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements([In, Out] GL.Enums.BeginMode[] mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59193,7 +59226,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM([In, Out] GL.Enums.BeginMode[] mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements([In, Out] GL.Enums.BeginMode[] mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = mode) fixed (Int32* count_ptr = &count) @@ -59203,7 +59236,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawElementsIBM([In, Out] GL.Enums.BeginMode[] mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements([In, Out] GL.Enums.BeginMode[] mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59223,7 +59256,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(ref GL.Enums.BeginMode mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(ref GL.Enums.BeginMode mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = &mode) { @@ -59233,7 +59266,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(ref GL.Enums.BeginMode mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(ref GL.Enums.BeginMode mode, Int32* count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); fixed (GL.Enums.BeginMode* mode_ptr = &mode) @@ -59249,7 +59282,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(ref GL.Enums.BeginMode mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(ref GL.Enums.BeginMode mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = &mode) fixed (Int32* count_ptr = count) @@ -59259,7 +59292,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawElementsIBM(ref GL.Enums.BeginMode mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements(ref GL.Enums.BeginMode mode, [In, Out] Int32[] count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59279,7 +59312,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiModeDrawElementsIBM(ref GL.Enums.BeginMode mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) + unsafe void MultiModeDrawElements(ref GL.Enums.BeginMode mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, void* indices, Int32 primcount, Int32 modestride) { fixed (GL.Enums.BeginMode* mode_ptr = &mode) fixed (Int32* count_ptr = &count) @@ -59289,7 +59322,7 @@ namespace OpenTK.OpenGL } public static - void MultiModeDrawElementsIBM(ref GL.Enums.BeginMode mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) + void MultiModeDrawElements(ref GL.Enums.BeginMode mode, ref Int32 count, GL.Enums.IBM_multimode_draw_arrays type, [In, Out] object indices, Int32 primcount, Int32 modestride) { System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59309,13 +59342,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void ColorPointerListIBM(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, void* pointer, Int32 ptrstride) + unsafe void ColorPointerList(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, void* pointer, Int32 ptrstride) { unsafe { Delegates.glColorPointerListIBM((Int32)size, (GL.Enums.ColorPointerType)type, (Int32)stride, (void*)pointer, (Int32)ptrstride); } } public static - void ColorPointerListIBM(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void ColorPointerList(Int32 size, GL.Enums.ColorPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59333,13 +59366,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void SecondaryColorPointerListIBM(Int32 size, GL.Enums.IBM_vertex_array_lists type, Int32 stride, void* pointer, Int32 ptrstride) + unsafe void SecondaryColorPointerList(Int32 size, GL.Enums.IBM_vertex_array_lists type, Int32 stride, void* pointer, Int32 ptrstride) { unsafe { Delegates.glSecondaryColorPointerListIBM((Int32)size, (GL.Enums.IBM_vertex_array_lists)type, (Int32)stride, (void*)pointer, (Int32)ptrstride); } } public static - void SecondaryColorPointerListIBM(Int32 size, GL.Enums.IBM_vertex_array_lists type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void SecondaryColorPointerList(Int32 size, GL.Enums.IBM_vertex_array_lists type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59357,20 +59390,20 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void EdgeFlagPointerListIBM(Int32 stride, Boolean* pointer, Int32 ptrstride) + unsafe void EdgeFlagPointerList(Int32 stride, Boolean* pointer, Int32 ptrstride) { unsafe { Delegates.glEdgeFlagPointerListIBM((Int32)stride, (Boolean*)pointer, (Int32)ptrstride); } } [System.CLSCompliant(false)] public static - unsafe void FogCoordPointerListIBM(GL.Enums.IBM_vertex_array_lists type, Int32 stride, void* pointer, Int32 ptrstride) + unsafe void FogCoordPointerList(GL.Enums.IBM_vertex_array_lists type, Int32 stride, void* pointer, Int32 ptrstride) { unsafe { Delegates.glFogCoordPointerListIBM((GL.Enums.IBM_vertex_array_lists)type, (Int32)stride, (void*)pointer, (Int32)ptrstride); } } public static - void FogCoordPointerListIBM(GL.Enums.IBM_vertex_array_lists type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void FogCoordPointerList(GL.Enums.IBM_vertex_array_lists type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59388,13 +59421,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void IndexPointerListIBM(GL.Enums.IndexPointerType type, Int32 stride, void* pointer, Int32 ptrstride) + unsafe void IndexPointerList(GL.Enums.IndexPointerType type, Int32 stride, void* pointer, Int32 ptrstride) { unsafe { Delegates.glIndexPointerListIBM((GL.Enums.IndexPointerType)type, (Int32)stride, (void*)pointer, (Int32)ptrstride); } } public static - void IndexPointerListIBM(GL.Enums.IndexPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void IndexPointerList(GL.Enums.IndexPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59412,13 +59445,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void NormalPointerListIBM(GL.Enums.NormalPointerType type, Int32 stride, void* pointer, Int32 ptrstride) + unsafe void NormalPointerList(GL.Enums.NormalPointerType type, Int32 stride, void* pointer, Int32 ptrstride) { unsafe { Delegates.glNormalPointerListIBM((GL.Enums.NormalPointerType)type, (Int32)stride, (void*)pointer, (Int32)ptrstride); } } public static - void NormalPointerListIBM(GL.Enums.NormalPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void NormalPointerList(GL.Enums.NormalPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59436,13 +59469,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void TexCoordPointerListIBM(Int32 size, GL.Enums.TexCoordPointerType type, Int32 stride, void* pointer, Int32 ptrstride) + unsafe void TexCoordPointerList(Int32 size, GL.Enums.TexCoordPointerType type, Int32 stride, void* pointer, Int32 ptrstride) { unsafe { Delegates.glTexCoordPointerListIBM((Int32)size, (GL.Enums.TexCoordPointerType)type, (Int32)stride, (void*)pointer, (Int32)ptrstride); } } public static - void TexCoordPointerListIBM(Int32 size, GL.Enums.TexCoordPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void TexCoordPointerList(Int32 size, GL.Enums.TexCoordPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59460,13 +59493,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexPointerListIBM(Int32 size, GL.Enums.VertexPointerType type, Int32 stride, void* pointer, Int32 ptrstride) + unsafe void VertexPointerList(Int32 size, GL.Enums.VertexPointerType type, Int32 stride, void* pointer, Int32 ptrstride) { unsafe { Delegates.glVertexPointerListIBM((Int32)size, (GL.Enums.VertexPointerType)type, (Int32)stride, (void*)pointer, (Int32)ptrstride); } } public static - void VertexPointerListIBM(Int32 size, GL.Enums.VertexPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) + void VertexPointerList(Int32 size, GL.Enums.VertexPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59616,169 +59649,169 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Int32 GenFragmentShadersATI(UInt32 range) + Int32 GenFragmentShaders(UInt32 range) { return Delegates.glGenFragmentShadersATI((UInt32)range); } public static - Int32 GenFragmentShadersATI(Int32 range) + Int32 GenFragmentShaders(Int32 range) { return Delegates.glGenFragmentShadersATI((UInt32)range); } [System.CLSCompliant(false)] public static - void BindFragmentShaderATI(UInt32 id) + void BindFragmentShader(UInt32 id) { Delegates.glBindFragmentShaderATI((UInt32)id); } public static - void BindFragmentShaderATI(Int32 id) + void BindFragmentShader(Int32 id) { Delegates.glBindFragmentShaderATI((UInt32)id); } [System.CLSCompliant(false)] public static - void DeleteFragmentShaderATI(UInt32 id) + void DeleteFragmentShader(UInt32 id) { Delegates.glDeleteFragmentShaderATI((UInt32)id); } public static - void DeleteFragmentShaderATI(Int32 id) + void DeleteFragmentShader(Int32 id) { Delegates.glDeleteFragmentShaderATI((UInt32)id); } public static - void BeginFragmentShaderATI() + void BeginFragmentShader() { Delegates.glBeginFragmentShaderATI(); } public static - void EndFragmentShaderATI() + void EndFragmentShader() { Delegates.glEndFragmentShaderATI(); } [System.CLSCompliant(false)] public static - void PassTexCoordATI(UInt32 dst, UInt32 coord, GL.Enums.ATI_fragment_shader swizzle) + void PassTexCoord(UInt32 dst, UInt32 coord, GL.Enums.ATI_fragment_shader swizzle) { Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (GL.Enums.ATI_fragment_shader)swizzle); } public static - void PassTexCoordATI(Int32 dst, Int32 coord, GL.Enums.ATI_fragment_shader swizzle) + void PassTexCoord(Int32 dst, Int32 coord, GL.Enums.ATI_fragment_shader swizzle) { Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (GL.Enums.ATI_fragment_shader)swizzle); } [System.CLSCompliant(false)] public static - void SampleMapATI(UInt32 dst, UInt32 interp, GL.Enums.ATI_fragment_shader swizzle) + void SampleMap(UInt32 dst, UInt32 interp, GL.Enums.ATI_fragment_shader swizzle) { Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (GL.Enums.ATI_fragment_shader)swizzle); } public static - void SampleMapATI(Int32 dst, Int32 interp, GL.Enums.ATI_fragment_shader swizzle) + void SampleMap(Int32 dst, Int32 interp, GL.Enums.ATI_fragment_shader swizzle) { Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (GL.Enums.ATI_fragment_shader)swizzle); } [System.CLSCompliant(false)] public static - void ColorFragmentOp1ATI(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) + void ColorFragmentOp1(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { Delegates.glColorFragmentOp1ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } public static - void ColorFragmentOp1ATI(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) + void ColorFragmentOp1(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { Delegates.glColorFragmentOp1ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } [System.CLSCompliant(false)] public static - void ColorFragmentOp2ATI(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) + void ColorFragmentOp2(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { Delegates.glColorFragmentOp2ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); } public static - void ColorFragmentOp2ATI(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) + void ColorFragmentOp2(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { Delegates.glColorFragmentOp2ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); } [System.CLSCompliant(false)] public static - void ColorFragmentOp3ATI(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) + void ColorFragmentOp3(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { Delegates.glColorFragmentOp3ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); } public static - void ColorFragmentOp3ATI(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) + void ColorFragmentOp3(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { Delegates.glColorFragmentOp3ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); } [System.CLSCompliant(false)] public static - void AlphaFragmentOp1ATI(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) + void AlphaFragmentOp1(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { Delegates.glAlphaFragmentOp1ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } public static - void AlphaFragmentOp1ATI(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) + void AlphaFragmentOp1(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { Delegates.glAlphaFragmentOp1ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); } [System.CLSCompliant(false)] public static - void AlphaFragmentOp2ATI(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) + void AlphaFragmentOp2(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod) { Delegates.glAlphaFragmentOp2ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); } public static - void AlphaFragmentOp2ATI(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) + void AlphaFragmentOp2(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod) { Delegates.glAlphaFragmentOp2ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); } [System.CLSCompliant(false)] public static - void AlphaFragmentOp3ATI(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) + void AlphaFragmentOp3(GL.Enums.ATI_fragment_shader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod) { Delegates.glAlphaFragmentOp3ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); } public static - void AlphaFragmentOp3ATI(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) + void AlphaFragmentOp3(GL.Enums.ATI_fragment_shader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod, Int32 arg3, Int32 arg3Rep, Int32 arg3Mod) { Delegates.glAlphaFragmentOp3ATI((GL.Enums.ATI_fragment_shader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); } [System.CLSCompliant(false)] public static - unsafe void SetFragmentShaderConstantATI(UInt32 dst, Single* value) + unsafe void SetFragmentShaderConstant(UInt32 dst, Single* value) { unsafe { Delegates.glSetFragmentShaderConstantATI((UInt32)dst, (Single*)value); } } [System.CLSCompliant(false)] public static - unsafe void SetFragmentShaderConstantATI(Int32 dst, Single* value) + unsafe void SetFragmentShaderConstant(Int32 dst, Single* value) { { Delegates.glSetFragmentShaderConstantATI((UInt32)dst, (Single*)value); @@ -59787,7 +59820,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SetFragmentShaderConstantATI(UInt32 dst, [In, Out] Single[] value) + void SetFragmentShaderConstant(UInt32 dst, [In, Out] Single[] value) { unsafe { @@ -59799,7 +59832,7 @@ namespace OpenTK.OpenGL } public static - void SetFragmentShaderConstantATI(Int32 dst, [In, Out] Single[] value) + void SetFragmentShaderConstant(Int32 dst, [In, Out] Single[] value) { unsafe { @@ -59812,7 +59845,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SetFragmentShaderConstantATI(UInt32 dst, ref Single value) + void SetFragmentShaderConstant(UInt32 dst, ref Single value) { unsafe { @@ -59824,7 +59857,7 @@ namespace OpenTK.OpenGL } public static - void SetFragmentShaderConstantATI(Int32 dst, ref Single value) + void SetFragmentShaderConstant(Int32 dst, ref Single value) { unsafe { @@ -59836,26 +59869,26 @@ namespace OpenTK.OpenGL } public static - void PNTrianglesiATI(GL.Enums.ATI_pn_triangles pname, Int32 param) + void PNTrianglesi(GL.Enums.ATI_pn_triangles pname, Int32 param) { Delegates.glPNTrianglesiATI((GL.Enums.ATI_pn_triangles)pname, (Int32)param); } public static - void PNTrianglesfATI(GL.Enums.ATI_pn_triangles pname, Single param) + void PNTrianglesf(GL.Enums.ATI_pn_triangles pname, Single param) { Delegates.glPNTrianglesfATI((GL.Enums.ATI_pn_triangles)pname, (Single)param); } [System.CLSCompliant(false)] public static - unsafe Int32 NewObjectBufferATI(Int32 size, void* pointer, GL.Enums.ATI_vertex_array_object usage) + unsafe Int32 NewObjectBuffer(Int32 size, void* pointer, GL.Enums.ATI_vertex_array_object usage) { unsafe { return Delegates.glNewObjectBufferATI((Int32)size, (void*)pointer, (GL.Enums.ATI_vertex_array_object)usage); } } public static - Int32 NewObjectBufferATI(Int32 size, [In, Out] object pointer, GL.Enums.ATI_vertex_array_object usage) + Int32 NewObjectBuffer(Int32 size, [In, Out] object pointer, GL.Enums.ATI_vertex_array_object usage) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59874,27 +59907,27 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsObjectBufferATI(UInt32 buffer) + Boolean IsObjectBuffer(UInt32 buffer) { return Delegates.glIsObjectBufferATI((UInt32)buffer); } public static - Boolean IsObjectBufferATI(Int32 buffer) + Boolean IsObjectBuffer(Int32 buffer) { return Delegates.glIsObjectBufferATI((UInt32)buffer); } [System.CLSCompliant(false)] public static - unsafe void UpdateObjectBufferATI(UInt32 buffer, UInt32 offset, Int32 size, void* pointer, GL.Enums.ATI_vertex_array_object preserve) + unsafe void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, void* pointer, GL.Enums.ATI_vertex_array_object preserve) { unsafe { Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (void*)pointer, (GL.Enums.ATI_vertex_array_object)preserve); } } [System.CLSCompliant(false)] public static - unsafe void UpdateObjectBufferATI(Int32 buffer, Int32 offset, Int32 size, void* pointer, GL.Enums.ATI_vertex_array_object preserve) + unsafe void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, void* pointer, GL.Enums.ATI_vertex_array_object preserve) { { Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (void*)pointer, (GL.Enums.ATI_vertex_array_object)preserve); @@ -59903,7 +59936,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void UpdateObjectBufferATI(UInt32 buffer, UInt32 offset, Int32 size, [In, Out] object pointer, GL.Enums.ATI_vertex_array_object preserve) + void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [In, Out] object pointer, GL.Enums.ATI_vertex_array_object preserve) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -59920,7 +59953,7 @@ namespace OpenTK.OpenGL } public static - void UpdateObjectBufferATI(Int32 buffer, Int32 offset, Int32 size, [In, Out] object pointer, GL.Enums.ATI_vertex_array_object preserve) + void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [In, Out] object pointer, GL.Enums.ATI_vertex_array_object preserve) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -60080,26 +60113,26 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void FreeObjectBufferATI(UInt32 buffer) + void FreeObjectBuffer(UInt32 buffer) { Delegates.glFreeObjectBufferATI((UInt32)buffer); } public static - void FreeObjectBufferATI(Int32 buffer) + void FreeObjectBuffer(Int32 buffer) { Delegates.glFreeObjectBufferATI((UInt32)buffer); } [System.CLSCompliant(false)] public static - void ArrayObjectATI(GL.Enums.EnableCap array, Int32 size, GL.Enums.ATI_vertex_array_object type, Int32 stride, UInt32 buffer, UInt32 offset) + void ArrayObject(GL.Enums.EnableCap array, Int32 size, GL.Enums.ATI_vertex_array_object type, Int32 stride, UInt32 buffer, UInt32 offset) { Delegates.glArrayObjectATI((GL.Enums.EnableCap)array, (Int32)size, (GL.Enums.ATI_vertex_array_object)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void ArrayObjectATI(GL.Enums.EnableCap array, Int32 size, GL.Enums.ATI_vertex_array_object type, Int32 stride, Int32 buffer, Int32 offset) + void ArrayObject(GL.Enums.EnableCap array, Int32 size, GL.Enums.ATI_vertex_array_object type, Int32 stride, Int32 buffer, Int32 offset) { Delegates.glArrayObjectATI((GL.Enums.EnableCap)array, (Int32)size, (GL.Enums.ATI_vertex_array_object)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } @@ -60172,13 +60205,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void VariantArrayObjectATI(UInt32 id, GL.Enums.ATI_vertex_array_object type, Int32 stride, UInt32 buffer, UInt32 offset) + void VariantArrayObject(UInt32 id, GL.Enums.ATI_vertex_array_object type, Int32 stride, UInt32 buffer, UInt32 offset) { Delegates.glVariantArrayObjectATI((UInt32)id, (GL.Enums.ATI_vertex_array_object)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void VariantArrayObjectATI(Int32 id, GL.Enums.ATI_vertex_array_object type, Int32 stride, Int32 buffer, Int32 offset) + void VariantArrayObject(Int32 id, GL.Enums.ATI_vertex_array_object type, Int32 stride, Int32 buffer, Int32 offset) { Delegates.glVariantArrayObjectATI((UInt32)id, (GL.Enums.ATI_vertex_array_object)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); } @@ -60333,13 +60366,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Int16* coords) + unsafe void VertexStream1sv(GL.Enums.ATI_vertex_streams stream, Int16* coords) { unsafe { Delegates.glVertexStream1svATI((GL.Enums.ATI_vertex_streams)stream, (Int16*)coords); } } public static - void VertexStream1v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) + void VertexStream1sv(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) { unsafe { @@ -60351,7 +60384,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream1v(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) + void VertexStream1sv(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) { unsafe { @@ -60370,13 +60403,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Int32* coords) + unsafe void VertexStream1iv(GL.Enums.ATI_vertex_streams stream, Int32* coords) { unsafe { Delegates.glVertexStream1ivATI((GL.Enums.ATI_vertex_streams)stream, (Int32*)coords); } } public static - void VertexStream1v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) + void VertexStream1iv(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) { unsafe { @@ -60388,7 +60421,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream1v(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) + void VertexStream1iv(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) { unsafe { @@ -60407,13 +60440,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Single* coords) + unsafe void VertexStream1fv(GL.Enums.ATI_vertex_streams stream, Single* coords) { unsafe { Delegates.glVertexStream1fvATI((GL.Enums.ATI_vertex_streams)stream, (Single*)coords); } } public static - void VertexStream1v(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) + void VertexStream1fv(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) { unsafe { @@ -60425,7 +60458,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream1v(GL.Enums.ATI_vertex_streams stream, ref Single coords) + void VertexStream1fv(GL.Enums.ATI_vertex_streams stream, ref Single coords) { unsafe { @@ -60444,13 +60477,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream1v(GL.Enums.ATI_vertex_streams stream, Double* coords) + unsafe void VertexStream1dv(GL.Enums.ATI_vertex_streams stream, Double* coords) { unsafe { Delegates.glVertexStream1dvATI((GL.Enums.ATI_vertex_streams)stream, (Double*)coords); } } public static - void VertexStream1v(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) + void VertexStream1dv(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) { unsafe { @@ -60462,7 +60495,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream1v(GL.Enums.ATI_vertex_streams stream, ref Double coords) + void VertexStream1dv(GL.Enums.ATI_vertex_streams stream, ref Double coords) { unsafe { @@ -60481,13 +60514,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream2v(GL.Enums.ATI_vertex_streams stream, Int16* coords) + unsafe void VertexStream2(GL.Enums.ATI_vertex_streams stream, Int16* coords) { unsafe { Delegates.glVertexStream2svATI((GL.Enums.ATI_vertex_streams)stream, (Int16*)coords); } } public static - void VertexStream2v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) + void VertexStream2(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) { unsafe { @@ -60499,7 +60532,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream2v(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) + void VertexStream2(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) { unsafe { @@ -60518,13 +60551,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream2v(GL.Enums.ATI_vertex_streams stream, Int32* coords) + unsafe void VertexStream2(GL.Enums.ATI_vertex_streams stream, Int32* coords) { unsafe { Delegates.glVertexStream2ivATI((GL.Enums.ATI_vertex_streams)stream, (Int32*)coords); } } public static - void VertexStream2v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) + void VertexStream2(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) { unsafe { @@ -60536,7 +60569,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream2v(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) + void VertexStream2(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) { unsafe { @@ -60555,13 +60588,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream2v(GL.Enums.ATI_vertex_streams stream, Single* coords) + unsafe void VertexStream2(GL.Enums.ATI_vertex_streams stream, Single* coords) { unsafe { Delegates.glVertexStream2fvATI((GL.Enums.ATI_vertex_streams)stream, (Single*)coords); } } public static - void VertexStream2v(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) + void VertexStream2(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) { unsafe { @@ -60573,7 +60606,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream2v(GL.Enums.ATI_vertex_streams stream, ref Single coords) + void VertexStream2(GL.Enums.ATI_vertex_streams stream, ref Single coords) { unsafe { @@ -60592,13 +60625,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream2v(GL.Enums.ATI_vertex_streams stream, Double* coords) + unsafe void VertexStream2(GL.Enums.ATI_vertex_streams stream, Double* coords) { unsafe { Delegates.glVertexStream2dvATI((GL.Enums.ATI_vertex_streams)stream, (Double*)coords); } } public static - void VertexStream2v(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) + void VertexStream2(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) { unsafe { @@ -60610,7 +60643,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream2v(GL.Enums.ATI_vertex_streams stream, ref Double coords) + void VertexStream2(GL.Enums.ATI_vertex_streams stream, ref Double coords) { unsafe { @@ -60629,13 +60662,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream3v(GL.Enums.ATI_vertex_streams stream, Int16* coords) + unsafe void VertexStream3(GL.Enums.ATI_vertex_streams stream, Int16* coords) { unsafe { Delegates.glVertexStream3svATI((GL.Enums.ATI_vertex_streams)stream, (Int16*)coords); } } public static - void VertexStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) + void VertexStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) { unsafe { @@ -60647,7 +60680,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream3v(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) + void VertexStream3(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) { unsafe { @@ -60666,13 +60699,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream3v(GL.Enums.ATI_vertex_streams stream, Int32* coords) + unsafe void VertexStream3(GL.Enums.ATI_vertex_streams stream, Int32* coords) { unsafe { Delegates.glVertexStream3ivATI((GL.Enums.ATI_vertex_streams)stream, (Int32*)coords); } } public static - void VertexStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) + void VertexStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) { unsafe { @@ -60684,7 +60717,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream3v(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) + void VertexStream3(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) { unsafe { @@ -60703,13 +60736,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream3v(GL.Enums.ATI_vertex_streams stream, Single* coords) + unsafe void VertexStream3(GL.Enums.ATI_vertex_streams stream, Single* coords) { unsafe { Delegates.glVertexStream3fvATI((GL.Enums.ATI_vertex_streams)stream, (Single*)coords); } } public static - void VertexStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) + void VertexStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) { unsafe { @@ -60721,7 +60754,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream3v(GL.Enums.ATI_vertex_streams stream, ref Single coords) + void VertexStream3(GL.Enums.ATI_vertex_streams stream, ref Single coords) { unsafe { @@ -60740,13 +60773,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream3v(GL.Enums.ATI_vertex_streams stream, Double* coords) + unsafe void VertexStream3(GL.Enums.ATI_vertex_streams stream, Double* coords) { unsafe { Delegates.glVertexStream3dvATI((GL.Enums.ATI_vertex_streams)stream, (Double*)coords); } } public static - void VertexStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) + void VertexStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) { unsafe { @@ -60758,7 +60791,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream3v(GL.Enums.ATI_vertex_streams stream, ref Double coords) + void VertexStream3(GL.Enums.ATI_vertex_streams stream, ref Double coords) { unsafe { @@ -60777,13 +60810,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream4v(GL.Enums.ATI_vertex_streams stream, Int16* coords) + unsafe void VertexStream4(GL.Enums.ATI_vertex_streams stream, Int16* coords) { unsafe { Delegates.glVertexStream4svATI((GL.Enums.ATI_vertex_streams)stream, (Int16*)coords); } } public static - void VertexStream4v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) + void VertexStream4(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) { unsafe { @@ -60795,7 +60828,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream4v(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) + void VertexStream4(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) { unsafe { @@ -60814,13 +60847,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream4v(GL.Enums.ATI_vertex_streams stream, Int32* coords) + unsafe void VertexStream4(GL.Enums.ATI_vertex_streams stream, Int32* coords) { unsafe { Delegates.glVertexStream4ivATI((GL.Enums.ATI_vertex_streams)stream, (Int32*)coords); } } public static - void VertexStream4v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) + void VertexStream4(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) { unsafe { @@ -60832,7 +60865,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream4v(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) + void VertexStream4(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) { unsafe { @@ -60851,13 +60884,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream4v(GL.Enums.ATI_vertex_streams stream, Single* coords) + unsafe void VertexStream4(GL.Enums.ATI_vertex_streams stream, Single* coords) { unsafe { Delegates.glVertexStream4fvATI((GL.Enums.ATI_vertex_streams)stream, (Single*)coords); } } public static - void VertexStream4v(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) + void VertexStream4(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) { unsafe { @@ -60869,7 +60902,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream4v(GL.Enums.ATI_vertex_streams stream, ref Single coords) + void VertexStream4(GL.Enums.ATI_vertex_streams stream, ref Single coords) { unsafe { @@ -60888,13 +60921,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void VertexStream4v(GL.Enums.ATI_vertex_streams stream, Double* coords) + unsafe void VertexStream4(GL.Enums.ATI_vertex_streams stream, Double* coords) { unsafe { Delegates.glVertexStream4dvATI((GL.Enums.ATI_vertex_streams)stream, (Double*)coords); } } public static - void VertexStream4v(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) + void VertexStream4(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) { unsafe { @@ -60906,7 +60939,7 @@ namespace OpenTK.OpenGL } public static - void VertexStream4v(GL.Enums.ATI_vertex_streams stream, ref Double coords) + void VertexStream4(GL.Enums.ATI_vertex_streams stream, ref Double coords) { unsafe { @@ -60932,14 +60965,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void NormalStream3v(GL.Enums.ATI_vertex_streams stream, SByte* coords) + unsafe void NormalStream3(GL.Enums.ATI_vertex_streams stream, SByte* coords) { unsafe { Delegates.glNormalStream3bvATI((GL.Enums.ATI_vertex_streams)stream, (SByte*)coords); } } [System.CLSCompliant(false)] public static - unsafe void NormalStream3v(GL.Enums.ATI_vertex_streams stream, Byte* coords) + unsafe void NormalStream3(GL.Enums.ATI_vertex_streams stream, Byte* coords) { { Delegates.glNormalStream3bvATI((GL.Enums.ATI_vertex_streams)stream, (SByte*)coords); @@ -60948,7 +60981,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] SByte[] coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] SByte[] coords) { unsafe { @@ -60960,7 +60993,7 @@ namespace OpenTK.OpenGL } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] Byte[] coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] Byte[] coords) { unsafe { @@ -60973,7 +61006,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, ref SByte coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, ref SByte coords) { unsafe { @@ -60985,7 +61018,7 @@ namespace OpenTK.OpenGL } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, ref Byte coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, ref Byte coords) { unsafe { @@ -61004,13 +61037,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void NormalStream3v(GL.Enums.ATI_vertex_streams stream, Int16* coords) + unsafe void NormalStream3(GL.Enums.ATI_vertex_streams stream, Int16* coords) { unsafe { Delegates.glNormalStream3svATI((GL.Enums.ATI_vertex_streams)stream, (Int16*)coords); } } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] Int16[] coords) { unsafe { @@ -61022,7 +61055,7 @@ namespace OpenTK.OpenGL } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, ref Int16 coords) { unsafe { @@ -61041,13 +61074,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void NormalStream3v(GL.Enums.ATI_vertex_streams stream, Int32* coords) + unsafe void NormalStream3(GL.Enums.ATI_vertex_streams stream, Int32* coords) { unsafe { Delegates.glNormalStream3ivATI((GL.Enums.ATI_vertex_streams)stream, (Int32*)coords); } } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] Int32[] coords) { unsafe { @@ -61059,7 +61092,7 @@ namespace OpenTK.OpenGL } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, ref Int32 coords) { unsafe { @@ -61078,13 +61111,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void NormalStream3v(GL.Enums.ATI_vertex_streams stream, Single* coords) + unsafe void NormalStream3(GL.Enums.ATI_vertex_streams stream, Single* coords) { unsafe { Delegates.glNormalStream3fvATI((GL.Enums.ATI_vertex_streams)stream, (Single*)coords); } } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] Single[] coords) { unsafe { @@ -61096,7 +61129,7 @@ namespace OpenTK.OpenGL } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, ref Single coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, ref Single coords) { unsafe { @@ -61115,13 +61148,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void NormalStream3v(GL.Enums.ATI_vertex_streams stream, Double* coords) + unsafe void NormalStream3(GL.Enums.ATI_vertex_streams stream, Double* coords) { unsafe { Delegates.glNormalStream3dvATI((GL.Enums.ATI_vertex_streams)stream, (Double*)coords); } } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, [In, Out] Double[] coords) { unsafe { @@ -61133,7 +61166,7 @@ namespace OpenTK.OpenGL } public static - void NormalStream3v(GL.Enums.ATI_vertex_streams stream, ref Double coords) + void NormalStream3(GL.Enums.ATI_vertex_streams stream, ref Double coords) { unsafe { @@ -61145,32 +61178,32 @@ namespace OpenTK.OpenGL } public static - void ClientActiveVertexStreamATI(GL.Enums.ATI_vertex_streams stream) + void ClientActiveVertexStream(GL.Enums.ATI_vertex_streams stream) { Delegates.glClientActiveVertexStreamATI((GL.Enums.ATI_vertex_streams)stream); } public static - void VertexBlendEnviATI(GL.Enums.ATI_vertex_streams pname, Int32 param) + void VertexBlendEnvi(GL.Enums.ATI_vertex_streams pname, Int32 param) { Delegates.glVertexBlendEnviATI((GL.Enums.ATI_vertex_streams)pname, (Int32)param); } public static - void VertexBlendEnvfATI(GL.Enums.ATI_vertex_streams pname, Single param) + void VertexBlendEnvf(GL.Enums.ATI_vertex_streams pname, Single param) { Delegates.glVertexBlendEnvfATI((GL.Enums.ATI_vertex_streams)pname, (Single)param); } [System.CLSCompliant(false)] public static - unsafe void ElementPointerATI(GL.Enums.ATI_element_array type, void* pointer) + unsafe void ElementPointer(GL.Enums.ATI_element_array type, void* pointer) { unsafe { Delegates.glElementPointerATI((GL.Enums.ATI_element_array)type, (void*)pointer); } } public static - void ElementPointerATI(GL.Enums.ATI_element_array type, [In, Out] object pointer) + void ElementPointer(GL.Enums.ATI_element_array type, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -61187,33 +61220,33 @@ namespace OpenTK.OpenGL } public static - void DrawElementArrayATI(GL.Enums.BeginMode mode, Int32 count) + void DrawElementArray(GL.Enums.BeginMode mode, Int32 count) { Delegates.glDrawElementArrayATI((GL.Enums.BeginMode)mode, (Int32)count); } [System.CLSCompliant(false)] public static - void DrawRangeElementArrayATI(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count) + void DrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 count) { Delegates.glDrawRangeElementArrayATI((GL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count); } public static - void DrawRangeElementArrayATI(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count) + void DrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 count) { Delegates.glDrawRangeElementArrayATI((GL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count); } [System.CLSCompliant(false)] public static - unsafe void DrawBuffersATI(Int32 n, GL.Enums.ATI_draw_buffers* bufs) + unsafe void DrawBuffers(Int32 n, GL.Enums.ATI_draw_buffers* bufs) { unsafe { Delegates.glDrawBuffersATI((Int32)n, (GL.Enums.ATI_draw_buffers*)bufs); } } public static - void DrawBuffersATI(Int32 n, [In, Out] GL.Enums.ATI_draw_buffers[] bufs) + void DrawBuffers(Int32 n, [In, Out] GL.Enums.ATI_draw_buffers[] bufs) { unsafe { @@ -61225,7 +61258,7 @@ namespace OpenTK.OpenGL } public static - void DrawBuffersATI(Int32 n, ref GL.Enums.ATI_draw_buffers bufs) + void DrawBuffers(Int32 n, ref GL.Enums.ATI_draw_buffers bufs) { unsafe { @@ -61238,13 +61271,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - IntPtr MapObjectBufferATI(UInt32 buffer) + IntPtr MapObjectBuffer(UInt32 buffer) { return Delegates.glMapObjectBufferATI((UInt32)buffer); } public static - IntPtr MapObjectBufferATI(Int32 buffer) + IntPtr MapObjectBuffer(Int32 buffer) { unsafe { @@ -61257,45 +61290,45 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void UnmapObjectBufferATI(UInt32 buffer) + void UnmapObjectBuffer(UInt32 buffer) { Delegates.glUnmapObjectBufferATI((UInt32)buffer); } public static - void UnmapObjectBufferATI(Int32 buffer) + void UnmapObjectBuffer(Int32 buffer) { Delegates.glUnmapObjectBufferATI((UInt32)buffer); } public static - void StencilOpSeparateATI(GL.Enums.ATI_separate_stencil face, GL.Enums.StencilOp sfail, GL.Enums.StencilOp dpfail, GL.Enums.StencilOp dppass) + void StencilOpSeparate(GL.Enums.ATI_separate_stencil face, GL.Enums.StencilOp sfail, GL.Enums.StencilOp dpfail, GL.Enums.StencilOp dppass) { Delegates.glStencilOpSeparateATI((GL.Enums.ATI_separate_stencil)face, (GL.Enums.StencilOp)sfail, (GL.Enums.StencilOp)dpfail, (GL.Enums.StencilOp)dppass); } [System.CLSCompliant(false)] public static - void StencilFuncSeparateATI(GL.Enums.StencilFunction frontfunc, GL.Enums.StencilFunction backfunc, Int32 @ref, UInt32 mask) + void StencilFuncSeparate(GL.Enums.StencilFunction frontfunc, GL.Enums.StencilFunction backfunc, Int32 @ref, UInt32 mask) { Delegates.glStencilFuncSeparateATI((GL.Enums.StencilFunction)frontfunc, (GL.Enums.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); } public static - void StencilFuncSeparateATI(GL.Enums.StencilFunction frontfunc, GL.Enums.StencilFunction backfunc, Int32 @ref, Int32 mask) + void StencilFuncSeparate(GL.Enums.StencilFunction frontfunc, GL.Enums.StencilFunction backfunc, Int32 @ref, Int32 mask) { Delegates.glStencilFuncSeparateATI((GL.Enums.StencilFunction)frontfunc, (GL.Enums.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); } [System.CLSCompliant(false)] public static - void VertexAttribArrayObjectATI(UInt32 index, Int32 size, GL.Enums.ATI_vertex_attrib_array_object type, GL.Enums.Boolean normalized, Int32 stride, UInt32 buffer, UInt32 offset) + void VertexAttribArrayObject(UInt32 index, Int32 size, GL.Enums.ATI_vertex_attrib_array_object type, GL.Enums.Boolean normalized, Int32 stride, UInt32 buffer, UInt32 offset) { Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (GL.Enums.ATI_vertex_attrib_array_object)type, (GL.Enums.Boolean)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); } public static - void VertexAttribArrayObjectATI(Int32 index, Int32 size, GL.Enums.ATI_vertex_attrib_array_object type, GL.Enums.Boolean normalized, Int32 stride, Int32 buffer, Int32 offset) + void VertexAttribArrayObject(Int32 index, Int32 size, GL.Enums.ATI_vertex_attrib_array_object type, GL.Enums.Boolean normalized, Int32 stride, Int32 buffer, Int32 offset) { unsafe { @@ -61453,13 +61486,13 @@ namespace OpenTK.OpenGL { [System.CLSCompliant(false)] public static - unsafe void ElementPointerAPPLE(GL.Enums.APPLE_element_array type, void* pointer) + unsafe void ElementPointer(GL.Enums.APPLE_element_array type, void* pointer) { unsafe { Delegates.glElementPointerAPPLE((GL.Enums.APPLE_element_array)type, (void*)pointer); } } public static - void ElementPointerAPPLE(GL.Enums.APPLE_element_array type, [In, Out] object pointer) + void ElementPointer(GL.Enums.APPLE_element_array type, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -61476,34 +61509,34 @@ namespace OpenTK.OpenGL } public static - void DrawElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 first, Int32 count) + void DrawElementArray(GL.Enums.BeginMode mode, Int32 first, Int32 count) { Delegates.glDrawElementArrayAPPLE((GL.Enums.BeginMode)mode, (Int32)first, (Int32)count); } [System.CLSCompliant(false)] public static - void DrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count) + void DrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { Delegates.glDrawRangeElementArrayAPPLE((GL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); } public static - void DrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 first, Int32 count) + void DrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32 first, Int32 count) { Delegates.glDrawRangeElementArrayAPPLE((GL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); } [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementArrayAPPLE(GL.Enums.BeginMode mode, Int32* first, Int32* count, Int32 primcount) + unsafe void MultiDrawElementArray(GL.Enums.BeginMode mode, Int32* first, Int32* count, Int32 primcount) { unsafe { Delegates.glMultiDrawElementArrayAPPLE((GL.Enums.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount); } } [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementArrayAPPLE(GL.Enums.BeginMode mode, Int32* first, [In, Out] Int32[] count, Int32 primcount) + unsafe void MultiDrawElementArray(GL.Enums.BeginMode mode, Int32* first, [In, Out] Int32[] count, Int32 primcount) { fixed (Int32* count_ptr = count) { @@ -61513,7 +61546,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementArrayAPPLE(GL.Enums.BeginMode mode, Int32* first, ref Int32 count, Int32 primcount) + unsafe void MultiDrawElementArray(GL.Enums.BeginMode mode, Int32* first, ref Int32 count, Int32 primcount) { fixed (Int32* count_ptr = &count) { @@ -61523,7 +61556,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementArrayAPPLE(GL.Enums.BeginMode mode, [In, Out] Int32[] first, Int32* count, Int32 primcount) + unsafe void MultiDrawElementArray(GL.Enums.BeginMode mode, [In, Out] Int32[] first, Int32* count, Int32 primcount) { fixed (Int32* first_ptr = first) { @@ -61532,7 +61565,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawElementArrayAPPLE(GL.Enums.BeginMode mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount) + void MultiDrawElementArray(GL.Enums.BeginMode mode, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount) { unsafe { @@ -61545,7 +61578,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawElementArrayAPPLE(GL.Enums.BeginMode mode, [In, Out] Int32[] first, ref Int32 count, Int32 primcount) + void MultiDrawElementArray(GL.Enums.BeginMode mode, [In, Out] Int32[] first, ref Int32 count, Int32 primcount) { unsafe { @@ -61559,7 +61592,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawElementArrayAPPLE(GL.Enums.BeginMode mode, ref Int32 first, Int32* count, Int32 primcount) + unsafe void MultiDrawElementArray(GL.Enums.BeginMode mode, ref Int32 first, Int32* count, Int32 primcount) { fixed (Int32* first_ptr = &first) { @@ -61568,7 +61601,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawElementArrayAPPLE(GL.Enums.BeginMode mode, ref Int32 first, [In, Out] Int32[] count, Int32 primcount) + void MultiDrawElementArray(GL.Enums.BeginMode mode, ref Int32 first, [In, Out] Int32[] count, Int32 primcount) { unsafe { @@ -61581,7 +61614,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawElementArrayAPPLE(GL.Enums.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount) + void MultiDrawElementArray(GL.Enums.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount) { unsafe { @@ -61595,14 +61628,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount) { unsafe { Delegates.glMultiDrawRangeElementArrayAPPLE((GL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); } } [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32* first, Int32* count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32* first, Int32* count, Int32 primcount) { { Delegates.glMultiDrawRangeElementArrayAPPLE((GL.Enums.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); @@ -61611,7 +61644,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32* first, [In, Out] Int32[] count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32* first, [In, Out] Int32[] count, Int32 primcount) { fixed (Int32* count_ptr = count) { @@ -61621,7 +61654,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32* first, [In, Out] Int32[] count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32* first, [In, Out] Int32[] count, Int32 primcount) { fixed (Int32* count_ptr = count) { @@ -61631,7 +61664,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32* first, ref Int32 count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, Int32* first, ref Int32 count, Int32 primcount) { fixed (Int32* count_ptr = &count) { @@ -61641,7 +61674,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32* first, ref Int32 count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, Int32* first, ref Int32 count, Int32 primcount) { fixed (Int32* count_ptr = &count) { @@ -61651,7 +61684,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, [In, Out] Int32[] first, Int32* count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, [In, Out] Int32[] first, Int32* count, Int32 primcount) { fixed (Int32* first_ptr = first) { @@ -61661,7 +61694,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, [In, Out] Int32[] first, Int32* count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, [In, Out] Int32[] first, Int32* count, Int32 primcount) { fixed (Int32* first_ptr = first) { @@ -61671,7 +61704,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount) + void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount) { unsafe { @@ -61684,7 +61717,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount) + void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, [In, Out] Int32[] first, [In, Out] Int32[] count, Int32 primcount) { unsafe { @@ -61698,7 +61731,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, [In, Out] Int32[] first, ref Int32 count, Int32 primcount) + void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, [In, Out] Int32[] first, ref Int32 count, Int32 primcount) { unsafe { @@ -61711,7 +61744,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, [In, Out] Int32[] first, ref Int32 count, Int32 primcount) + void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, [In, Out] Int32[] first, ref Int32 count, Int32 primcount) { unsafe { @@ -61725,7 +61758,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, Int32* count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, Int32* count, Int32 primcount) { fixed (Int32* first_ptr = &first) { @@ -61735,7 +61768,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, ref Int32 first, Int32* count, Int32 primcount) + unsafe void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, ref Int32 first, Int32* count, Int32 primcount) { fixed (Int32* first_ptr = &first) { @@ -61745,7 +61778,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, [In, Out] Int32[] count, Int32 primcount) + void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, [In, Out] Int32[] count, Int32 primcount) { unsafe { @@ -61758,7 +61791,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, ref Int32 first, [In, Out] Int32[] count, Int32 primcount) + void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, ref Int32 first, [In, Out] Int32[] count, Int32 primcount) { unsafe { @@ -61772,7 +61805,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, ref Int32 count, Int32 primcount) + void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, ref Int32 count, Int32 primcount) { unsafe { @@ -61785,7 +61818,7 @@ namespace OpenTK.OpenGL } public static - void MultiDrawRangeElementArrayAPPLE(GL.Enums.BeginMode mode, Int32 start, Int32 end, ref Int32 first, ref Int32 count, Int32 primcount) + void MultiDrawRangeElementArray(GL.Enums.BeginMode mode, Int32 start, Int32 end, ref Int32 first, ref Int32 count, Int32 primcount) { unsafe { @@ -61799,14 +61832,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenFencesAPPLE(Int32 n, [Out] UInt32* fences) + unsafe void GenFences(Int32 n, [Out] UInt32* fences) { unsafe { Delegates.glGenFencesAPPLE((Int32)n, (UInt32*)fences); } } [System.CLSCompliant(false)] public static - unsafe void GenFencesAPPLE(Int32 n, [Out] Int32* fences) + unsafe void GenFences(Int32 n, [Out] Int32* fences) { fences = default(Int32*); { @@ -61816,7 +61849,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFencesAPPLE(Int32 n, [In, Out] UInt32[] fences) + void GenFences(Int32 n, [In, Out] UInt32[] fences) { unsafe { @@ -61828,7 +61861,7 @@ namespace OpenTK.OpenGL } public static - void GenFencesAPPLE(Int32 n, [In, Out] Int32[] fences) + void GenFences(Int32 n, [In, Out] Int32[] fences) { unsafe { @@ -61841,7 +61874,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenFencesAPPLE(Int32 n, [Out] out UInt32 fences) + void GenFences(Int32 n, [Out] out UInt32 fences) { fences = default(UInt32); unsafe @@ -61855,7 +61888,7 @@ namespace OpenTK.OpenGL } public static - void GenFencesAPPLE(Int32 n, [Out] out Int32 fences) + void GenFences(Int32 n, [Out] out Int32 fences) { fences = default(Int32); unsafe @@ -61870,14 +61903,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void DeleteFencesAPPLE(Int32 n, UInt32* fences) + unsafe void DeleteFences(Int32 n, UInt32* fences) { unsafe { Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences); } } [System.CLSCompliant(false)] public static - unsafe void DeleteFencesAPPLE(Int32 n, Int32* fences) + unsafe void DeleteFences(Int32 n, Int32* fences) { { Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences); @@ -61886,7 +61919,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFencesAPPLE(Int32 n, [In, Out] UInt32[] fences) + void DeleteFences(Int32 n, [In, Out] UInt32[] fences) { unsafe { @@ -61898,7 +61931,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFencesAPPLE(Int32 n, [In, Out] Int32[] fences) + void DeleteFences(Int32 n, [In, Out] Int32[] fences) { unsafe { @@ -61911,7 +61944,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteFencesAPPLE(Int32 n, ref UInt32 fences) + void DeleteFences(Int32 n, ref UInt32 fences) { unsafe { @@ -61923,7 +61956,7 @@ namespace OpenTK.OpenGL } public static - void DeleteFencesAPPLE(Int32 n, ref Int32 fences) + void DeleteFences(Int32 n, ref Int32 fences) { unsafe { @@ -61936,98 +61969,98 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void SetFenceAPPLE(UInt32 fence) + void SetFence(UInt32 fence) { Delegates.glSetFenceAPPLE((UInt32)fence); } public static - void SetFenceAPPLE(Int32 fence) + void SetFence(Int32 fence) { Delegates.glSetFenceAPPLE((UInt32)fence); } [System.CLSCompliant(false)] public static - Boolean IsFenceAPPLE(UInt32 fence) + Boolean IsFence(UInt32 fence) { return Delegates.glIsFenceAPPLE((UInt32)fence); } public static - Boolean IsFenceAPPLE(Int32 fence) + Boolean IsFence(Int32 fence) { return Delegates.glIsFenceAPPLE((UInt32)fence); } [System.CLSCompliant(false)] public static - Boolean TestFenceAPPLE(UInt32 fence) + Boolean TestFence(UInt32 fence) { return Delegates.glTestFenceAPPLE((UInt32)fence); } public static - Boolean TestFenceAPPLE(Int32 fence) + Boolean TestFence(Int32 fence) { return Delegates.glTestFenceAPPLE((UInt32)fence); } [System.CLSCompliant(false)] public static - void FinishFenceAPPLE(UInt32 fence) + void FinishFence(UInt32 fence) { Delegates.glFinishFenceAPPLE((UInt32)fence); } public static - void FinishFenceAPPLE(Int32 fence) + void FinishFence(Int32 fence) { Delegates.glFinishFenceAPPLE((UInt32)fence); } [System.CLSCompliant(false)] public static - Boolean TestObjectAPPLE(GL.Enums.APPLE_fence @object, UInt32 name) + Boolean TestObject(GL.Enums.APPLE_fence @object, UInt32 name) { return Delegates.glTestObjectAPPLE((GL.Enums.APPLE_fence)@object, (UInt32)name); } public static - Boolean TestObjectAPPLE(GL.Enums.APPLE_fence @object, Int32 name) + Boolean TestObject(GL.Enums.APPLE_fence @object, Int32 name) { return Delegates.glTestObjectAPPLE((GL.Enums.APPLE_fence)@object, (UInt32)name); } public static - void FinishObjectAPPLE(GL.Enums.APPLE_fence @object, Int32 name) + void FinishObject(GL.Enums.APPLE_fence @object, Int32 name) { Delegates.glFinishObjectAPPLE((GL.Enums.APPLE_fence)@object, (Int32)name); } [System.CLSCompliant(false)] public static - void BindVertexArrayAPPLE(UInt32 array) + void BindVertexArray(UInt32 array) { Delegates.glBindVertexArrayAPPLE((UInt32)array); } public static - void BindVertexArrayAPPLE(Int32 array) + void BindVertexArray(Int32 array) { Delegates.glBindVertexArrayAPPLE((UInt32)array); } [System.CLSCompliant(false)] public static - unsafe void DeleteVertexArraysAPPLE(Int32 n, UInt32* arrays) + unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays) { unsafe { Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays); } } [System.CLSCompliant(false)] public static - unsafe void DeleteVertexArraysAPPLE(Int32 n, Int32* arrays) + unsafe void DeleteVertexArrays(Int32 n, Int32* arrays) { { Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays); @@ -62036,7 +62069,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteVertexArraysAPPLE(Int32 n, [In, Out] UInt32[] arrays) + void DeleteVertexArrays(Int32 n, [In, Out] UInt32[] arrays) { unsafe { @@ -62048,7 +62081,7 @@ namespace OpenTK.OpenGL } public static - void DeleteVertexArraysAPPLE(Int32 n, [In, Out] Int32[] arrays) + void DeleteVertexArrays(Int32 n, [In, Out] Int32[] arrays) { unsafe { @@ -62061,7 +62094,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void DeleteVertexArraysAPPLE(Int32 n, ref UInt32 arrays) + void DeleteVertexArrays(Int32 n, ref UInt32 arrays) { unsafe { @@ -62073,7 +62106,7 @@ namespace OpenTK.OpenGL } public static - void DeleteVertexArraysAPPLE(Int32 n, ref Int32 arrays) + void DeleteVertexArrays(Int32 n, ref Int32 arrays) { unsafe { @@ -62086,14 +62119,14 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void GenVertexArraysAPPLE(Int32 n, [Out] UInt32* arrays) + unsafe void GenVertexArrays(Int32 n, [Out] UInt32* arrays) { unsafe { Delegates.glGenVertexArraysAPPLE((Int32)n, (UInt32*)arrays); } } [System.CLSCompliant(false)] public static - unsafe void GenVertexArraysAPPLE(Int32 n, [Out] Int32* arrays) + unsafe void GenVertexArrays(Int32 n, [Out] Int32* arrays) { arrays = default(Int32*); { @@ -62103,7 +62136,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenVertexArraysAPPLE(Int32 n, [In, Out] UInt32[] arrays) + void GenVertexArrays(Int32 n, [In, Out] UInt32[] arrays) { unsafe { @@ -62115,7 +62148,7 @@ namespace OpenTK.OpenGL } public static - void GenVertexArraysAPPLE(Int32 n, [In, Out] Int32[] arrays) + void GenVertexArrays(Int32 n, [In, Out] Int32[] arrays) { unsafe { @@ -62128,7 +62161,7 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - void GenVertexArraysAPPLE(Int32 n, [Out] out UInt32 arrays) + void GenVertexArrays(Int32 n, [Out] out UInt32 arrays) { arrays = default(UInt32); unsafe @@ -62142,7 +62175,7 @@ namespace OpenTK.OpenGL } public static - void GenVertexArraysAPPLE(Int32 n, [Out] out Int32 arrays) + void GenVertexArrays(Int32 n, [Out] out Int32 arrays) { arrays = default(Int32); unsafe @@ -62157,26 +62190,26 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - Boolean IsVertexArrayAPPLE(UInt32 array) + Boolean IsVertexArray(UInt32 array) { return Delegates.glIsVertexArrayAPPLE((UInt32)array); } public static - Boolean IsVertexArrayAPPLE(Int32 array) + Boolean IsVertexArray(Int32 array) { return Delegates.glIsVertexArrayAPPLE((UInt32)array); } [System.CLSCompliant(false)] public static - unsafe void VertexArrayRangeAPPLE(Int32 length, [Out] void* pointer) + unsafe void VertexArrayRange(Int32 length, [Out] void* pointer) { unsafe { Delegates.glVertexArrayRangeAPPLE((Int32)length, (void*)pointer); } } public static - void VertexArrayRangeAPPLE(Int32 length, [In, Out] object pointer) + void VertexArrayRange(Int32 length, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -62194,13 +62227,13 @@ namespace OpenTK.OpenGL [System.CLSCompliant(false)] public static - unsafe void FlushVertexArrayRangeAPPLE(Int32 length, [Out] void* pointer) + unsafe void FlushVertexArrayRange(Int32 length, [Out] void* pointer) { unsafe { Delegates.glFlushVertexArrayRangeAPPLE((Int32)length, (void*)pointer); } } public static - void FlushVertexArrayRangeAPPLE(Int32 length, [In, Out] object pointer) + void FlushVertexArrayRange(Int32 length, [In, Out] object pointer) { System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe @@ -62217,19 +62250,19 @@ namespace OpenTK.OpenGL } public static - void VertexArrayParameteriAPPLE(GL.Enums.APPLE_vertex_array_range pname, Int32 param) + void VertexArrayParameteri(GL.Enums.APPLE_vertex_array_range pname, Int32 param) { Delegates.glVertexArrayParameteriAPPLE((GL.Enums.APPLE_vertex_array_range)pname, (Int32)param); } public static - void BufferParameteriAPPLE(GL.Enums.APPLE_flush_buffer_range target, GL.Enums.APPLE_flush_buffer_range pname, Int32 param) + void BufferParameteri(GL.Enums.APPLE_flush_buffer_range target, GL.Enums.APPLE_flush_buffer_range pname, Int32 param) { Delegates.glBufferParameteriAPPLE((GL.Enums.APPLE_flush_buffer_range)target, (GL.Enums.APPLE_flush_buffer_range)pname, (Int32)param); } public static - void FlushMappedBufferRangeAPPLE(GL.Enums.APPLE_flush_buffer_range target, IntPtr offset, IntPtr size) + void FlushMappedBufferRange(GL.Enums.APPLE_flush_buffer_range target, IntPtr offset, IntPtr size) { Delegates.glFlushMappedBufferRangeAPPLE((GL.Enums.APPLE_flush_buffer_range)target, (IntPtr)offset, (IntPtr)size); } @@ -62240,13 +62273,13 @@ namespace OpenTK.OpenGL { [System.CLSCompliant(false)] public static - unsafe void StringMarkerGREMEDY(Int32 len, void* @string) + unsafe void StringMarker(Int32 len, void* @string) { unsafe { Delegates.glStringMarkerGREMEDY((Int32)len, (void*)@string); } } public static - void StringMarkerGREMEDY(Int32 len, [In, Out] object @string) + void StringMarker(Int32 len, [In, Out] object @string) { System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned); unsafe diff --git a/Source/OpenTK/OpenGL/Bindings/GLEnums.cs b/Source/OpenTK/OpenGL/Bindings/GLEnums.cs index 53ee60f5..670f8e17 100644 --- a/Source/OpenTK/OpenGL/Bindings/GLEnums.cs +++ b/Source/OpenTK/OpenGL/Bindings/GLEnums.cs @@ -6,42 +6,42 @@ namespace OpenTK.OpenGL { public enum AttribMask { - DEPTH_BUFFER_BIT = ((int)0x00000100), - ACCUM_BUFFER_BIT = ((int)0x00000200), - FOG_BIT = ((int)0x00000080), - LIST_BIT = ((int)0x00020000), - EVAL_BIT = ((int)0x00010000), - CURRENT_BIT = ((int)0x00000001), - ENABLE_BIT = ((int)0x00002000), - COLOR_BUFFER_BIT = ((int)0x00004000), - TRANSFORM_BIT = ((int)0x00001000), - PIXEL_MODE_BIT = ((int)0x00000020), - POINT_BIT = ((int)0x00000002), - VIEWPORT_BIT = ((int)0x00000800), - TEXTURE_BIT = ((int)0x00040000), - STENCIL_BUFFER_BIT = ((int)0x00000400), - LIGHTING_BIT = ((int)0x00000040), - LINE_BIT = ((int)0x00000004), - HINT_BIT = ((int)0x00008000), - ALL_ATTRIB_BITS = unchecked((int)0xFFFFFFFF), - SCISSOR_BIT = ((int)0x00080000), POLYGON_BIT = ((int)0x00000008), + TRANSFORM_BIT = ((int)0x00001000), + COLOR_BUFFER_BIT = ((int)0x00004000), + LINE_BIT = ((int)0x00000004), + POINT_BIT = ((int)0x00000002), + EVAL_BIT = ((int)0x00010000), + LIST_BIT = ((int)0x00020000), + FOG_BIT = ((int)0x00000080), + HINT_BIT = ((int)0x00008000), + ENABLE_BIT = ((int)0x00002000), + STENCIL_BUFFER_BIT = ((int)0x00000400), + TEXTURE_BIT = ((int)0x00040000), + ACCUM_BUFFER_BIT = ((int)0x00000200), + LIGHTING_BIT = ((int)0x00000040), + CURRENT_BIT = ((int)0x00000001), + ALL_ATTRIB_BITS = unchecked((int)0xFFFFFFFF), + DEPTH_BUFFER_BIT = ((int)0x00000100), POLYGON_STIPPLE_BIT = ((int)0x00000010), + SCISSOR_BIT = ((int)0x00080000), + VIEWPORT_BIT = ((int)0x00000800), + PIXEL_MODE_BIT = ((int)0x00000020), } public enum ClearBufferMask { - COLOR_BUFFER_BIT = ((int)AttribMask.COLOR_BUFFER_BIT), STENCIL_BUFFER_BIT = ((int)AttribMask.STENCIL_BUFFER_BIT), ACCUM_BUFFER_BIT = ((int)AttribMask.ACCUM_BUFFER_BIT), + COLOR_BUFFER_BIT = ((int)AttribMask.COLOR_BUFFER_BIT), DEPTH_BUFFER_BIT = ((int)AttribMask.DEPTH_BUFFER_BIT), } public enum ClientAttribMask { - CLIENT_VERTEX_ARRAY_BIT = ((int)0x00000002), CLIENT_PIXEL_STORE_BIT = ((int)0x00000001), CLIENT_ALL_ATTRIB_BITS = unchecked((int)0xFFFFFFFF), + CLIENT_VERTEX_ARRAY_BIT = ((int)0x00000002), } public enum Boolean @@ -52,128 +52,128 @@ namespace OpenTK.OpenGL public enum BeginMode { - POINTS = ((int)0x0000), - TRIANGLES = ((int)0x0004), - TRIANGLE_FAN = ((int)0x0006), - TRIANGLE_STRIP = ((int)0x0005), - POLYGON = ((int)0x0009), - LINE_LOOP = ((int)0x0002), - QUADS = ((int)0x0007), QUAD_STRIP = ((int)0x0008), - LINE_STRIP = ((int)0x0003), + POLYGON = ((int)0x0009), LINES = ((int)0x0001), + TRIANGLES = ((int)0x0004), + TRIANGLE_STRIP = ((int)0x0005), + LINE_LOOP = ((int)0x0002), + LINE_STRIP = ((int)0x0003), + QUADS = ((int)0x0007), + TRIANGLE_FAN = ((int)0x0006), + POINTS = ((int)0x0000), } public enum AccumOp { - MULT = ((int)0x0103), - ADD = ((int)0x0104), RETURN = ((int)0x0102), + ADD = ((int)0x0104), LOAD = ((int)0x0101), ACCUM = ((int)0x0100), + MULT = ((int)0x0103), } public enum AlphaFunction { - GEQUAL = ((int)0x0206), NEVER = ((int)0x0200), - LESS = ((int)0x0201), - LEQUAL = ((int)0x0203), - EQUAL = ((int)0x0202), + GEQUAL = ((int)0x0206), GREATER = ((int)0x0204), - NOTEQUAL = ((int)0x0205), ALWAYS = ((int)0x0207), + LEQUAL = ((int)0x0203), + NOTEQUAL = ((int)0x0205), + EQUAL = ((int)0x0202), + LESS = ((int)0x0201), } public enum BlendingFactorDest { - ONE_MINUS_SRC_COLOR = ((int)0x0301), - ONE_MINUS_DST_ALPHA = ((int)0x0305), - SRC_ALPHA = ((int)0x0302), - ONE_MINUS_CONSTANT_COLOR_EXT = ((int)EXT_blend_color.ONE_MINUS_CONSTANT_COLOR_EXT), - DST_ALPHA = ((int)0x0304), - ONE = ((int)1), - ONE_MINUS_SRC_ALPHA = ((int)0x0303), - CONSTANT_ALPHA_EXT = ((int)EXT_blend_color.CONSTANT_ALPHA_EXT), - ONE_MINUS_CONSTANT_ALPHA_EXT = ((int)EXT_blend_color.ONE_MINUS_CONSTANT_ALPHA_EXT), ZERO = ((int)0), - SRC_COLOR = ((int)0x0300), + ONE_MINUS_SRC_ALPHA = ((int)0x0303), + ONE_MINUS_DST_ALPHA = ((int)0x0305), CONSTANT_COLOR_EXT = ((int)EXT_blend_color.CONSTANT_COLOR_EXT), + DST_ALPHA = ((int)0x0304), + CONSTANT_ALPHA_EXT = ((int)EXT_blend_color.CONSTANT_ALPHA_EXT), + ONE_MINUS_CONSTANT_COLOR_EXT = ((int)EXT_blend_color.ONE_MINUS_CONSTANT_COLOR_EXT), + ONE_MINUS_CONSTANT_ALPHA_EXT = ((int)EXT_blend_color.ONE_MINUS_CONSTANT_ALPHA_EXT), + SRC_ALPHA = ((int)0x0302), + SRC_COLOR = ((int)0x0300), + ONE_MINUS_SRC_COLOR = ((int)0x0301), + ONE = ((int)1), } public enum BlendingFactorSrc { - DST_COLOR = ((int)0x0306), - ONE_MINUS_DST_ALPHA = ((int)BlendingFactorDest.ONE_MINUS_DST_ALPHA), - SRC_ALPHA = ((int)BlendingFactorDest.SRC_ALPHA), - ONE_MINUS_CONSTANT_COLOR_EXT = ((int)EXT_blend_color.ONE_MINUS_CONSTANT_COLOR_EXT), - SRC_ALPHA_SATURATE = ((int)0x0308), - ONE_MINUS_DST_COLOR = ((int)0x0307), ZERO = ((int)BlendingFactorDest.ZERO), - ONE = ((int)BlendingFactorDest.ONE), ONE_MINUS_SRC_ALPHA = ((int)BlendingFactorDest.ONE_MINUS_SRC_ALPHA), - CONSTANT_ALPHA_EXT = ((int)EXT_blend_color.CONSTANT_ALPHA_EXT), - ONE_MINUS_CONSTANT_ALPHA_EXT = ((int)EXT_blend_color.ONE_MINUS_CONSTANT_ALPHA_EXT), - DST_ALPHA = ((int)BlendingFactorDest.DST_ALPHA), + ONE_MINUS_DST_COLOR = ((int)0x0307), + ONE_MINUS_CONSTANT_COLOR_EXT = ((int)EXT_blend_color.ONE_MINUS_CONSTANT_COLOR_EXT), CONSTANT_COLOR_EXT = ((int)EXT_blend_color.CONSTANT_COLOR_EXT), + DST_ALPHA = ((int)BlendingFactorDest.DST_ALPHA), + CONSTANT_ALPHA_EXT = ((int)EXT_blend_color.CONSTANT_ALPHA_EXT), + SRC_ALPHA = ((int)BlendingFactorDest.SRC_ALPHA), + SRC_ALPHA_SATURATE = ((int)0x0308), + ONE_MINUS_CONSTANT_ALPHA_EXT = ((int)EXT_blend_color.ONE_MINUS_CONSTANT_ALPHA_EXT), + ONE_MINUS_DST_ALPHA = ((int)BlendingFactorDest.ONE_MINUS_DST_ALPHA), + DST_COLOR = ((int)0x0306), + ONE = ((int)BlendingFactorDest.ONE), } public enum BlendEquationModeEXT { + MAX_EXT = ((int)EXT_blend_minmax.MAX_EXT), + LOGIC_OP = ((int)GetPName.LOGIC_OP), + FUNC_ADD_EXT = ((int)EXT_blend_minmax.FUNC_ADD_EXT), + FUNC_SUBTRACT_EXT = ((int)EXT_blend_subtract.FUNC_SUBTRACT_EXT), ALPHA_MAX_SGIX = ((int)SGIX_blend_alpha_minmax.ALPHA_MAX_SGIX), FUNC_REVERSE_SUBTRACT_EXT = ((int)EXT_blend_subtract.FUNC_REVERSE_SUBTRACT_EXT), - LOGIC_OP = ((int)GetPName.LOGIC_OP), - FUNC_SUBTRACT_EXT = ((int)EXT_blend_subtract.FUNC_SUBTRACT_EXT), ALPHA_MIN_SGIX = ((int)SGIX_blend_alpha_minmax.ALPHA_MIN_SGIX), - MAX_EXT = ((int)EXT_blend_minmax.MAX_EXT), MIN_EXT = ((int)EXT_blend_minmax.MIN_EXT), - FUNC_ADD_EXT = ((int)EXT_blend_minmax.FUNC_ADD_EXT), } public enum ColorMaterialFace { BACK = ((int)DrawBufferMode.BACK), - FRONT = ((int)DrawBufferMode.FRONT), FRONT_AND_BACK = ((int)DrawBufferMode.FRONT_AND_BACK), + FRONT = ((int)DrawBufferMode.FRONT), } public enum ColorMaterialParameter { + EMISSION = ((int)MaterialParameter.EMISSION), DIFFUSE = ((int)LightParameter.DIFFUSE), AMBIENT_AND_DIFFUSE = ((int)MaterialParameter.AMBIENT_AND_DIFFUSE), - AMBIENT = ((int)LightParameter.AMBIENT), SPECULAR = ((int)LightParameter.SPECULAR), - EMISSION = ((int)MaterialParameter.EMISSION), + AMBIENT = ((int)LightParameter.AMBIENT), } public enum ColorPointerType { - INT = ((int)DataType.INT), UNSIGNED_INT = ((int)DataType.UNSIGNED_INT), - SHORT = ((int)DataType.SHORT), - UNSIGNED_BYTE = ((int)DataType.UNSIGNED_BYTE), - BYTE = ((int)DataType.BYTE), - UNSIGNED_SHORT = ((int)DataType.UNSIGNED_SHORT), - DOUBLE = ((int)DataType.DOUBLE), FLOAT = ((int)DataType.FLOAT), + UNSIGNED_SHORT = ((int)DataType.UNSIGNED_SHORT), + SHORT = ((int)DataType.SHORT), + BYTE = ((int)DataType.BYTE), + INT = ((int)DataType.INT), + UNSIGNED_BYTE = ((int)DataType.UNSIGNED_BYTE), + DOUBLE = ((int)DataType.DOUBLE), } public enum ColorTableParameterPNameSGI { - COLOR_TABLE_BIAS_SGI = ((int)SGI_color_table.COLOR_TABLE_BIAS_SGI), COLOR_TABLE_SCALE_SGI = ((int)SGI_color_table.COLOR_TABLE_SCALE_SGI), + COLOR_TABLE_BIAS_SGI = ((int)SGI_color_table.COLOR_TABLE_BIAS_SGI), } public enum ColorTableTargetSGI { - POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_CONVOLUTION_COLOR_TABLE_SGI), - PROXY_COLOR_TABLE_SGI = ((int)SGI_color_table.PROXY_COLOR_TABLE_SGI), - PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)SGI_color_table.PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI), - PROXY_TEXTURE_COLOR_TABLE_SGI = ((int)SGI_texture_color_table.PROXY_TEXTURE_COLOR_TABLE_SGI), - POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_COLOR_MATRIX_COLOR_TABLE_SGI), - PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)SGI_color_table.PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI), TEXTURE_COLOR_TABLE_SGI = ((int)SGI_texture_color_table.TEXTURE_COLOR_TABLE_SGI), + POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_COLOR_MATRIX_COLOR_TABLE_SGI), + PROXY_TEXTURE_COLOR_TABLE_SGI = ((int)SGI_texture_color_table.PROXY_TEXTURE_COLOR_TABLE_SGI), COLOR_TABLE_SGI = ((int)SGI_color_table.COLOR_TABLE_SGI), + PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)SGI_color_table.PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI), + PROXY_COLOR_TABLE_SGI = ((int)SGI_color_table.PROXY_COLOR_TABLE_SGI), + PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)SGI_color_table.PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI), + POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_CONVOLUTION_COLOR_TABLE_SGI), } public enum ConvolutionBorderModeEXT @@ -197,180 +197,180 @@ namespace OpenTK.OpenGL public enum CullFaceMode { BACK = ((int)DrawBufferMode.BACK), - FRONT = ((int)DrawBufferMode.FRONT), FRONT_AND_BACK = ((int)DrawBufferMode.FRONT_AND_BACK), + FRONT = ((int)DrawBufferMode.FRONT), } public enum DepthFunction { - GEQUAL = ((int)AlphaFunction.GEQUAL), NEVER = ((int)AlphaFunction.NEVER), - LESS = ((int)AlphaFunction.LESS), - LEQUAL = ((int)AlphaFunction.LEQUAL), - EQUAL = ((int)AlphaFunction.EQUAL), + GEQUAL = ((int)AlphaFunction.GEQUAL), GREATER = ((int)AlphaFunction.GREATER), - NOTEQUAL = ((int)AlphaFunction.NOTEQUAL), ALWAYS = ((int)AlphaFunction.ALWAYS), + LEQUAL = ((int)AlphaFunction.LEQUAL), + NOTEQUAL = ((int)AlphaFunction.NOTEQUAL), + EQUAL = ((int)AlphaFunction.EQUAL), + LESS = ((int)AlphaFunction.LESS), } public enum DrawBufferMode { - BACK = ((int)0x0405), - BACK_LEFT = ((int)0x0402), - AUX1 = ((int)0x040A), - LEFT = ((int)0x0406), - FRONT_AND_BACK = ((int)0x0408), FRONT_RIGHT = ((int)0x0401), - AUX2 = ((int)0x040B), + AUX3 = ((int)0x040C), + AUX1 = ((int)0x040A), + FRONT_AND_BACK = ((int)0x0408), + LEFT = ((int)0x0406), NONE = ((int)0), RIGHT = ((int)0x0407), - FRONT_LEFT = ((int)0x0400), BACK_RIGHT = ((int)0x0403), + AUX2 = ((int)0x040B), AUX0 = ((int)0x0409), - AUX3 = ((int)0x040C), + FRONT_LEFT = ((int)0x0400), + BACK = ((int)0x0405), FRONT = ((int)0x0404), + BACK_LEFT = ((int)0x0402), } public enum EnableCap { + MAP1_VERTEX_3 = ((int)GetPName.MAP1_VERTEX_3), + MAP2_NORMAL = ((int)GetPName.MAP2_NORMAL), + FRAGMENT_LIGHT6_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT6_SGIX), + CLIP_PLANE4 = ((int)GetPName.CLIP_PLANE4), + ASYNC_HISTOGRAM_SGIX = ((int)SGIX_async_histogram.ASYNC_HISTOGRAM_SGIX), + FRAGMENT_LIGHT3_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT3_SGIX), + HISTOGRAM_EXT = ((int)EXT_histogram.HISTOGRAM_EXT), + LIGHT3 = ((int)GetPName.LIGHT3), + POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_COLOR_MATRIX_COLOR_TABLE_SGI), + CLIP_PLANE3 = ((int)GetPName.CLIP_PLANE3), + TEXTURE_COORD_ARRAY = ((int)GetPName.TEXTURE_COORD_ARRAY), + FOG_OFFSET_SGIX = ((int)SGIX_fog_offset.FOG_OFFSET_SGIX), + CONVOLUTION_1D_EXT = ((int)EXT_convolution.CONVOLUTION_1D_EXT), + ASYNC_READ_PIXELS_SGIX = ((int)SGIX_async_pixel.ASYNC_READ_PIXELS_SGIX), + LIGHT4 = ((int)GetPName.LIGHT4), + MAP2_INDEX = ((int)GetPName.MAP2_INDEX), + MAP1_TEXTURE_COORD_1 = ((int)GetPName.MAP1_TEXTURE_COORD_1), + POLYGON_OFFSET_POINT = ((int)GetPName.POLYGON_OFFSET_POINT), + ASYNC_DRAW_PIXELS_SGIX = ((int)SGIX_async_pixel.ASYNC_DRAW_PIXELS_SGIX), + TEXTURE_1D = ((int)GetPName.TEXTURE_1D), + CONVOLUTION_2D_EXT = ((int)EXT_convolution.CONVOLUTION_2D_EXT), + TEXTURE_2D = ((int)GetPName.TEXTURE_2D), + MAP1_COLOR_4 = ((int)GetPName.MAP1_COLOR_4), + INDEX_LOGIC_OP = ((int)GetPName.INDEX_LOGIC_OP), + RESCALE_NORMAL_EXT = ((int)EXT_rescale_normal.RESCALE_NORMAL_EXT), + FRAGMENT_LIGHT4_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT4_SGIX), + SAMPLE_MASK_SGIS = ((int)SGIS_multisample.SAMPLE_MASK_SGIS), + LINE_STIPPLE = ((int)GetPName.LINE_STIPPLE), + POLYGON_OFFSET_FILL = ((int)GetPName.POLYGON_OFFSET_FILL), + LIGHT0 = ((int)GetPName.LIGHT0), + FRAGMENT_LIGHT5_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT5_SGIX), + CLIP_PLANE2 = ((int)GetPName.CLIP_PLANE2), + LIGHT5 = ((int)GetPName.LIGHT5), + FRAGMENT_LIGHT1_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT1_SGIX), + REFERENCE_PLANE_SGIX = ((int)SGIX_reference_plane.REFERENCE_PLANE_SGIX), + SAMPLE_ALPHA_TO_MASK_SGIS = ((int)SGIS_multisample.SAMPLE_ALPHA_TO_MASK_SGIS), + CLIP_PLANE1 = ((int)GetPName.CLIP_PLANE1), + COLOR_LOGIC_OP = ((int)GetPName.COLOR_LOGIC_OP), + FRAGMENT_LIGHT7_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT7_SGIX), + ASYNC_TEX_IMAGE_SGIX = ((int)SGIX_async_pixel.ASYNC_TEX_IMAGE_SGIX), + MAP1_TEXTURE_COORD_4 = ((int)GetPName.MAP1_TEXTURE_COORD_4), + MAP2_TEXTURE_COORD_2 = ((int)GetPName.MAP2_TEXTURE_COORD_2), + NORMAL_ARRAY = ((int)GetPName.NORMAL_ARRAY), + FOG = ((int)GetPName.FOG), + CALLIGRAPHIC_FRAGMENT_SGIX = ((int)SGIX_calligraphic_fragment.CALLIGRAPHIC_FRAGMENT_SGIX), + POINT_SMOOTH = ((int)GetPName.POINT_SMOOTH), + SCISSOR_TEST = ((int)GetPName.SCISSOR_TEST), + INDEX_ARRAY = ((int)GetPName.INDEX_ARRAY), TEXTURE_GEN_S = ((int)GetPName.TEXTURE_GEN_S), TEXTURE_GEN_R = ((int)GetPName.TEXTURE_GEN_R), - TEXTURE_GEN_Q = ((int)GetPName.TEXTURE_GEN_Q), - MAP1_INDEX = ((int)GetPName.MAP1_INDEX), - LIGHT7 = ((int)GetPName.LIGHT7), - TEXTURE_COLOR_TABLE_SGI = ((int)SGI_texture_color_table.TEXTURE_COLOR_TABLE_SGI), - DEPTH_TEST = ((int)GetPName.DEPTH_TEST), - MAP2_COLOR_4 = ((int)GetPName.MAP2_COLOR_4), - ASYNC_HISTOGRAM_SGIX = ((int)SGIX_async_histogram.ASYNC_HISTOGRAM_SGIX), - MAP2_TEXTURE_COORD_2 = ((int)GetPName.MAP2_TEXTURE_COORD_2), - LIGHT2 = ((int)GetPName.LIGHT2), - LINE_SMOOTH = ((int)GetPName.LINE_SMOOTH), - MAP2_TEXTURE_COORD_1 = ((int)GetPName.MAP2_TEXTURE_COORD_1), - TEXTURE_COORD_ARRAY = ((int)GetPName.TEXTURE_COORD_ARRAY), - FRAGMENT_COLOR_MATERIAL_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_COLOR_MATERIAL_SGIX), - POLYGON_SMOOTH = ((int)GetPName.POLYGON_SMOOTH), - TEXTURE_2D = ((int)GetPName.TEXTURE_2D), - MAP1_TEXTURE_COORD_4 = ((int)GetPName.MAP1_TEXTURE_COORD_4), - TEXTURE_1D = ((int)GetPName.TEXTURE_1D), - MAP2_TEXTURE_COORD_4 = ((int)GetPName.MAP2_TEXTURE_COORD_4), - CLIP_PLANE5 = ((int)GetPName.CLIP_PLANE5), - CLIP_PLANE4 = ((int)GetPName.CLIP_PLANE4), - CLIP_PLANE1 = ((int)GetPName.CLIP_PLANE1), - CLIP_PLANE0 = ((int)GetPName.CLIP_PLANE0), - CLIP_PLANE3 = ((int)GetPName.CLIP_PLANE3), - CLIP_PLANE2 = ((int)GetPName.CLIP_PLANE2), - PIXEL_TEXTURE_SGIS = ((int)SGIS_pixel_texture.PIXEL_TEXTURE_SGIS), - STENCIL_TEST = ((int)GetPName.STENCIL_TEST), - FRAGMENT_LIGHT6_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT6_SGIX), - SEPARABLE_2D_EXT = ((int)EXT_convolution.SEPARABLE_2D_EXT), - MAP1_COLOR_4 = ((int)GetPName.MAP1_COLOR_4), - SAMPLE_ALPHA_TO_MASK_SGIS = ((int)SGIS_multisample.SAMPLE_ALPHA_TO_MASK_SGIS), - INDEX_ARRAY = ((int)GetPName.INDEX_ARRAY), TEXTURE_3D_EXT = ((int)EXT_texture3D.TEXTURE_3D_EXT), - LIGHT6 = ((int)GetPName.LIGHT6), - MAP1_VERTEX_3 = ((int)GetPName.MAP1_VERTEX_3), - CONVOLUTION_1D_EXT = ((int)EXT_convolution.CONVOLUTION_1D_EXT), - MAP1_VERTEX_4 = ((int)GetPName.MAP1_VERTEX_4), - FRAGMENT_LIGHT4_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT4_SGIX), - COLOR_TABLE_SGI = ((int)SGI_color_table.COLOR_TABLE_SGI), - ASYNC_TEX_IMAGE_SGIX = ((int)SGIX_async_pixel.ASYNC_TEX_IMAGE_SGIX), - POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_COLOR_MATRIX_COLOR_TABLE_SGI), - IR_INSTRUMENT1_SGIX = ((int)SGIX_ir_instrument1.IR_INSTRUMENT1_SGIX), - ALPHA_TEST = ((int)GetPName.ALPHA_TEST), - LINE_STIPPLE = ((int)GetPName.LINE_STIPPLE), - SHARED_TEXTURE_PALETTE_EXT = ((int)EXT_shared_texture_palette.SHARED_TEXTURE_PALETTE_EXT), - POLYGON_OFFSET_LINE = ((int)GetPName.POLYGON_OFFSET_LINE), - MULTISAMPLE_SGIS = ((int)SGIS_multisample.MULTISAMPLE_SGIS), - ASYNC_READ_PIXELS_SGIX = ((int)SGIX_async_pixel.ASYNC_READ_PIXELS_SGIX), - POLYGON_STIPPLE = ((int)GetPName.POLYGON_STIPPLE), - MINMAX_EXT = ((int)EXT_histogram.MINMAX_EXT), - CALLIGRAPHIC_FRAGMENT_SGIX = ((int)SGIX_calligraphic_fragment.CALLIGRAPHIC_FRAGMENT_SGIX), - CONVOLUTION_2D_EXT = ((int)EXT_convolution.CONVOLUTION_2D_EXT), - SAMPLE_MASK_SGIS = ((int)SGIS_multisample.SAMPLE_MASK_SGIS), - CULL_FACE = ((int)GetPName.CULL_FACE), - COLOR_MATERIAL = ((int)GetPName.COLOR_MATERIAL), - FRAGMENT_LIGHT0_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT0_SGIX), - FRAMEZOOM_SGIX = ((int)SGIX_framezoom.FRAMEZOOM_SGIX), - FOG_OFFSET_SGIX = ((int)SGIX_fog_offset.FOG_OFFSET_SGIX), - COLOR_LOGIC_OP = ((int)GetPName.COLOR_LOGIC_OP), - COLOR_ARRAY = ((int)GetPName.COLOR_ARRAY), - LIGHT1 = ((int)GetPName.LIGHT1), - ASYNC_DRAW_PIXELS_SGIX = ((int)SGIX_async_pixel.ASYNC_DRAW_PIXELS_SGIX), - TEXTURE_4D_SGIS = ((int)SGIS_texture4D.TEXTURE_4D_SGIS), - SPRITE_SGIX = ((int)SGIX_sprite.SPRITE_SGIX), - MAP1_TEXTURE_COORD_1 = ((int)GetPName.MAP1_TEXTURE_COORD_1), - POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_CONVOLUTION_COLOR_TABLE_SGI), - POLYGON_OFFSET_FILL = ((int)GetPName.POLYGON_OFFSET_FILL), - POLYGON_OFFSET_POINT = ((int)GetPName.POLYGON_OFFSET_POINT), - INDEX_LOGIC_OP = ((int)GetPName.INDEX_LOGIC_OP), - MAP2_NORMAL = ((int)GetPName.MAP2_NORMAL), - MAP1_TEXTURE_COORD_2 = ((int)GetPName.MAP1_TEXTURE_COORD_2), - HISTOGRAM_EXT = ((int)EXT_histogram.HISTOGRAM_EXT), - MAP2_INDEX = ((int)GetPName.MAP2_INDEX), - RESCALE_NORMAL_EXT = ((int)EXT_rescale_normal.RESCALE_NORMAL_EXT), - FRAGMENT_LIGHTING_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHTING_SGIX), - PIXEL_TEX_GEN_SGIX = ((int)SGIX_pixel_texture.PIXEL_TEX_GEN_SGIX), - VERTEX_ARRAY = ((int)GetPName.VERTEX_ARRAY), - INTERLACE_SGIX = ((int)SGIX_interlace.INTERLACE_SGIX), - MAP2_VERTEX_3 = ((int)GetPName.MAP2_VERTEX_3), - MAP2_VERTEX_4 = ((int)GetPName.MAP2_VERTEX_4), - LIGHT5 = ((int)GetPName.LIGHT5), - SCISSOR_TEST = ((int)GetPName.SCISSOR_TEST), - LIGHTING = ((int)GetPName.LIGHTING), NORMALIZE = ((int)GetPName.NORMALIZE), - DITHER = ((int)GetPName.DITHER), - LIGHT0 = ((int)GetPName.LIGHT0), - SAMPLE_ALPHA_TO_ONE_SGIS = ((int)SGIS_multisample.SAMPLE_ALPHA_TO_ONE_SGIS), - NORMAL_ARRAY = ((int)GetPName.NORMAL_ARRAY), - MAP2_TEXTURE_COORD_3 = ((int)GetPName.MAP2_TEXTURE_COORD_3), - FRAGMENT_LIGHT7_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT7_SGIX), - FOG = ((int)GetPName.FOG), - LIGHT3 = ((int)GetPName.LIGHT3), - BLEND = ((int)GetPName.BLEND), - MAP1_TEXTURE_COORD_3 = ((int)GetPName.MAP1_TEXTURE_COORD_3), - EDGE_FLAG_ARRAY = ((int)GetPName.EDGE_FLAG_ARRAY), - REFERENCE_PLANE_SGIX = ((int)SGIX_reference_plane.REFERENCE_PLANE_SGIX), - FRAGMENT_LIGHT3_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT3_SGIX), - FRAGMENT_LIGHT1_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT1_SGIX), - FRAGMENT_LIGHT5_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT5_SGIX), + CULL_FACE = ((int)GetPName.CULL_FACE), + LIGHT1 = ((int)GetPName.LIGHT1), MAP1_NORMAL = ((int)GetPName.MAP1_NORMAL), + DEPTH_TEST = ((int)GetPName.DEPTH_TEST), + FRAGMENT_LIGHTING_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHTING_SGIX), + MINMAX_EXT = ((int)EXT_histogram.MINMAX_EXT), + POLYGON_OFFSET_LINE = ((int)GetPName.POLYGON_OFFSET_LINE), + COLOR_TABLE_SGI = ((int)SGI_color_table.COLOR_TABLE_SGI), + MAP1_INDEX = ((int)GetPName.MAP1_INDEX), AUTO_NORMAL = ((int)GetPName.AUTO_NORMAL), + POLYGON_SMOOTH = ((int)GetPName.POLYGON_SMOOTH), + POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_CONVOLUTION_COLOR_TABLE_SGI), + PIXEL_TEX_GEN_SGIX = ((int)SGIX_pixel_texture.PIXEL_TEX_GEN_SGIX), + CLIP_PLANE0 = ((int)GetPName.CLIP_PLANE0), + SHARED_TEXTURE_PALETTE_EXT = ((int)EXT_shared_texture_palette.SHARED_TEXTURE_PALETTE_EXT), + POLYGON_STIPPLE = ((int)GetPName.POLYGON_STIPPLE), + SAMPLE_ALPHA_TO_ONE_SGIS = ((int)SGIS_multisample.SAMPLE_ALPHA_TO_ONE_SGIS), + MAP1_TEXTURE_COORD_3 = ((int)GetPName.MAP1_TEXTURE_COORD_3), + MAP2_TEXTURE_COORD_3 = ((int)GetPName.MAP2_TEXTURE_COORD_3), + IR_INSTRUMENT1_SGIX = ((int)SGIX_ir_instrument1.IR_INSTRUMENT1_SGIX), + TEXTURE_4D_SGIS = ((int)SGIS_texture4D.TEXTURE_4D_SGIS), FRAGMENT_LIGHT2_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT2_SGIX), - POINT_SMOOTH = ((int)GetPName.POINT_SMOOTH), - LIGHT4 = ((int)GetPName.LIGHT4), + PIXEL_TEXTURE_SGIS = ((int)SGIS_pixel_texture.PIXEL_TEXTURE_SGIS), + LIGHT6 = ((int)GetPName.LIGHT6), + ALPHA_TEST = ((int)GetPName.ALPHA_TEST), + STENCIL_TEST = ((int)GetPName.STENCIL_TEST), + BLEND = ((int)GetPName.BLEND), + MAP2_COLOR_4 = ((int)GetPName.MAP2_COLOR_4), + FRAMEZOOM_SGIX = ((int)SGIX_framezoom.FRAMEZOOM_SGIX), + FRAGMENT_LIGHT0_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT0_SGIX), + LIGHTING = ((int)GetPName.LIGHTING), + TEXTURE_COLOR_TABLE_SGI = ((int)SGI_texture_color_table.TEXTURE_COLOR_TABLE_SGI), + CLIP_PLANE5 = ((int)GetPName.CLIP_PLANE5), + LINE_SMOOTH = ((int)GetPName.LINE_SMOOTH), + SEPARABLE_2D_EXT = ((int)EXT_convolution.SEPARABLE_2D_EXT), + DITHER = ((int)GetPName.DITHER), + INTERLACE_SGIX = ((int)SGIX_interlace.INTERLACE_SGIX), + LIGHT2 = ((int)GetPName.LIGHT2), + TEXTURE_GEN_Q = ((int)GetPName.TEXTURE_GEN_Q), + EDGE_FLAG_ARRAY = ((int)GetPName.EDGE_FLAG_ARRAY), + COLOR_ARRAY = ((int)GetPName.COLOR_ARRAY), TEXTURE_GEN_T = ((int)GetPName.TEXTURE_GEN_T), + MAP2_VERTEX_4 = ((int)GetPName.MAP2_VERTEX_4), + MAP1_TEXTURE_COORD_2 = ((int)GetPName.MAP1_TEXTURE_COORD_2), + MAP2_TEXTURE_COORD_4 = ((int)GetPName.MAP2_TEXTURE_COORD_4), + LIGHT7 = ((int)GetPName.LIGHT7), + SPRITE_SGIX = ((int)SGIX_sprite.SPRITE_SGIX), + FRAGMENT_COLOR_MATERIAL_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_COLOR_MATERIAL_SGIX), + MAP2_VERTEX_3 = ((int)GetPName.MAP2_VERTEX_3), + MAP2_TEXTURE_COORD_1 = ((int)GetPName.MAP2_TEXTURE_COORD_1), + MAP1_VERTEX_4 = ((int)GetPName.MAP1_VERTEX_4), + MULTISAMPLE_SGIS = ((int)SGIS_multisample.MULTISAMPLE_SGIS), + VERTEX_ARRAY = ((int)GetPName.VERTEX_ARRAY), + COLOR_MATERIAL = ((int)GetPName.COLOR_MATERIAL), } public enum ErrorCode { - NO_ERROR = ((int)0), - INVALID_ENUM = ((int)0x0500), OUT_OF_MEMORY = ((int)0x0505), - STACK_OVERFLOW = ((int)0x0503), - INVALID_OPERATION = ((int)0x0502), TEXTURE_TOO_LARGE_EXT = ((int)EXT_texture.TEXTURE_TOO_LARGE_EXT), - STACK_UNDERFLOW = ((int)0x0504), - TABLE_TOO_LARGE_EXT = ((int)EXT_histogram.TABLE_TOO_LARGE_EXT), + STACK_OVERFLOW = ((int)0x0503), + INVALID_ENUM = ((int)0x0500), INVALID_VALUE = ((int)0x0501), + TABLE_TOO_LARGE_EXT = ((int)EXT_histogram.TABLE_TOO_LARGE_EXT), + INVALID_OPERATION = ((int)0x0502), + STACK_UNDERFLOW = ((int)0x0504), + NO_ERROR = ((int)0), } public enum FeedbackType { - GL_3D_COLOR = ((int)0x0602), - GL_2D = ((int)0x0600), - GL_4D_COLOR_TEXTURE = ((int)0x0604), GL_3D = ((int)0x0601), GL_3D_COLOR_TEXTURE = ((int)0x0603), + GL_4D_COLOR_TEXTURE = ((int)0x0604), + GL_2D = ((int)0x0600), + GL_3D_COLOR = ((int)0x0602), } public enum FeedBackToken { - LINE_TOKEN = ((int)0x0702), - COPY_PIXEL_TOKEN = ((int)0x0706), BITMAP_TOKEN = ((int)0x0704), - POINT_TOKEN = ((int)0x0701), - LINE_RESET_TOKEN = ((int)0x0707), + LINE_TOKEN = ((int)0x0702), PASS_THROUGH_TOKEN = ((int)0x0700), + LINE_RESET_TOKEN = ((int)0x0707), + POINT_TOKEN = ((int)0x0701), + COPY_PIXEL_TOKEN = ((int)0x0706), DRAW_PIXEL_TOKEN = ((int)0x0705), POLYGON_TOKEN = ((int)0x0703), } @@ -390,79 +390,79 @@ namespace OpenTK.OpenGL public enum FogMode { EXP2 = ((int)0x0801), - FOG_FUNC_SGIS = ((int)SGIS_fog_function.FOG_FUNC_SGIS), EXP = ((int)0x0800), LINEAR = ((int)TextureMagFilter.LINEAR), + FOG_FUNC_SGIS = ((int)SGIS_fog_function.FOG_FUNC_SGIS), } public enum FogParameter { - FOG_OFFSET_VALUE_SGIX = ((int)SGIX_fog_offset.FOG_OFFSET_VALUE_SGIX), - FOG_DENSITY = ((int)GetPName.FOG_DENSITY), FOG_END = ((int)GetPName.FOG_END), FOG_COLOR = ((int)GetPName.FOG_COLOR), - FOG_INDEX = ((int)GetPName.FOG_INDEX), + FOG_DENSITY = ((int)GetPName.FOG_DENSITY), FOG_START = ((int)GetPName.FOG_START), + FOG_OFFSET_VALUE_SGIX = ((int)SGIX_fog_offset.FOG_OFFSET_VALUE_SGIX), + FOG_INDEX = ((int)GetPName.FOG_INDEX), FOG_MODE = ((int)GetPName.FOG_MODE), } public enum FragmentLightModelParameterSGIX { + FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX), + FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX), FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX), FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX), - FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX), - FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX), } public enum FrontFaceDirection { - CW = ((int)0x0900), CCW = ((int)0x0901), + CW = ((int)0x0900), } public enum GetColorTableParameterPNameSGI { - COLOR_TABLE_INTENSITY_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_INTENSITY_SIZE_SGI), - COLOR_TABLE_BIAS_SGI = ((int)SGI_color_table.COLOR_TABLE_BIAS_SGI), - COLOR_TABLE_GREEN_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_GREEN_SIZE_SGI), - COLOR_TABLE_WIDTH_SGI = ((int)SGI_color_table.COLOR_TABLE_WIDTH_SGI), - COLOR_TABLE_ALPHA_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_ALPHA_SIZE_SGI), - COLOR_TABLE_SCALE_SGI = ((int)SGI_color_table.COLOR_TABLE_SCALE_SGI), - COLOR_TABLE_FORMAT_SGI = ((int)SGI_color_table.COLOR_TABLE_FORMAT_SGI), - COLOR_TABLE_LUMINANCE_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_LUMINANCE_SIZE_SGI), COLOR_TABLE_BLUE_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_BLUE_SIZE_SGI), + COLOR_TABLE_FORMAT_SGI = ((int)SGI_color_table.COLOR_TABLE_FORMAT_SGI), + COLOR_TABLE_ALPHA_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_ALPHA_SIZE_SGI), + COLOR_TABLE_INTENSITY_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_INTENSITY_SIZE_SGI), + COLOR_TABLE_GREEN_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_GREEN_SIZE_SGI), + COLOR_TABLE_LUMINANCE_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_LUMINANCE_SIZE_SGI), + COLOR_TABLE_WIDTH_SGI = ((int)SGI_color_table.COLOR_TABLE_WIDTH_SGI), + COLOR_TABLE_BIAS_SGI = ((int)SGI_color_table.COLOR_TABLE_BIAS_SGI), COLOR_TABLE_RED_SIZE_SGI = ((int)SGI_color_table.COLOR_TABLE_RED_SIZE_SGI), + COLOR_TABLE_SCALE_SGI = ((int)SGI_color_table.COLOR_TABLE_SCALE_SGI), } public enum GetConvolutionParameter { + MAX_CONVOLUTION_WIDTH_EXT = ((int)EXT_convolution.MAX_CONVOLUTION_WIDTH_EXT), CONVOLUTION_FILTER_SCALE_EXT = ((int)EXT_convolution.CONVOLUTION_FILTER_SCALE_EXT), + CONVOLUTION_BORDER_MODE_EXT = ((int)EXT_convolution.CONVOLUTION_BORDER_MODE_EXT), CONVOLUTION_HEIGHT_EXT = ((int)EXT_convolution.CONVOLUTION_HEIGHT_EXT), CONVOLUTION_WIDTH_EXT = ((int)EXT_convolution.CONVOLUTION_WIDTH_EXT), + MAX_CONVOLUTION_HEIGHT_EXT = ((int)EXT_convolution.MAX_CONVOLUTION_HEIGHT_EXT), CONVOLUTION_FILTER_BIAS_EXT = ((int)EXT_convolution.CONVOLUTION_FILTER_BIAS_EXT), CONVOLUTION_FORMAT_EXT = ((int)EXT_convolution.CONVOLUTION_FORMAT_EXT), - MAX_CONVOLUTION_HEIGHT_EXT = ((int)EXT_convolution.MAX_CONVOLUTION_HEIGHT_EXT), - CONVOLUTION_BORDER_MODE_EXT = ((int)EXT_convolution.CONVOLUTION_BORDER_MODE_EXT), - MAX_CONVOLUTION_WIDTH_EXT = ((int)EXT_convolution.MAX_CONVOLUTION_WIDTH_EXT), } public enum GetHistogramParameterPNameEXT { - HISTOGRAM_RED_SIZE_EXT = ((int)EXT_histogram.HISTOGRAM_RED_SIZE_EXT), - HISTOGRAM_WIDTH_EXT = ((int)EXT_histogram.HISTOGRAM_WIDTH_EXT), - HISTOGRAM_LUMINANCE_SIZE_EXT = ((int)EXT_histogram.HISTOGRAM_LUMINANCE_SIZE_EXT), - HISTOGRAM_FORMAT_EXT = ((int)EXT_histogram.HISTOGRAM_FORMAT_EXT), HISTOGRAM_BLUE_SIZE_EXT = ((int)EXT_histogram.HISTOGRAM_BLUE_SIZE_EXT), - HISTOGRAM_SINK_EXT = ((int)EXT_histogram.HISTOGRAM_SINK_EXT), + HISTOGRAM_FORMAT_EXT = ((int)EXT_histogram.HISTOGRAM_FORMAT_EXT), HISTOGRAM_GREEN_SIZE_EXT = ((int)EXT_histogram.HISTOGRAM_GREEN_SIZE_EXT), HISTOGRAM_ALPHA_SIZE_EXT = ((int)EXT_histogram.HISTOGRAM_ALPHA_SIZE_EXT), + HISTOGRAM_LUMINANCE_SIZE_EXT = ((int)EXT_histogram.HISTOGRAM_LUMINANCE_SIZE_EXT), + HISTOGRAM_RED_SIZE_EXT = ((int)EXT_histogram.HISTOGRAM_RED_SIZE_EXT), + HISTOGRAM_SINK_EXT = ((int)EXT_histogram.HISTOGRAM_SINK_EXT), + HISTOGRAM_WIDTH_EXT = ((int)EXT_histogram.HISTOGRAM_WIDTH_EXT), } public enum GetMapQuery { + ORDER = ((int)0x0A01), DOMAIN = ((int)0x0A02), COEFF = ((int)0x0A00), - ORDER = ((int)0x0A01), } public enum GetMinmaxParameterPNameEXT @@ -473,504 +473,504 @@ namespace OpenTK.OpenGL public enum GetPixelMap { - PIXEL_MAP_I_TO_G = ((int)0x0C73), - PIXEL_MAP_G_TO_G = ((int)0x0C77), - PIXEL_MAP_A_TO_A = ((int)0x0C79), - PIXEL_MAP_R_TO_R = ((int)0x0C76), - PIXEL_MAP_I_TO_R = ((int)0x0C72), - PIXEL_MAP_I_TO_B = ((int)0x0C74), - PIXEL_MAP_I_TO_A = ((int)0x0C75), - PIXEL_MAP_S_TO_S = ((int)0x0C71), PIXEL_MAP_B_TO_B = ((int)0x0C78), + PIXEL_MAP_S_TO_S = ((int)0x0C71), + PIXEL_MAP_R_TO_R = ((int)0x0C76), + PIXEL_MAP_I_TO_B = ((int)0x0C74), + PIXEL_MAP_I_TO_G = ((int)0x0C73), + PIXEL_MAP_I_TO_A = ((int)0x0C75), + PIXEL_MAP_A_TO_A = ((int)0x0C79), + PIXEL_MAP_G_TO_G = ((int)0x0C77), PIXEL_MAP_I_TO_I = ((int)0x0C70), + PIXEL_MAP_I_TO_R = ((int)0x0C72), } public enum GetPointervPName { - NORMAL_ARRAY_POINTER = ((int)0x808F), - TEXTURE_COORD_ARRAY_POINTER = ((int)0x8092), - INSTRUMENT_BUFFER_POINTER_SGIX = ((int)SGIX_instruments.INSTRUMENT_BUFFER_POINTER_SGIX), - VERTEX_ARRAY_POINTER = ((int)0x808E), - EDGE_FLAG_ARRAY_POINTER = ((int)0x8093), - SELECTION_BUFFER_POINTER = ((int)0x0DF3), - INDEX_ARRAY_POINTER = ((int)0x8091), - COLOR_ARRAY_POINTER = ((int)0x8090), FEEDBACK_BUFFER_POINTER = ((int)0x0DF0), + EDGE_FLAG_ARRAY_POINTER = ((int)0x8093), + TEXTURE_COORD_ARRAY_POINTER = ((int)0x8092), + INDEX_ARRAY_POINTER = ((int)0x8091), + INSTRUMENT_BUFFER_POINTER_SGIX = ((int)SGIX_instruments.INSTRUMENT_BUFFER_POINTER_SGIX), + SELECTION_BUFFER_POINTER = ((int)0x0DF3), + NORMAL_ARRAY_POINTER = ((int)0x808F), + VERTEX_ARRAY_POINTER = ((int)0x808E), + COLOR_ARRAY_POINTER = ((int)0x8090), } public enum GetPName { - INDEX_CLEAR_VALUE = ((int)0x0C20), - STENCIL_FAIL = ((int)0x0B94), - MAX_ASYNC_HISTOGRAM_SGIX = ((int)SGIX_async_histogram.MAX_ASYNC_HISTOGRAM_SGIX), - MAX_4D_TEXTURE_SIZE_SGIS = ((int)SGIS_texture4D.MAX_4D_TEXTURE_SIZE_SGIS), - COLOR_MATERIAL_FACE = ((int)0x0B55), - MAX_ASYNC_DRAW_PIXELS_SGIX = ((int)SGIX_async_pixel.MAX_ASYNC_DRAW_PIXELS_SGIX), - FEEDBACK_BUFFER_TYPE = ((int)0x0DF2), - ZOOM_Y = ((int)0x0D17), - MAX_CLIPMAP_DEPTH_SGIX = ((int)SGIX_clipmap.MAX_CLIPMAP_DEPTH_SGIX), - LIGHT5 = ((int)LightName.LIGHT5), - FOG = ((int)0x0B60), - CONVOLUTION_HINT_SGIX = ((int)SGIX_convolution_accuracy.CONVOLUTION_HINT_SGIX), - POLYGON_STIPPLE = ((int)0x0B42), - POINT_SIZE_GRANULARITY = ((int)0x0B13), - INDEX_ARRAY = ((int)0x8077), - POST_CONVOLUTION_ALPHA_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_ALPHA_BIAS_EXT), - STENCIL_VALUE_MASK = ((int)0x0B93), - RED_BIAS = ((int)0x0D15), - POST_CONVOLUTION_BLUE_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_BLUE_BIAS_EXT), - SAMPLE_MASK_INVERT_SGIS = ((int)SGIS_multisample.SAMPLE_MASK_INVERT_SGIS), - SPRITE_SGIX = ((int)SGIX_sprite.SPRITE_SGIX), - SMOOTH_LINE_WIDTH_GRANULARITY = ((int)VERSION_1_2.SMOOTH_LINE_WIDTH_GRANULARITY), - CLIENT_ATTRIB_STACK_DEPTH = ((int)0x0BB1), - LOGIC_OP = ((int)0x0BF1), - PIXEL_MAP_I_TO_G_SIZE = ((int)0x0CB3), - FRAGMENT_COLOR_MATERIAL_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_COLOR_MATERIAL_SGIX), - FRAMEZOOM_SGIX = ((int)SGIX_framezoom.FRAMEZOOM_SGIX), + FRAGMENT_COLOR_MATERIAL_FACE_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_COLOR_MATERIAL_FACE_SGIX), + POLYGON_MODE = ((int)0x0B40), + STENCIL_FUNC = ((int)0x0B92), + FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX), + HISTOGRAM_EXT = ((int)EXT_histogram.HISTOGRAM_EXT), + CULL_FACE_MODE = ((int)0x0B45), + PACK_RESAMPLE_SGIX = ((int)SGIX_resample.PACK_RESAMPLE_SGIX), + POST_TEXTURE_FILTER_BIAS_RANGE_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_BIAS_RANGE_SGIX), + CURRENT_RASTER_DISTANCE = ((int)0x0B09), + PIXEL_TILE_BEST_ALIGNMENT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_BEST_ALIGNMENT_SGIX), + POINT_SIZE = ((int)0x0B11), + MODELVIEW_STACK_DEPTH = ((int)0x0BA3), + TEXTURE_COLOR_TABLE_SGI = ((int)SGI_texture_color_table.TEXTURE_COLOR_TABLE_SGI), + SAMPLE_ALPHA_TO_ONE_SGIS = ((int)SGIS_multisample.SAMPLE_ALPHA_TO_ONE_SGIS), + PIXEL_MAP_I_TO_R_SIZE = ((int)0x0CB2), + ALPHA_BIAS = ((int)0x0D1D), + MAP1_GRID_DOMAIN = ((int)0x0DD0), + PACK_CMYK_HINT_EXT = ((int)EXT_cmyka.PACK_CMYK_HINT_EXT), MAP2_VERTEX_4 = ((int)0x0DB8), + POST_CONVOLUTION_ALPHA_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_ALPHA_SCALE_EXT), + MAP2_VERTEX_3 = ((int)0x0DB7), + DEPTH_RANGE = ((int)0x0B70), + POST_COLOR_MATRIX_BLUE_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_BLUE_SCALE_SGI), + MAX_ASYNC_DRAW_PIXELS_SGIX = ((int)SGIX_async_pixel.MAX_ASYNC_DRAW_PIXELS_SGIX), + PIXEL_MAP_I_TO_I_SIZE = ((int)0x0CB0), + UNPACK_SUBSAMPLE_RATE_SGIX = ((int)SGIX_subsample.UNPACK_SUBSAMPLE_RATE_SGIX), + CURRENT_RASTER_INDEX = ((int)0x0B05), + LIGHT3 = ((int)LightName.LIGHT3), + UNPACK_IMAGE_HEIGHT_EXT = ((int)EXT_texture3D.UNPACK_IMAGE_HEIGHT_EXT), + INDEX_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.INDEX_ARRAY_COUNT_EXT), + LIST_INDEX = ((int)0x0B33), + FOG_OFFSET_VALUE_SGIX = ((int)SGIX_fog_offset.FOG_OFFSET_VALUE_SGIX), + DEPTH_CLEAR_VALUE = ((int)0x0B73), + CLIENT_ATTRIB_STACK_DEPTH = ((int)0x0BB1), + DETAIL_TEXTURE_2D_BINDING_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_2D_BINDING_SGIS), + STENCIL_VALUE_MASK = ((int)0x0B93), + GREEN_BITS = ((int)0x0D53), + COLOR_MATRIX_STACK_DEPTH_SGI = ((int)SGI_color_matrix.COLOR_MATRIX_STACK_DEPTH_SGI), + POST_CONVOLUTION_GREEN_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_GREEN_BIAS_EXT), + FOG_END = ((int)0x0B64), + CLIP_PLANE0 = ((int)ClipPlaneName.CLIP_PLANE0), + MAX_MODELVIEW_STACK_DEPTH = ((int)0x0D36), + LINE_SMOOTH_HINT = ((int)0x0C52), + POLYGON_OFFSET_FACTOR = ((int)0x8038), + MULTISAMPLE_SGIS = ((int)SGIS_multisample.MULTISAMPLE_SGIS), + FOG_MODE = ((int)0x0B65), + POST_CONVOLUTION_RED_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_RED_SCALE_EXT), + PACK_IMAGE_DEPTH_SGIS = ((int)SGIS_texture4D.PACK_IMAGE_DEPTH_SGIS), + LIST_BASE = ((int)0x0B32), + TEXTURE_STACK_DEPTH = ((int)0x0BA5), + SCISSOR_TEST = ((int)0x0C11), + CURRENT_NORMAL = ((int)0x0B02), + CALLIGRAPHIC_FRAGMENT_SGIX = ((int)SGIX_calligraphic_fragment.CALLIGRAPHIC_FRAGMENT_SGIX), + PIXEL_MAP_B_TO_B_SIZE = ((int)0x0CB8), + INTERLACE_SGIX = ((int)SGIX_interlace.INTERLACE_SGIX), + EDGE_FLAG_ARRAY = ((int)0x8079), + MAP1_COLOR_4 = ((int)0x0D90), + TEXTURE_MATRIX = ((int)0x0BA8), + LIGHT4 = ((int)LightName.LIGHT4), + MAX_3D_TEXTURE_SIZE_EXT = ((int)EXT_texture3D.MAX_3D_TEXTURE_SIZE_EXT), + PIXEL_MAP_G_TO_G_SIZE = ((int)0x0CB7), + SELECTION_BUFFER_SIZE = ((int)0x0DF4), + MAP2_TEXTURE_COORD_3 = ((int)0x0DB5), + SPRITE_SGIX = ((int)SGIX_sprite.SPRITE_SGIX), + ASYNC_READ_PIXELS_SGIX = ((int)SGIX_async_pixel.ASYNC_READ_PIXELS_SGIX), + MAX_FRAGMENT_LIGHTS_SGIX = ((int)SGIX_fragment_lighting.MAX_FRAGMENT_LIGHTS_SGIX), + PIXEL_TILE_GRID_WIDTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_WIDTH_SGIX), + LIGHT_MODEL_AMBIENT = ((int)0x0B53), + PIXEL_TEX_GEN_SGIX = ((int)SGIX_pixel_texture.PIXEL_TEX_GEN_SGIX), + ZOOM_X = ((int)0x0D16), + PACK_SKIP_VOLUMES_SGIS = ((int)SGIS_texture4D.PACK_SKIP_VOLUMES_SGIS), + CLIP_PLANE3 = ((int)ClipPlaneName.CLIP_PLANE3), + COLOR_MATERIAL_FACE = ((int)0x0B55), + SHARED_TEXTURE_PALETTE_EXT = ((int)EXT_shared_texture_palette.SHARED_TEXTURE_PALETTE_EXT), SMOOTH_POINT_SIZE_RANGE = ((int)VERSION_1_2.SMOOTH_POINT_SIZE_RANGE), + ATTRIB_STACK_DEPTH = ((int)0x0BB0), + MAX_CLIENT_ATTRIB_STACK_DEPTH = ((int)0x0D3B), + MAP1_GRID_SEGMENTS = ((int)0x0DD1), + FRAGMENT_LIGHT0_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT0_SGIX), + BLUE_SCALE = ((int)0x0D1A), + POINT_SMOOTH = ((int)0x0B10), + MAX_PROJECTION_STACK_DEPTH = ((int)0x0D38), + INDEX_WRITEMASK = ((int)0x0C21), + TEXTURE_BINDING_3D = ((int)0x806A), + MAP1_TEXTURE_COORD_4 = ((int)0x0D96), + TEXTURE_BINDING_1D = ((int)0x8068), + UNPACK_SKIP_IMAGES_EXT = ((int)EXT_texture3D.UNPACK_SKIP_IMAGES_EXT), + GENERATE_MIPMAP_HINT_SGIS = ((int)SGIS_generate_mipmap.GENERATE_MIPMAP_HINT_SGIS), + POST_COLOR_MATRIX_RED_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_RED_BIAS_SGI), + NORMAL_ARRAY_STRIDE = ((int)0x807F), + FOG = ((int)0x0B60), + CURRENT_RASTER_POSITION_VALID = ((int)0x0B08), + COLOR_ARRAY_TYPE = ((int)0x8082), + POST_COLOR_MATRIX_GREEN_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_GREEN_BIAS_SGI), + CLIP_PLANE5 = ((int)ClipPlaneName.CLIP_PLANE5), + PACK_SKIP_PIXELS = ((int)0x0D04), + ALPHA_SCALE = ((int)0x0D1C), + SAMPLE_MASK_SGIS = ((int)SGIS_multisample.SAMPLE_MASK_SGIS), + STEREO = ((int)0x0C33), + READ_BUFFER = ((int)0x0C02), + MAX_4D_TEXTURE_SIZE_SGIS = ((int)SGIS_texture4D.MAX_4D_TEXTURE_SIZE_SGIS), + RENDER_MODE = ((int)0x0C40), + POINT_SIZE_RANGE = ((int)0x0B12), + LIST_MODE = ((int)0x0B30), + FOG_OFFSET_SGIX = ((int)SGIX_fog_offset.FOG_OFFSET_SGIX), + LIGHTING = ((int)0x0B50), + ACCUM_CLEAR_VALUE = ((int)0x0B80), + UNPACK_RESAMPLE_SGIX = ((int)SGIX_resample.UNPACK_RESAMPLE_SGIX), + TEXTURE_GEN_Q = ((int)0x0C63), + MAP2_TEXTURE_COORD_2 = ((int)0x0DB4), TEXTURE_GEN_T = ((int)0x0C61), + ALIASED_LINE_WIDTH_RANGE = ((int)VERSION_1_2.ALIASED_LINE_WIDTH_RANGE), + RED_BITS = ((int)0x0D52), + COLOR_TABLE_SGI = ((int)SGI_color_table.COLOR_TABLE_SGI), + SCISSOR_BOX = ((int)0x0C10), + PIXEL_TILE_GRID_DEPTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_DEPTH_SGIX), + INDEX_ARRAY_TYPE = ((int)0x8085), + LIGHT6 = ((int)LightName.LIGHT6), + MAX_COLOR_MATRIX_STACK_DEPTH_SGI = ((int)SGI_color_matrix.MAX_COLOR_MATRIX_STACK_DEPTH_SGI), + SAMPLES_SGIS = ((int)SGIS_multisample.SAMPLES_SGIS), + BLEND = ((int)0x0BE2), + STENCIL_CLEAR_VALUE = ((int)0x0B91), + FEEDBACK_BUFFER_SIZE = ((int)0x0DF1), + SEPARABLE_2D_EXT = ((int)EXT_convolution.SEPARABLE_2D_EXT), + LINE_STIPPLE_REPEAT = ((int)0x0B26), + INDEX_MODE = ((int)0x0C30), + TEXTURE_COORD_ARRAY_STRIDE = ((int)0x808A), + SMOOTH_LINE_WIDTH_RANGE = ((int)VERSION_1_2.SMOOTH_LINE_WIDTH_RANGE), + STENCIL_REF = ((int)0x0B97), + SMOOTH_POINT_SIZE_GRANULARITY = ((int)VERSION_1_2.SMOOTH_POINT_SIZE_GRANULARITY), + BLUE_BITS = ((int)0x0D54), + FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX), + COLOR_LOGIC_OP = ((int)0x0BF2), + POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_CONVOLUTION_COLOR_TABLE_SGI), + BLEND_COLOR_EXT = ((int)EXT_blend_color.BLEND_COLOR_EXT), + PIXEL_TEXTURE_SGIS = ((int)SGIS_pixel_texture.PIXEL_TEXTURE_SGIS), + MAX_FRAMEZOOM_FACTOR_SGIX = ((int)SGIX_framezoom.MAX_FRAMEZOOM_FACTOR_SGIX), + MATRIX_MODE = ((int)0x0BA0), + DEPTH_FUNC = ((int)0x0B74), + POST_COLOR_MATRIX_RED_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_RED_SCALE_SGI), + PACK_SUBSAMPLE_RATE_SGIX = ((int)SGIX_subsample.PACK_SUBSAMPLE_RATE_SGIX), + FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX), + ACCUM_RED_BITS = ((int)0x0D58), + POLYGON_OFFSET_UNITS = ((int)0x2A00), + TEXTURE_2D = ((int)0x0DE1), + EDGE_FLAG_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.EDGE_FLAG_ARRAY_COUNT_EXT), + TEXTURE_COORD_ARRAY_TYPE = ((int)0x8089), + CURRENT_INDEX = ((int)0x0B01), + PACK_SWAP_BYTES = ((int)0x0D00), + INDEX_ARRAY = ((int)0x8077), + GREEN_BIAS = ((int)0x0D19), + SAMPLE_MASK_INVERT_SGIS = ((int)SGIS_multisample.SAMPLE_MASK_INVERT_SGIS), + AUTO_NORMAL = ((int)0x0D80), + POINT_SIZE_GRANULARITY = ((int)0x0B13), + POLYGON_SMOOTH = ((int)0x0B41), + FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX), + ALPHA_BITS = ((int)0x0D55), + UNPACK_ALIGNMENT = ((int)0x0CF5), + SAMPLE_PATTERN_SGIS = ((int)SGIS_multisample.SAMPLE_PATTERN_SGIS), + INDEX_ARRAY_STRIDE = ((int)0x8086), + POLYGON_OFFSET_BIAS_EXT = ((int)EXT_polygon_offset.POLYGON_OFFSET_BIAS_EXT), + RED_SCALE = ((int)0x0D14), + UNPACK_SKIP_ROWS = ((int)0x0CF3), + INDEX_LOGIC_OP = ((int)0x0BF1), + MAP2_COLOR_4 = ((int)0x0DB0), + VERTEX_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.VERTEX_ARRAY_COUNT_EXT), + MAP1_NORMAL = ((int)0x0D92), + MAP1_TEXTURE_COORD_2 = ((int)0x0D94), + PIXEL_MAP_I_TO_G_SIZE = ((int)0x0CB3), + ACCUM_BLUE_BITS = ((int)0x0D5A), + ASYNC_DRAW_PIXELS_SGIX = ((int)SGIX_async_pixel.ASYNC_DRAW_PIXELS_SGIX), + COLOR_WRITEMASK = ((int)0x0C23), + NAME_STACK_DEPTH = ((int)0x0D70), + POST_CONVOLUTION_BLUE_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_BLUE_BIAS_EXT), + MAX_NAME_STACK_DEPTH = ((int)0x0D37), + CLIP_PLANE4 = ((int)ClipPlaneName.CLIP_PLANE4), + FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX), + PIXEL_MAP_I_TO_A_SIZE = ((int)0x0CB5), + PACK_SKIP_IMAGES_EXT = ((int)EXT_texture3D.PACK_SKIP_IMAGES_EXT), + LIGHT0 = ((int)LightName.LIGHT0), + PIXEL_MAP_R_TO_R_SIZE = ((int)0x0CB6), + FOG_HINT = ((int)0x0C54), + PROJECTION_STACK_DEPTH = ((int)0x0BA4), + PIXEL_TILE_CACHE_SIZE_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_CACHE_SIZE_SGIX), + RESCALE_NORMAL_EXT = ((int)EXT_rescale_normal.RESCALE_NORMAL_EXT), + MAP2_GRID_DOMAIN = ((int)0x0DD2), + ALPHA_TEST_FUNC = ((int)0x0BC1), + MAX_CLIPMAP_DEPTH_SGIX = ((int)SGIX_clipmap.MAX_CLIPMAP_DEPTH_SGIX), + UNPACK_SKIP_PIXELS = ((int)0x0CF4), + NORMAL_ARRAY_TYPE = ((int)0x807E), + FOG_FUNC_POINTS_SGIS = ((int)SGIS_fog_function.FOG_FUNC_POINTS_SGIS), + GREEN_SCALE = ((int)0x0D18), + PACK_ROW_LENGTH = ((int)0x0D02), + CURRENT_COLOR = ((int)0x0B00), + MAX_FOG_FUNC_POINTS_SGIS = ((int)SGIS_fog_function.MAX_FOG_FUNC_POINTS_SGIS), + POST_CONVOLUTION_BLUE_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_BLUE_SCALE_EXT), + COLOR_ARRAY_SIZE = ((int)0x8081), + MAP2_TEXTURE_COORD_4 = ((int)0x0DB6), + COLOR_MATERIAL_PARAMETER = ((int)0x0B56), + FOG_DENSITY = ((int)0x0B62), + FOG_START = ((int)0x0B63), + FRONT_FACE = ((int)0x0B46), + POST_COLOR_MATRIX_ALPHA_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_ALPHA_SCALE_SGI), + SPRITE_AXIS_SGIX = ((int)SGIX_sprite.SPRITE_AXIS_SGIX), + UNPACK_SKIP_VOLUMES_SGIS = ((int)SGIS_texture4D.UNPACK_SKIP_VOLUMES_SGIS), + MAP1_VERTEX_4 = ((int)0x0D98), + ASYNC_TEX_IMAGE_SGIX = ((int)SGIX_async_pixel.ASYNC_TEX_IMAGE_SGIX), + LIGHT5 = ((int)LightName.LIGHT5), + MAP1_VERTEX_3 = ((int)0x0D97), + AUX_BUFFERS = ((int)0x0C00), + UNPACK_LSB_FIRST = ((int)0x0CF1), + VERTEX_ARRAY_SIZE = ((int)0x807A), + COLOR_MATERIAL = ((int)0x0B57), + MAP1_TEXTURE_COORD_3 = ((int)0x0D95), + LINE_STIPPLE_PATTERN = ((int)0x0B25), + PERSPECTIVE_CORRECTION_HINT = ((int)0x0C50), + MAX_ASYNC_TEX_IMAGE_SGIX = ((int)SGIX_async_pixel.MAX_ASYNC_TEX_IMAGE_SGIX), + PIXEL_MAP_A_TO_A_SIZE = ((int)0x0CB9), + UNPACK_CMYK_HINT_EXT = ((int)EXT_cmyka.UNPACK_CMYK_HINT_EXT), + SPRITE_TRANSLATION_SGIX = ((int)SGIX_sprite.SPRITE_TRANSLATION_SGIX), + PIXEL_TILE_CACHE_INCREMENT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_CACHE_INCREMENT_SGIX), + SAMPLE_MASK_VALUE_SGIS = ((int)SGIS_multisample.SAMPLE_MASK_VALUE_SGIS), + LOGIC_OP = ((int)0x0BF1), + PACK_LSB_FIRST = ((int)0x0D01), + LIGHT_ENV_MODE_SGIX = ((int)SGIX_fragment_lighting.LIGHT_ENV_MODE_SGIX), + MAP2_INDEX = ((int)0x0DB1), + UNPACK_IMAGE_DEPTH_SGIS = ((int)SGIS_texture4D.UNPACK_IMAGE_DEPTH_SGIS), + FRAMEZOOM_SGIX = ((int)SGIX_framezoom.FRAMEZOOM_SGIX), + COLOR_CLEAR_VALUE = ((int)0x0C22), + MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)SGIX_clipmap.MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX), + PROJECTION_MATRIX = ((int)0x0BA7), + POST_CONVOLUTION_GREEN_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_GREEN_SCALE_EXT), + ACCUM_ALPHA_BITS = ((int)0x0D5B), + DEPTH_TEST = ((int)0x0B71), + LINE_STIPPLE = ((int)0x0B24), + MAX_TEXTURE_STACK_DEPTH = ((int)0x0D39), + LINE_WIDTH = ((int)0x0B21), + MAX_LIGHTS = ((int)0x0D31), + STENCIL_PASS_DEPTH_PASS = ((int)0x0B96), + VERTEX_ARRAY_STRIDE = ((int)0x807C), + PIXEL_TILE_GRID_HEIGHT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_HEIGHT_SGIX), + PACK_IMAGE_HEIGHT_EXT = ((int)EXT_texture3D.PACK_IMAGE_HEIGHT_EXT), + EDGE_FLAG = ((int)0x0B43), + POST_CONVOLUTION_ALPHA_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_ALPHA_BIAS_EXT), + TEXTURE_1D = ((int)0x0DE0), + POINT_SMOOTH_HINT = ((int)0x0C51), TEXTURE_GEN_S = ((int)0x0C60), TEXTURE_GEN_R = ((int)0x0C62), - TEXTURE_GEN_Q = ((int)0x0C63), - MAP2_NORMAL = ((int)0x0DB2), POINT_FADE_THRESHOLD_SIZE_SGIS = ((int)SGIS_point_parameters.POINT_FADE_THRESHOLD_SIZE_SGIS), - POINT_SIZE = ((int)0x0B11), - INDEX_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.INDEX_ARRAY_COUNT_EXT), - FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX), - CURRENT_RASTER_COLOR = ((int)0x0B04), - MINMAX_EXT = ((int)EXT_histogram.MINMAX_EXT), - CULL_FACE = ((int)0x0B44), - COLOR_LOGIC_OP = ((int)0x0BF2), - PIXEL_MAP_R_TO_R_SIZE = ((int)0x0CB6), - ACCUM_CLEAR_VALUE = ((int)0x0B80), - LINE_WIDTH_RANGE = ((int)0x0B22), - MAX_VIEWPORT_DIMS = ((int)0x0D3A), - EDGE_FLAG_ARRAY = ((int)0x8079), - LIGHT2 = ((int)LightName.LIGHT2), - PIXEL_TILE_CACHE_INCREMENT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_CACHE_INCREMENT_SGIX), - POINT_SMOOTH_HINT = ((int)0x0C51), - EDGE_FLAG_ARRAY_STRIDE = ((int)0x808C), - COLOR_TABLE_SGI = ((int)SGI_color_table.COLOR_TABLE_SGI), - BLEND_EQUATION_EXT = ((int)EXT_blend_minmax.BLEND_EQUATION_EXT), - POINT_SMOOTH = ((int)0x0B10), - CLIP_PLANE5 = ((int)ClipPlaneName.CLIP_PLANE5), - CLIP_PLANE4 = ((int)ClipPlaneName.CLIP_PLANE4), - CLIP_PLANE1 = ((int)ClipPlaneName.CLIP_PLANE1), - CLIP_PLANE0 = ((int)ClipPlaneName.CLIP_PLANE0), - CLIP_PLANE3 = ((int)ClipPlaneName.CLIP_PLANE3), - CLIP_PLANE2 = ((int)ClipPlaneName.CLIP_PLANE2), - REFERENCE_PLANE_SGIX = ((int)SGIX_reference_plane.REFERENCE_PLANE_SGIX), - POST_CONVOLUTION_BLUE_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_BLUE_SCALE_EXT), - PIXEL_TILE_WIDTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_WIDTH_SGIX), - NORMAL_ARRAY_TYPE = ((int)0x807E), - PACK_LSB_FIRST = ((int)0x0D01), - BLUE_BITS = ((int)0x0D54), - CONVOLUTION_1D_EXT = ((int)EXT_convolution.CONVOLUTION_1D_EXT), - BLEND = ((int)0x0BE2), - PIXEL_TILE_GRID_WIDTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_WIDTH_SGIX), - STENCIL_FUNC = ((int)0x0B92), - MAX_COLOR_MATRIX_STACK_DEPTH_SGI = ((int)SGI_color_matrix.MAX_COLOR_MATRIX_STACK_DEPTH_SGI), - POINT_SIZE_MAX_SGIS = ((int)SGIS_point_parameters.POINT_SIZE_MAX_SGIS), - NORMAL_ARRAY_STRIDE = ((int)0x807F), - PACK_SWAP_BYTES = ((int)0x0D00), - FOG_MODE = ((int)0x0B65), - COLOR_ARRAY_SIZE = ((int)0x8081), - UNPACK_SWAP_BYTES = ((int)0x0CF0), - MAP_STENCIL = ((int)0x0D11), - FOG_INDEX = ((int)0x0B61), - AUTO_NORMAL = ((int)0x0D80), - MAP1_TEXTURE_COORD_2 = ((int)0x0D94), - BLEND_COLOR_EXT = ((int)EXT_blend_color.BLEND_COLOR_EXT), - DEPTH_CLEAR_VALUE = ((int)0x0B73), - REFERENCE_PLANE_EQUATION_SGIX = ((int)SGIX_reference_plane.REFERENCE_PLANE_EQUATION_SGIX), - FRAGMENT_COLOR_MATERIAL_FACE_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_COLOR_MATERIAL_FACE_SGIX), - PIXEL_MAP_I_TO_R_SIZE = ((int)0x0CB2), - STENCIL_WRITEMASK = ((int)0x0B98), - LIGHT_ENV_MODE_SGIX = ((int)SGIX_fragment_lighting.LIGHT_ENV_MODE_SGIX), - POST_CONVOLUTION_ALPHA_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_ALPHA_SCALE_EXT), - ASYNC_READ_PIXELS_SGIX = ((int)SGIX_async_pixel.ASYNC_READ_PIXELS_SGIX), - DEPTH_BIAS = ((int)0x0D1F), - STENCIL_BITS = ((int)0x0D57), - PACK_SKIP_ROWS = ((int)0x0D03), - INDEX_MODE = ((int)0x0C30), - POST_CONVOLUTION_GREEN_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_GREEN_BIAS_EXT), - CALLIGRAPHIC_FRAGMENT_SGIX = ((int)SGIX_calligraphic_fragment.CALLIGRAPHIC_FRAGMENT_SGIX), - LIST_INDEX = ((int)0x0B33), - CURRENT_RASTER_POSITION = ((int)0x0B07), - UNPACK_LSB_FIRST = ((int)0x0CF1), - PACK_SKIP_VOLUMES_SGIS = ((int)SGIS_texture4D.PACK_SKIP_VOLUMES_SGIS), - SAMPLE_BUFFERS_SGIS = ((int)SGIS_multisample.SAMPLE_BUFFERS_SGIS), - LIGHT7 = ((int)LightName.LIGHT7), - GREEN_BITS = ((int)0x0D53), - MAX_FRAGMENT_LIGHTS_SGIX = ((int)SGIX_fragment_lighting.MAX_FRAGMENT_LIGHTS_SGIX), - DISTANCE_ATTENUATION_SGIS = ((int)SGIS_point_parameters.DISTANCE_ATTENUATION_SGIS), - COLOR_CLEAR_VALUE = ((int)0x0C22), - ATTRIB_STACK_DEPTH = ((int)0x0BB0), - GREEN_BIAS = ((int)0x0D19), - LINE_SMOOTH = ((int)0x0B20), - PIXEL_MAP_I_TO_A_SIZE = ((int)0x0CB5), - TEXTURE_3D_BINDING_EXT = ((int)EXT_texture_object.TEXTURE_3D_BINDING_EXT), - SAMPLES_SGIS = ((int)SGIS_multisample.SAMPLES_SGIS), - CURRENT_RASTER_DISTANCE = ((int)0x0B09), - UNPACK_CMYK_HINT_EXT = ((int)EXT_cmyka.UNPACK_CMYK_HINT_EXT), - UNPACK_IMAGE_HEIGHT_EXT = ((int)EXT_texture3D.UNPACK_IMAGE_HEIGHT_EXT), - FOG_HINT = ((int)0x0C54), - COLOR_MATRIX_SGI = ((int)SGI_color_matrix.COLOR_MATRIX_SGI), - STENCIL_TEST = ((int)0x0B90), - MAP1_COLOR_4 = ((int)0x0D90), - PACK_RESAMPLE_SGIX = ((int)SGIX_resample.PACK_RESAMPLE_SGIX), - INDEX_OFFSET = ((int)0x0D13), - RED_SCALE = ((int)0x0D14), - TEXTURE_COORD_ARRAY_SIZE = ((int)0x8088), - TEXTURE_COORD_ARRAY_STRIDE = ((int)0x808A), - STENCIL_PASS_DEPTH_FAIL = ((int)0x0B95), - MAX_CLIENT_ATTRIB_STACK_DEPTH = ((int)0x0D3B), - MAX_TEXTURE_SIZE = ((int)0x0D33), - DITHER = ((int)0x0BD0), - PIXEL_TEXTURE_SGIS = ((int)SGIS_pixel_texture.PIXEL_TEXTURE_SGIS), - FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX), - COLOR_ARRAY_STRIDE = ((int)0x8083), - SAMPLE_MASK_VALUE_SGIS = ((int)SGIS_multisample.SAMPLE_MASK_VALUE_SGIS), - CURRENT_RASTER_TEXTURE_COORDS = ((int)0x0B06), - MAP1_TEXTURE_COORD_1 = ((int)0x0D93), - NORMAL_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.NORMAL_ARRAY_COUNT_EXT), - RENDER_MODE = ((int)0x0C40), - ALPHA_SCALE = ((int)0x0D1C), - PROJECTION_STACK_DEPTH = ((int)0x0BA4), - ACCUM_RED_BITS = ((int)0x0D58), - PACK_SKIP_IMAGES_EXT = ((int)EXT_texture3D.PACK_SKIP_IMAGES_EXT), - PIXEL_MAP_A_TO_A_SIZE = ((int)0x0CB9), - LIGHT_MODEL_LOCAL_VIEWER = ((int)0x0B51), - LINE_WIDTH = ((int)0x0B21), - FOG_START = ((int)0x0B63), - POINT_SIZE_MIN_SGIS = ((int)SGIS_point_parameters.POINT_SIZE_MIN_SGIS), - MAX_NAME_STACK_DEPTH = ((int)0x0D37), - DETAIL_TEXTURE_2D_BINDING_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_2D_BINDING_SGIS), - CURRENT_COLOR = ((int)0x0B00), - POLYGON_OFFSET_BIAS_EXT = ((int)EXT_polygon_offset.POLYGON_OFFSET_BIAS_EXT), - PIXEL_TILE_HEIGHT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_HEIGHT_SGIX), - LIST_MODE = ((int)0x0B30), - PACK_SKIP_PIXELS = ((int)0x0D04), - MAP1_GRID_SEGMENTS = ((int)0x0DD1), - BLUE_BIAS = ((int)0x0D1B), - INDEX_WRITEMASK = ((int)0x0C21), - LIGHT4 = ((int)LightName.LIGHT4), - POLYGON_OFFSET_FILL = ((int)0x8037), - GENERATE_MIPMAP_HINT_SGIS = ((int)SGIS_generate_mipmap.GENERATE_MIPMAP_HINT_SGIS), - MAX_PIXEL_MAP_TABLE = ((int)0x0D34), - MAP2_GRID_DOMAIN = ((int)0x0DD2), - SAMPLE_ALPHA_TO_MASK_SGIS = ((int)SGIS_multisample.SAMPLE_ALPHA_TO_MASK_SGIS), - FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX), - VERTEX_PRECLIP_SGIX = ((int)SGIX_vertex_preclip.VERTEX_PRECLIP_SGIX), - EDGE_FLAG_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.EDGE_FLAG_ARRAY_COUNT_EXT), - INDEX_ARRAY_TYPE = ((int)0x8085), - PIXEL_TILE_CACHE_SIZE_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_CACHE_SIZE_SGIX), - PIXEL_MAP_I_TO_I_SIZE = ((int)0x0CB0), - MAP1_VERTEX_3 = ((int)0x0D97), - UNPACK_SKIP_VOLUMES_SGIS = ((int)SGIS_texture4D.UNPACK_SKIP_VOLUMES_SGIS), - COLOR_MATERIAL = ((int)0x0B57), - EDGE_FLAG = ((int)0x0B43), - CURRENT_RASTER_POSITION_VALID = ((int)0x0B08), - PIXEL_TILE_GRID_HEIGHT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_HEIGHT_SGIX), - FOG_FUNC_POINTS_SGIS = ((int)SGIS_fog_function.FOG_FUNC_POINTS_SGIS), - TEXTURE_STACK_DEPTH = ((int)0x0BA5), - LOGIC_OP_MODE = ((int)0x0BF0), - POST_COLOR_MATRIX_RED_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_RED_BIAS_SGI), - MAP2_TEXTURE_COORD_3 = ((int)0x0DB5), - FOG_DENSITY = ((int)0x0B62), - ASYNC_DRAW_PIXELS_SGIX = ((int)SGIX_async_pixel.ASYNC_DRAW_PIXELS_SGIX), - NORMAL_ARRAY = ((int)0x8075), - LIGHT_MODEL_AMBIENT = ((int)0x0B53), - UNPACK_SKIP_ROWS = ((int)0x0CF3), - STENCIL_PASS_DEPTH_PASS = ((int)0x0B96), - MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)SGIX_clipmap.MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX), - SAMPLE_MASK_SGIS = ((int)SGIS_multisample.SAMPLE_MASK_SGIS), - VERTEX_ARRAY_STRIDE = ((int)0x807C), - PERSPECTIVE_CORRECTION_HINT = ((int)0x0C50), - VIEWPORT = ((int)0x0BA2), - SHARED_TEXTURE_PALETTE_EXT = ((int)EXT_shared_texture_palette.SHARED_TEXTURE_PALETTE_EXT), - DEPTH_SCALE = ((int)0x0D1E), - PIXEL_TILE_GRID_DEPTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_DEPTH_SGIX), - PACK_IMAGE_DEPTH_SGIS = ((int)SGIS_texture4D.PACK_IMAGE_DEPTH_SGIS), - LIGHT_MODEL_COLOR_CONTROL = ((int)VERSION_1_2.LIGHT_MODEL_COLOR_CONTROL), - LIGHT1 = ((int)LightName.LIGHT1), - MODELVIEW_MATRIX = ((int)0x0BA6), - POLYGON_OFFSET_UNITS = ((int)0x2A00), - POST_COLOR_MATRIX_GREEN_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_GREEN_BIAS_SGI), - NAME_STACK_DEPTH = ((int)0x0D70), - GREEN_SCALE = ((int)0x0D18), - ASYNC_MARKER_SGIX = ((int)SGIX_async.ASYNC_MARKER_SGIX), - INDEX_LOGIC_OP = ((int)0x0BF1), - NORMALIZE = ((int)0x0BA1), - POST_CONVOLUTION_RED_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_RED_SCALE_EXT), - POLYGON_OFFSET_POINT = ((int)0x2A01), - UNPACK_IMAGE_DEPTH_SGIS = ((int)SGIS_texture4D.UNPACK_IMAGE_DEPTH_SGIS), - TEXTURE_COORD_ARRAY = ((int)0x8078), - UNPACK_RESAMPLE_SGIX = ((int)SGIX_resample.UNPACK_RESAMPLE_SGIX), - MAP2_TEXTURE_COORD_4 = ((int)0x0DB6), - PIXEL_MAP_S_TO_S_SIZE = ((int)0x0CB1), - ACCUM_BLUE_BITS = ((int)0x0D5A), - FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX), - LINE_STIPPLE_REPEAT = ((int)0x0B26), - READ_BUFFER = ((int)0x0C02), - DEPTH_TEST = ((int)0x0B71), - TEXTURE_COLOR_TABLE_SGI = ((int)SGI_texture_color_table.TEXTURE_COLOR_TABLE_SGI), - STENCIL_REF = ((int)0x0B97), - POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_COLOR_MATRIX_COLOR_TABLE_SGI), - PACK_CMYK_HINT_EXT = ((int)EXT_cmyka.PACK_CMYK_HINT_EXT), - VERTEX_ARRAY_SIZE = ((int)0x807A), - VERTEX_ARRAY_TYPE = ((int)0x807B), - MAP1_TEXTURE_COORD_3 = ((int)0x0D95), - PIXEL_TEX_GEN_SGIX = ((int)SGIX_pixel_texture.PIXEL_TEX_GEN_SGIX), - COLOR_ARRAY = ((int)0x8076), - POST_COLOR_MATRIX_BLUE_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_BLUE_SCALE_SGI), - FOG_COLOR = ((int)0x0B66), - IR_INSTRUMENT1_SGIX = ((int)SGIX_ir_instrument1.IR_INSTRUMENT1_SGIX), - POST_TEXTURE_FILTER_BIAS_RANGE_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_BIAS_RANGE_SGIX), - ASYNC_HISTOGRAM_SGIX = ((int)SGIX_async_histogram.ASYNC_HISTOGRAM_SGIX), - POLYGON_SMOOTH = ((int)0x0B41), - PROJECTION_MATRIX = ((int)0x0BA7), - SMOOTH_LINE_WIDTH_RANGE = ((int)VERSION_1_2.SMOOTH_LINE_WIDTH_RANGE), - POLYGON_OFFSET_LINE = ((int)0x2A02), - COLOR_MATERIAL_PARAMETER = ((int)0x0B56), - UNPACK_ALIGNMENT = ((int)0x0CF5), - RESCALE_NORMAL_EXT = ((int)EXT_rescale_normal.RESCALE_NORMAL_EXT), - POST_COLOR_MATRIX_BLUE_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_BLUE_BIAS_SGI), - SAMPLE_PATTERN_SGIS = ((int)SGIS_multisample.SAMPLE_PATTERN_SGIS), - MAX_ASYNC_TEX_IMAGE_SGIX = ((int)SGIX_async_pixel.MAX_ASYNC_TEX_IMAGE_SGIX), - MAX_MODELVIEW_STACK_DEPTH = ((int)0x0D36), - DRAW_BUFFER = ((int)0x0C01), - MAP2_VERTEX_3 = ((int)0x0DB7), - ALPHA_TEST_REF = ((int)0x0BC2), - ZOOM_X = ((int)0x0D16), - LIGHT6 = ((int)LightName.LIGHT6), - PACK_IMAGE_HEIGHT_EXT = ((int)EXT_texture3D.PACK_IMAGE_HEIGHT_EXT), - UNPACK_SUBSAMPLE_RATE_SGIX = ((int)SGIX_subsample.UNPACK_SUBSAMPLE_RATE_SGIX), - TEXTURE_4D_SGIS = ((int)SGIS_texture4D.TEXTURE_4D_SGIS), - CONVOLUTION_2D_EXT = ((int)EXT_convolution.CONVOLUTION_2D_EXT), - RGBA_MODE = ((int)0x0C31), - TEXTURE_4D_BINDING_SGIS = ((int)SGIS_texture4D.TEXTURE_4D_BINDING_SGIS), - MAX_LIST_NESTING = ((int)0x0B31), - POST_COLOR_MATRIX_GREEN_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_GREEN_SCALE_SGI), - PACK_SUBSAMPLE_RATE_SGIX = ((int)SGIX_subsample.PACK_SUBSAMPLE_RATE_SGIX), - MULTISAMPLE_SGIS = ((int)SGIS_multisample.MULTISAMPLE_SGIS), - BLEND_DST = ((int)0x0BE0), - MAX_FOG_FUNC_POINTS_SGIS = ((int)SGIS_fog_function.MAX_FOG_FUNC_POINTS_SGIS), - POST_CONVOLUTION_GREEN_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_GREEN_SCALE_EXT), - MAP2_COLOR_4 = ((int)0x0DB0), - TEXTURE_MATRIX = ((int)0x0BA8), - FRAGMENT_LIGHTING_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHTING_SGIX), - MAX_EVAL_ORDER = ((int)0x0D30), - BLEND_SRC = ((int)0x0BE1), - PIXEL_MAP_B_TO_B_SIZE = ((int)0x0CB8), - UNPACK_ROW_LENGTH = ((int)0x0CF2), - MAP2_TEXTURE_COORD_1 = ((int)0x0DB3), - DEPTH_BITS = ((int)0x0D56), - MAP1_NORMAL = ((int)0x0D92), - VERTEX_ARRAY = ((int)0x8074), - INSTRUMENT_MEASUREMENTS_SGIX = ((int)SGIX_instruments.INSTRUMENT_MEASUREMENTS_SGIX), - MAX_ASYNC_READ_PIXELS_SGIX = ((int)SGIX_async_pixel.MAX_ASYNC_READ_PIXELS_SGIX), - SHADE_MODEL = ((int)0x0B54), - PACK_ROW_LENGTH = ((int)0x0D02), - ALPHA_TEST_FUNC = ((int)0x0BC1), - POST_COLOR_MATRIX_RED_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_RED_SCALE_SGI), - ACCUM_GREEN_BITS = ((int)0x0D59), - ALIASED_POINT_SIZE_RANGE = ((int)VERSION_1_2.ALIASED_POINT_SIZE_RANGE), - CURRENT_TEXTURE_COORDS = ((int)0x0B03), - UNPACK_SKIP_PIXELS = ((int)0x0CF4), - FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX), - MAX_3D_TEXTURE_SIZE_EXT = ((int)EXT_texture3D.MAX_3D_TEXTURE_SIZE_EXT), - FOG_END = ((int)0x0B64), - MAX_TEXTURE_STACK_DEPTH = ((int)0x0D39), - SMOOTH_POINT_SIZE_GRANULARITY = ((int)VERSION_1_2.SMOOTH_POINT_SIZE_GRANULARITY), - FEEDBACK_BUFFER_SIZE = ((int)0x0DF1), - STENCIL_CLEAR_VALUE = ((int)0x0B91), - FRAMEZOOM_FACTOR_SGIX = ((int)SGIX_framezoom.FRAMEZOOM_FACTOR_SGIX), - MAX_ACTIVE_LIGHTS_SGIX = ((int)SGIX_fragment_lighting.MAX_ACTIVE_LIGHTS_SGIX), - LIGHT3 = ((int)LightName.LIGHT3), - POINT_SIZE_RANGE = ((int)0x0B12), PACK_ALIGNMENT = ((int)0x0D05), - SEPARABLE_2D_EXT = ((int)EXT_convolution.SEPARABLE_2D_EXT), - INDEX_ARRAY_STRIDE = ((int)0x8086), - LINE_STIPPLE_PATTERN = ((int)0x0B25), - ALIASED_LINE_WIDTH_RANGE = ((int)VERSION_1_2.ALIASED_LINE_WIDTH_RANGE), - MAX_PROJECTION_STACK_DEPTH = ((int)0x0D38), - STEREO = ((int)0x0C33), - VERTEX_PRECLIP_HINT_SGIX = ((int)SGIX_vertex_preclip.VERTEX_PRECLIP_HINT_SGIX), - FOG_OFFSET_SGIX = ((int)SGIX_fog_offset.FOG_OFFSET_SGIX), - CURRENT_RASTER_INDEX = ((int)0x0B05), - SELECTION_BUFFER_SIZE = ((int)0x0DF4), - FRAGMENT_LIGHT0_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT0_SGIX), - HISTOGRAM_EXT = ((int)EXT_histogram.HISTOGRAM_EXT), - MODELVIEW_STACK_DEPTH = ((int)0x0BA3), - ACCUM_ALPHA_BITS = ((int)0x0D5B), - COLOR_MATRIX_STACK_DEPTH_SGI = ((int)SGI_color_matrix.COLOR_MATRIX_STACK_DEPTH_SGI), - FRONT_FACE = ((int)0x0B46), - VERTEX_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.VERTEX_ARRAY_COUNT_EXT), - CULL_FACE_MODE = ((int)0x0B45), - MAP2_GRID_SEGMENTS = ((int)0x0DD3), - CURRENT_NORMAL = ((int)0x0B02), - PIXEL_MAP_G_TO_G_SIZE = ((int)0x0CB7), - POLYGON_MODE = ((int)0x0B40), - POST_TEXTURE_FILTER_SCALE_RANGE_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_SCALE_RANGE_SGIX), - MAP2_TEXTURE_COORD_2 = ((int)0x0DB4), - DEPTH_WRITEMASK = ((int)0x0B72), - POST_COLOR_MATRIX_ALPHA_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_ALPHA_SCALE_SGI), - ALPHA_BIAS = ((int)0x0D1D), - LIST_BASE = ((int)0x0B32), - ASYNC_TEX_IMAGE_SGIX = ((int)SGIX_async_pixel.ASYNC_TEX_IMAGE_SGIX), - COLOR_WRITEMASK = ((int)0x0C23), - MAP1_TEXTURE_COORD_4 = ((int)0x0D96), - COLOR_ARRAY_TYPE = ((int)0x8082), - ALPHA_BITS = ((int)0x0D55), - PIXEL_TILE_BEST_ALIGNMENT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_BEST_ALIGNMENT_SGIX), - POLYGON_SMOOTH_HINT = ((int)0x0C53), - INTERLACE_SGIX = ((int)SGIX_interlace.INTERLACE_SGIX), - LIGHT_MODEL_TWO_SIDE = ((int)0x0B52), - MAP1_GRID_DOMAIN = ((int)0x0DD0), DOUBLEBUFFER = ((int)0x0C32), - POST_CONVOLUTION_RED_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_RED_BIAS_EXT), - LIGHT0 = ((int)LightName.LIGHT0), - FOG_OFFSET_VALUE_SGIX = ((int)SGIX_fog_offset.FOG_OFFSET_VALUE_SGIX), - PIXEL_TEX_GEN_MODE_SGIX = ((int)SGIX_pixel_texture.PIXEL_TEX_GEN_MODE_SGIX), - BLUE_SCALE = ((int)0x0D1A), - MAP1_INDEX = ((int)0x0D91), - MATRIX_MODE = ((int)0x0BA0), - MAX_FRAMEZOOM_FACTOR_SGIX = ((int)SGIX_framezoom.MAX_FRAMEZOOM_FACTOR_SGIX), - MAP2_INDEX = ((int)0x0DB1), - DEFORMATIONS_MASK_SGIX = ((int)SGIX_polynomial_ffd.DEFORMATIONS_MASK_SGIX), - MAP1_VERTEX_4 = ((int)0x0D98), - ALPHA_TEST = ((int)0x0BC0), - TEXTURE_BINDING_1D = ((int)0x8068), - TEXTURE_BINDING_2D = ((int)0x8069), - TEXTURE_BINDING_3D = ((int)0x806A), - RED_BITS = ((int)0x0D52), - LINE_SMOOTH_HINT = ((int)0x0C52), - MAX_LIGHTS = ((int)0x0D31), - MAX_CLIP_PLANES = ((int)0x0D32), - MAP_COLOR = ((int)0x0D10), - INDEX_SHIFT = ((int)0x0D12), - AUX_BUFFERS = ((int)0x0C00), - INDEX_BITS = ((int)0x0D51), - PIXEL_MAP_I_TO_B_SIZE = ((int)0x0CB4), - POLYGON_OFFSET_FACTOR = ((int)0x8038), - DEPTH_RANGE = ((int)0x0B70), - LIGHTING = ((int)0x0B50), - MAX_ATTRIB_STACK_DEPTH = ((int)0x0D35), - TEXTURE_2D = ((int)0x0DE1), - TEXTURE_1D = ((int)0x0DE0), - TEXTURE_3D_EXT = ((int)EXT_texture3D.TEXTURE_3D_EXT), - SCISSOR_TEST = ((int)0x0C11), - DEPTH_FUNC = ((int)0x0B74), - SPRITE_MODE_SGIX = ((int)SGIX_sprite.SPRITE_MODE_SGIX), + REFERENCE_PLANE_SGIX = ((int)SGIX_reference_plane.REFERENCE_PLANE_SGIX), COLOR_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.COLOR_ARRAY_COUNT_EXT), - SPRITE_AXIS_SGIX = ((int)SGIX_sprite.SPRITE_AXIS_SGIX), - SCISSOR_BOX = ((int)0x0C10), - CURRENT_INDEX = ((int)0x0B01), - POST_COLOR_MATRIX_ALPHA_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_ALPHA_BIAS_SGI), - TEXTURE_COORD_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.TEXTURE_COORD_ARRAY_COUNT_EXT), - SUBPIXEL_BITS = ((int)0x0D50), - TEXTURE_COORD_ARRAY_TYPE = ((int)0x8089), - SAMPLE_ALPHA_TO_ONE_SGIS = ((int)SGIS_multisample.SAMPLE_ALPHA_TO_ONE_SGIS), + PIXEL_TILE_HEIGHT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_HEIGHT_SGIX), + MAX_ACTIVE_LIGHTS_SGIX = ((int)SGIX_fragment_lighting.MAX_ACTIVE_LIGHTS_SGIX), + BLEND_SRC = ((int)0x0BE1), + DISTANCE_ATTENUATION_SGIS = ((int)SGIS_point_parameters.DISTANCE_ATTENUATION_SGIS), + PACK_SKIP_ROWS = ((int)0x0D03), + FOG_COLOR = ((int)0x0B66), + LINE_SMOOTH = ((int)0x0B20), + MAX_VIEWPORT_DIMS = ((int)0x0D3A), + POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_COLOR_MATRIX_COLOR_TABLE_SGI), + COLOR_ARRAY = ((int)0x8076), + MAX_TEXTURE_SIZE = ((int)0x0D33), + FRAGMENT_COLOR_MATERIAL_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_COLOR_MATERIAL_SGIX), + LIGHT_MODEL_COLOR_CONTROL = ((int)VERSION_1_2.LIGHT_MODEL_COLOR_CONTROL), + CLIP_PLANE1 = ((int)ClipPlaneName.CLIP_PLANE1), + PIXEL_TEX_GEN_MODE_SGIX = ((int)SGIX_pixel_texture.PIXEL_TEX_GEN_MODE_SGIX), + VERTEX_PRECLIP_HINT_SGIX = ((int)SGIX_vertex_preclip.VERTEX_PRECLIP_HINT_SGIX), + LIGHT7 = ((int)LightName.LIGHT7), + COLOR_MATRIX_SGI = ((int)SGI_color_matrix.COLOR_MATRIX_SGI), + FEEDBACK_BUFFER_TYPE = ((int)0x0DF2), + RED_BIAS = ((int)0x0D15), + FRAMEZOOM_FACTOR_SGIX = ((int)SGIX_framezoom.FRAMEZOOM_FACTOR_SGIX), LINE_WIDTH_GRANULARITY = ((int)0x0B23), - LINE_STIPPLE = ((int)0x0B24), - POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)SGI_color_table.POST_CONVOLUTION_COLOR_TABLE_SGI), - UNPACK_SKIP_IMAGES_EXT = ((int)EXT_texture3D.UNPACK_SKIP_IMAGES_EXT), - SPRITE_TRANSLATION_SGIX = ((int)SGIX_sprite.SPRITE_TRANSLATION_SGIX), + MODELVIEW_MATRIX = ((int)0x0BA6), + MAX_ASYNC_HISTOGRAM_SGIX = ((int)SGIX_async_histogram.MAX_ASYNC_HISTOGRAM_SGIX), + CULL_FACE = ((int)0x0B44), + DITHER = ((int)0x0BD0), + SMOOTH_LINE_WIDTH_GRANULARITY = ((int)VERSION_1_2.SMOOTH_LINE_WIDTH_GRANULARITY), + CURRENT_RASTER_TEXTURE_COORDS = ((int)0x0B06), + POST_COLOR_MATRIX_GREEN_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_GREEN_SCALE_SGI), + STENCIL_WRITEMASK = ((int)0x0B98), + SAMPLE_ALPHA_TO_MASK_SGIS = ((int)SGIS_multisample.SAMPLE_ALPHA_TO_MASK_SGIS), + STENCIL_FAIL = ((int)0x0B94), + PIXEL_MAP_S_TO_S_SIZE = ((int)0x0CB1), + BLUE_BIAS = ((int)0x0D1B), + SHADE_MODEL = ((int)0x0B54), + ASYNC_MARKER_SGIX = ((int)SGIX_async.ASYNC_MARKER_SGIX), + INDEX_BITS = ((int)0x0D51), + ACCUM_GREEN_BITS = ((int)0x0D59), + FRAGMENT_LIGHTING_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHTING_SGIX), + SPRITE_MODE_SGIX = ((int)SGIX_sprite.SPRITE_MODE_SGIX), + PIXEL_TILE_WIDTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_WIDTH_SGIX), + UNPACK_ROW_LENGTH = ((int)0x0CF2), + CURRENT_RASTER_COLOR = ((int)0x0B04), + TEXTURE_COORD_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.TEXTURE_COORD_ARRAY_COUNT_EXT), + LOGIC_OP_MODE = ((int)0x0BF0), + DEFORMATIONS_MASK_SGIX = ((int)SGIX_polynomial_ffd.DEFORMATIONS_MASK_SGIX), + POINT_SIZE_MIN_SGIS = ((int)SGIS_point_parameters.POINT_SIZE_MIN_SGIS), + CONVOLUTION_HINT_SGIX = ((int)SGIX_convolution_accuracy.CONVOLUTION_HINT_SGIX), + CURRENT_RASTER_POSITION = ((int)0x0B07), + SAMPLE_BUFFERS_SGIS = ((int)SGIS_multisample.SAMPLE_BUFFERS_SGIS), + DEPTH_WRITEMASK = ((int)0x0B72), + DRAW_BUFFER = ((int)0x0C01), + COLOR_ARRAY_STRIDE = ((int)0x8083), + DEPTH_SCALE = ((int)0x0D1E), + ALPHA_TEST = ((int)0x0BC0), + NORMALIZE = ((int)0x0BA1), + IR_INSTRUMENT1_SGIX = ((int)SGIX_ir_instrument1.IR_INSTRUMENT1_SGIX), + MINMAX_EXT = ((int)EXT_histogram.MINMAX_EXT), + TEXTURE_BINDING_2D = ((int)0x8069), + MAX_ATTRIB_STACK_DEPTH = ((int)0x0D35), + LIGHT2 = ((int)LightName.LIGHT2), + TEXTURE_3D_EXT = ((int)EXT_texture3D.TEXTURE_3D_EXT), + CONVOLUTION_1D_EXT = ((int)EXT_convolution.CONVOLUTION_1D_EXT), + MAP1_TEXTURE_COORD_1 = ((int)0x0D93), + VIEWPORT = ((int)0x0BA2), + INSTRUMENT_MEASUREMENTS_SGIX = ((int)SGIX_instruments.INSTRUMENT_MEASUREMENTS_SGIX), + POLYGON_SMOOTH_HINT = ((int)0x0C53), + LIGHT_MODEL_TWO_SIDE = ((int)0x0B52), + INDEX_OFFSET = ((int)0x0D13), + MAP_COLOR = ((int)0x0D10), + FOG_INDEX = ((int)0x0B61), + ZOOM_Y = ((int)0x0D17), + CLIP_PLANE2 = ((int)ClipPlaneName.CLIP_PLANE2), + STENCIL_TEST = ((int)0x0B90), + ASYNC_HISTOGRAM_SGIX = ((int)SGIX_async_histogram.ASYNC_HISTOGRAM_SGIX), + MAX_EVAL_ORDER = ((int)0x0D30), + MAP2_NORMAL = ((int)0x0DB2), + STENCIL_PASS_DEPTH_FAIL = ((int)0x0B95), + VERTEX_ARRAY = ((int)0x8074), + ALIASED_POINT_SIZE_RANGE = ((int)VERSION_1_2.ALIASED_POINT_SIZE_RANGE), + REFERENCE_PLANE_EQUATION_SGIX = ((int)SGIX_reference_plane.REFERENCE_PLANE_EQUATION_SGIX), + NORMAL_ARRAY = ((int)0x8075), + UNPACK_SWAP_BYTES = ((int)0x0CF0), + INDEX_CLEAR_VALUE = ((int)0x0C20), + TEXTURE_4D_SGIS = ((int)SGIS_texture4D.TEXTURE_4D_SGIS), + LIGHT1 = ((int)LightName.LIGHT1), + CURRENT_TEXTURE_COORDS = ((int)0x0B03), + MAP2_TEXTURE_COORD_1 = ((int)0x0DB3), + TEXTURE_COORD_ARRAY = ((int)0x8078), + BLEND_EQUATION_EXT = ((int)EXT_blend_minmax.BLEND_EQUATION_EXT), + POLYGON_STIPPLE = ((int)0x0B42), + VERTEX_ARRAY_TYPE = ((int)0x807B), + MAP1_INDEX = ((int)0x0D91), + NORMAL_ARRAY_COUNT_EXT = ((int)EXT_vertex_array.NORMAL_ARRAY_COUNT_EXT), + CONVOLUTION_2D_EXT = ((int)EXT_convolution.CONVOLUTION_2D_EXT), + MAX_LIST_NESTING = ((int)0x0B31), + STENCIL_BITS = ((int)0x0D57), + SUBPIXEL_BITS = ((int)0x0D50), + POLYGON_OFFSET_FILL = ((int)0x8037), + LINE_WIDTH_RANGE = ((int)0x0B22), + POST_TEXTURE_FILTER_SCALE_RANGE_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_SCALE_RANGE_SGIX), + VERTEX_PRECLIP_SGIX = ((int)SGIX_vertex_preclip.VERTEX_PRECLIP_SGIX), + POLYGON_OFFSET_POINT = ((int)0x2A01), + ALPHA_TEST_REF = ((int)0x0BC2), + RGBA_MODE = ((int)0x0C31), + EDGE_FLAG_ARRAY_STRIDE = ((int)0x808C), + LIGHT_MODEL_LOCAL_VIEWER = ((int)0x0B51), + INDEX_SHIFT = ((int)0x0D12), + MAP_STENCIL = ((int)0x0D11), + TEXTURE_COORD_ARRAY_SIZE = ((int)0x8088), + POST_COLOR_MATRIX_BLUE_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_BLUE_BIAS_SGI), + TEXTURE_3D_BINDING_EXT = ((int)EXT_texture_object.TEXTURE_3D_BINDING_EXT), + PIXEL_MAP_I_TO_B_SIZE = ((int)0x0CB4), + POLYGON_OFFSET_LINE = ((int)0x2A02), + MAX_PIXEL_MAP_TABLE = ((int)0x0D34), + POST_COLOR_MATRIX_ALPHA_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_ALPHA_BIAS_SGI), + BLEND_DST = ((int)0x0BE0), + TEXTURE_4D_BINDING_SGIS = ((int)SGIS_texture4D.TEXTURE_4D_BINDING_SGIS), + DEPTH_BIAS = ((int)0x0D1F), + POST_CONVOLUTION_RED_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_RED_BIAS_EXT), + MAP2_GRID_SEGMENTS = ((int)0x0DD3), + MAX_CLIP_PLANES = ((int)0x0D32), + MAX_ASYNC_READ_PIXELS_SGIX = ((int)SGIX_async_pixel.MAX_ASYNC_READ_PIXELS_SGIX), + DEPTH_BITS = ((int)0x0D56), + POINT_SIZE_MAX_SGIS = ((int)SGIS_point_parameters.POINT_SIZE_MAX_SGIS), } public enum GetTextureParameter { - TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_LOD_OFFSET_SGIX), - TEXTURE_MAX_LOD_SGIS = ((int)SGIS_texture_lod.TEXTURE_MAX_LOD_SGIS), - DETAIL_TEXTURE_LEVEL_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_LEVEL_SGIS), - TEXTURE_COMPONENTS = ((int)0x1003), - TEXTURE_MAX_LEVEL_SGIS = ((int)SGIS_texture_lod.TEXTURE_MAX_LEVEL_SGIS), - TEXTURE_LOD_BIAS_S_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_S_SGIX), - TEXTURE_RESIDENT = ((int)0x8067), - DETAIL_TEXTURE_MODE_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_MODE_SGIS), - TEXTURE_PRIORITY = ((int)0x8066), - POST_TEXTURE_FILTER_BIAS_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_BIAS_SGIX), - TEXTURE_GEQUAL_R_SGIX = ((int)SGIX_shadow.TEXTURE_GEQUAL_R_SGIX), - DETAIL_TEXTURE_FUNC_POINTS_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_FUNC_POINTS_SGIS), - TEXTURE_ALPHA_SIZE = ((int)0x805F), - TEXTURE_INTENSITY_SIZE = ((int)0x8061), - TEXTURE_DEPTH_EXT = ((int)EXT_texture3D.TEXTURE_DEPTH_EXT), - TEXTURE_CLIPMAP_OFFSET_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_OFFSET_SGIX), - TEXTURE_LUMINANCE_SIZE = ((int)0x8060), - DUAL_TEXTURE_SELECT_SGIS = ((int)SGIS_texture_select.DUAL_TEXTURE_SELECT_SGIS), - TEXTURE_WRAP_S = ((int)TextureParameterName.TEXTURE_WRAP_S), - QUAD_TEXTURE_SELECT_SGIS = ((int)SGIS_texture_select.QUAD_TEXTURE_SELECT_SGIS), - TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX), - SHARPEN_TEXTURE_FUNC_POINTS_SGIS = ((int)SGIS_sharpen_texture.SHARPEN_TEXTURE_FUNC_POINTS_SGIS), - TEXTURE_LOD_BIAS_R_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_R_SGIX), - TEXTURE_MIN_FILTER = ((int)TextureParameterName.TEXTURE_MIN_FILTER), + TEXTURE_CLIPMAP_FRAME_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_FRAME_SGIX), TEXTURE_WRAP_R_EXT = ((int)EXT_texture3D.TEXTURE_WRAP_R_EXT), - GENERATE_MIPMAP_SGIS = ((int)SGIS_generate_mipmap.GENERATE_MIPMAP_SGIS), - TEXTURE_LEQUAL_R_SGIX = ((int)SGIX_shadow.TEXTURE_LEQUAL_R_SGIX), - TEXTURE_INTERNAL_FORMAT = ((int)0x1003), - TEXTURE_FILTER4_SIZE_SGIS = ((int)SGIS_texture_filter4.TEXTURE_FILTER4_SIZE_SGIS), - TEXTURE_WIDTH = ((int)0x1000), - POST_TEXTURE_FILTER_SCALE_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_SCALE_SGIX), - TEXTURE_COMPARE_SGIX = ((int)SGIX_shadow.TEXTURE_COMPARE_SGIX), - TEXTURE_4DSIZE_SGIS = ((int)SGIS_texture4D.TEXTURE_4DSIZE_SGIS), - TEXTURE_GREEN_SIZE = ((int)0x805D), TEXTURE_BORDER = ((int)0x1005), + TEXTURE_HEIGHT = ((int)0x1001), + TEXTURE_INTENSITY_SIZE = ((int)0x8061), + TEXTURE_CLIPMAP_CENTER_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_CENTER_SGIX), + TEXTURE_WRAP_Q_SGIS = ((int)SGIS_texture4D.TEXTURE_WRAP_Q_SGIS), + TEXTURE_FILTER4_SIZE_SGIS = ((int)SGIS_texture_filter4.TEXTURE_FILTER4_SIZE_SGIS), + TEXTURE_MAX_CLAMP_R_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_R_SGIX), + TEXTURE_MAX_CLAMP_S_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_S_SGIX), + TEXTURE_PRIORITY = ((int)0x8066), + TEXTURE_RED_SIZE = ((int)0x805C), + TEXTURE_MIN_FILTER = ((int)TextureParameterName.TEXTURE_MIN_FILTER), + TEXTURE_4DSIZE_SGIS = ((int)SGIS_texture4D.TEXTURE_4DSIZE_SGIS), + TEXTURE_MIN_LOD_SGIS = ((int)SGIS_texture_lod.TEXTURE_MIN_LOD_SGIS), + TEXTURE_WIDTH = ((int)0x1000), + TEXTURE_BLUE_SIZE = ((int)0x805E), + TEXTURE_WRAP_T = ((int)TextureParameterName.TEXTURE_WRAP_T), + TEXTURE_MAX_LOD_SGIS = ((int)SGIS_texture_lod.TEXTURE_MAX_LOD_SGIS), + POST_TEXTURE_FILTER_SCALE_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_SCALE_SGIX), + TEXTURE_LOD_BIAS_R_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_R_SGIX), + TEXTURE_LOD_BIAS_S_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_S_SGIX), + TEXTURE_INTERNAL_FORMAT = ((int)0x1003), + TEXTURE_LUMINANCE_SIZE = ((int)0x8060), + TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX), + DUAL_TEXTURE_SELECT_SGIS = ((int)SGIS_texture_select.DUAL_TEXTURE_SELECT_SGIS), + TEXTURE_CLIPMAP_OFFSET_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_OFFSET_SGIX), + TEXTURE_COMPONENTS = ((int)0x1003), + TEXTURE_COMPARE_OPERATOR_SGIX = ((int)SGIX_shadow.TEXTURE_COMPARE_OPERATOR_SGIX), + TEXTURE_LEQUAL_R_SGIX = ((int)SGIX_shadow.TEXTURE_LEQUAL_R_SGIX), + TEXTURE_GEQUAL_R_SGIX = ((int)SGIX_shadow.TEXTURE_GEQUAL_R_SGIX), + TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_LOD_OFFSET_SGIX), + DETAIL_TEXTURE_FUNC_POINTS_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_FUNC_POINTS_SGIS), + DETAIL_TEXTURE_MODE_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_MODE_SGIS), + TEXTURE_BORDER_COLOR = ((int)0x1004), SHADOW_AMBIENT_SGIX = ((int)SGIX_shadow_ambient.SHADOW_AMBIENT_SGIX), TEXTURE_MAG_FILTER = ((int)TextureParameterName.TEXTURE_MAG_FILTER), - TEXTURE_CLIPMAP_CENTER_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_CENTER_SGIX), - TEXTURE_COMPARE_OPERATOR_SGIX = ((int)SGIX_shadow.TEXTURE_COMPARE_OPERATOR_SGIX), - TEXTURE_BORDER_COLOR = ((int)0x1004), - TEXTURE_MAX_CLAMP_S_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_S_SGIX), - TEXTURE_HEIGHT = ((int)0x1001), TEXTURE_BASE_LEVEL_SGIS = ((int)SGIS_texture_lod.TEXTURE_BASE_LEVEL_SGIS), - TEXTURE_MIN_LOD_SGIS = ((int)SGIS_texture_lod.TEXTURE_MIN_LOD_SGIS), - TEXTURE_BLUE_SIZE = ((int)0x805E), + TEXTURE_GREEN_SIZE = ((int)0x805D), + TEXTURE_MAX_LEVEL_SGIS = ((int)SGIS_texture_lod.TEXTURE_MAX_LEVEL_SGIS), + TEXTURE_WRAP_S = ((int)TextureParameterName.TEXTURE_WRAP_S), + TEXTURE_RESIDENT = ((int)0x8067), TEXTURE_LOD_BIAS_T_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_T_SGIX), - TEXTURE_WRAP_Q_SGIS = ((int)SGIS_texture4D.TEXTURE_WRAP_Q_SGIS), + POST_TEXTURE_FILTER_BIAS_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_BIAS_SGIX), + DETAIL_TEXTURE_LEVEL_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_LEVEL_SGIS), + TEXTURE_DEPTH_EXT = ((int)EXT_texture3D.TEXTURE_DEPTH_EXT), TEXTURE_MAX_CLAMP_T_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_T_SGIX), - TEXTURE_MAX_CLAMP_R_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_R_SGIX), - TEXTURE_CLIPMAP_FRAME_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_FRAME_SGIX), + TEXTURE_ALPHA_SIZE = ((int)0x805F), + TEXTURE_COMPARE_SGIX = ((int)SGIX_shadow.TEXTURE_COMPARE_SGIX), + QUAD_TEXTURE_SELECT_SGIS = ((int)SGIS_texture_select.QUAD_TEXTURE_SELECT_SGIS), + GENERATE_MIPMAP_SGIS = ((int)SGIS_generate_mipmap.GENERATE_MIPMAP_SGIS), + SHARPEN_TEXTURE_FUNC_POINTS_SGIS = ((int)SGIS_sharpen_texture.SHARPEN_TEXTURE_FUNC_POINTS_SGIS), TEXTURE_CLIPMAP_DEPTH_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_DEPTH_SGIX), - TEXTURE_WRAP_T = ((int)TextureParameterName.TEXTURE_WRAP_T), - TEXTURE_RED_SIZE = ((int)0x805C), } public enum HintMode { - FASTEST = ((int)0x1101), - NICEST = ((int)0x1102), DONT_CARE = ((int)0x1100), + NICEST = ((int)0x1102), + FASTEST = ((int)0x1101), } public enum HintTarget { - LINE_SMOOTH_HINT = ((int)GetPName.LINE_SMOOTH_HINT), - CONVOLUTION_HINT_SGIX = ((int)SGIX_convolution_accuracy.CONVOLUTION_HINT_SGIX), - UNPACK_CMYK_HINT_EXT = ((int)EXT_cmyka.UNPACK_CMYK_HINT_EXT), - POINT_SMOOTH_HINT = ((int)GetPName.POINT_SMOOTH_HINT), - VERTEX_PRECLIP_HINT_SGIX = ((int)SGIX_vertex_preclip.VERTEX_PRECLIP_HINT_SGIX), - PERSPECTIVE_CORRECTION_HINT = ((int)GetPName.PERSPECTIVE_CORRECTION_HINT), - PACK_CMYK_HINT_EXT = ((int)EXT_cmyka.PACK_CMYK_HINT_EXT), - POLYGON_SMOOTH_HINT = ((int)GetPName.POLYGON_SMOOTH_HINT), - TEXTURE_MULTI_BUFFER_HINT_SGIX = ((int)SGIX_texture_multi_buffer.TEXTURE_MULTI_BUFFER_HINT_SGIX), - FOG_HINT = ((int)GetPName.FOG_HINT), GENERATE_MIPMAP_HINT_SGIS = ((int)SGIS_generate_mipmap.GENERATE_MIPMAP_HINT_SGIS), + POLYGON_SMOOTH_HINT = ((int)GetPName.POLYGON_SMOOTH_HINT), + VERTEX_PRECLIP_HINT_SGIX = ((int)SGIX_vertex_preclip.VERTEX_PRECLIP_HINT_SGIX), + LINE_SMOOTH_HINT = ((int)GetPName.LINE_SMOOTH_HINT), + POINT_SMOOTH_HINT = ((int)GetPName.POINT_SMOOTH_HINT), + PERSPECTIVE_CORRECTION_HINT = ((int)GetPName.PERSPECTIVE_CORRECTION_HINT), + UNPACK_CMYK_HINT_EXT = ((int)EXT_cmyka.UNPACK_CMYK_HINT_EXT), + FOG_HINT = ((int)GetPName.FOG_HINT), + CONVOLUTION_HINT_SGIX = ((int)SGIX_convolution_accuracy.CONVOLUTION_HINT_SGIX), + TEXTURE_MULTI_BUFFER_HINT_SGIX = ((int)SGIX_texture_multi_buffer.TEXTURE_MULTI_BUFFER_HINT_SGIX), + PACK_CMYK_HINT_EXT = ((int)EXT_cmyka.PACK_CMYK_HINT_EXT), } public enum HistogramTargetEXT { - PROXY_HISTOGRAM_EXT = ((int)EXT_histogram.PROXY_HISTOGRAM_EXT), HISTOGRAM_EXT = ((int)EXT_histogram.HISTOGRAM_EXT), + PROXY_HISTOGRAM_EXT = ((int)EXT_histogram.PROXY_HISTOGRAM_EXT), } public enum IndexPointerType { - FLOAT = ((int)DataType.FLOAT), + DOUBLE = ((int)DataType.DOUBLE), INT = ((int)DataType.INT), SHORT = ((int)DataType.SHORT), - DOUBLE = ((int)DataType.DOUBLE), + FLOAT = ((int)DataType.FLOAT), } public enum LightEnvModeSGIX @@ -993,24 +993,24 @@ namespace OpenTK.OpenGL public enum LightModelParameter { + LIGHT_MODEL_LOCAL_VIEWER = ((int)GetPName.LIGHT_MODEL_LOCAL_VIEWER), LIGHT_MODEL_COLOR_CONTROL = ((int)VERSION_1_2.LIGHT_MODEL_COLOR_CONTROL), LIGHT_MODEL_AMBIENT = ((int)GetPName.LIGHT_MODEL_AMBIENT), - LIGHT_MODEL_LOCAL_VIEWER = ((int)GetPName.LIGHT_MODEL_LOCAL_VIEWER), LIGHT_MODEL_TWO_SIDE = ((int)GetPName.LIGHT_MODEL_TWO_SIDE), } public enum LightParameter { + POSITION = ((int)0x1203), + SPOT_DIRECTION = ((int)0x1204), + LINEAR_ATTENUATION = ((int)0x1208), + SPOT_CUTOFF = ((int)0x1206), + SPOT_EXPONENT = ((int)0x1205), CONSTANT_ATTENUATION = ((int)0x1207), QUADRATIC_ATTENUATION = ((int)0x1209), SPECULAR = ((int)0x1202), - LINEAR_ATTENUATION = ((int)0x1208), - SPOT_EXPONENT = ((int)0x1205), - SPOT_CUTOFF = ((int)0x1206), DIFFUSE = ((int)0x1201), - POSITION = ((int)0x1203), AMBIENT = ((int)0x1200), - SPOT_DIRECTION = ((int)0x1204), } public enum ListMode @@ -1021,32 +1021,32 @@ namespace OpenTK.OpenGL public enum DataType { - INT = ((int)0x1404), - GL_4_BYTES = ((int)0x1409), GL_2_BYTES = ((int)0x1407), UNSIGNED_INT = ((int)0x1405), DOUBLE_EXT = ((int)0x140A), - SHORT = ((int)0x1402), - UNSIGNED_BYTE = ((int)0x1401), - BYTE = ((int)0x1400), - UNSIGNED_SHORT = ((int)0x1403), - DOUBLE = ((int)0x140A), - GL_3_BYTES = ((int)0x1408), FLOAT = ((int)0x1406), + UNSIGNED_SHORT = ((int)0x1403), + SHORT = ((int)0x1402), + BYTE = ((int)0x1400), + GL_4_BYTES = ((int)0x1409), + INT = ((int)0x1404), + GL_3_BYTES = ((int)0x1408), + UNSIGNED_BYTE = ((int)0x1401), + DOUBLE = ((int)0x140A), } public enum ListNameType { - INT = ((int)DataType.INT), - GL_4_BYTES = ((int)DataType.GL_4_BYTES), GL_2_BYTES = ((int)DataType.GL_2_BYTES), UNSIGNED_INT = ((int)DataType.UNSIGNED_INT), - SHORT = ((int)DataType.SHORT), - UNSIGNED_BYTE = ((int)DataType.UNSIGNED_BYTE), - BYTE = ((int)DataType.BYTE), - UNSIGNED_SHORT = ((int)DataType.UNSIGNED_SHORT), - GL_3_BYTES = ((int)DataType.GL_3_BYTES), FLOAT = ((int)DataType.FLOAT), + UNSIGNED_SHORT = ((int)DataType.UNSIGNED_SHORT), + SHORT = ((int)DataType.SHORT), + BYTE = ((int)DataType.BYTE), + GL_4_BYTES = ((int)DataType.GL_4_BYTES), + INT = ((int)DataType.INT), + GL_3_BYTES = ((int)DataType.GL_3_BYTES), + UNSIGNED_BYTE = ((int)DataType.UNSIGNED_BYTE), } public enum ListParameterName @@ -1056,84 +1056,84 @@ namespace OpenTK.OpenGL public enum LogicOp { - NOR = ((int)0x1508), - EQUIV = ((int)0x1509), - AND = ((int)0x1501), - OR = ((int)0x1507), - NOOP = ((int)0x1505), - XOR = ((int)0x1506), - AND_REVERSE = ((int)0x1502), - COPY = ((int)0x1503), - COPY_INVERTED = ((int)0x150C), - NAND = ((int)0x150E), - OR_REVERSE = ((int)0x150B), - INVERT = ((int)0x150A), SET = ((int)0x150F), + EQUIV = ((int)0x1509), + NAND = ((int)0x150E), + NOR = ((int)0x1508), + XOR = ((int)0x1506), + OR = ((int)0x1507), + COPY_INVERTED = ((int)0x150C), AND_INVERTED = ((int)0x1504), + INVERT = ((int)0x150A), + AND_REVERSE = ((int)0x1502), + NOOP = ((int)0x1505), CLEAR = ((int)0x1500), + OR_REVERSE = ((int)0x150B), OR_INVERTED = ((int)0x150D), + AND = ((int)0x1501), + COPY = ((int)0x1503), } public enum MapTarget { - MAP1_INDEX = ((int)GetPName.MAP1_INDEX), - MAP2_TEXTURE_COORD_2 = ((int)GetPName.MAP2_TEXTURE_COORD_2), - MAP1_NORMAL = ((int)GetPName.MAP1_NORMAL), - MAP1_TEXTURE_COORD_2 = ((int)GetPName.MAP1_TEXTURE_COORD_2), - MAP2_INDEX = ((int)GetPName.MAP2_INDEX), - TEXTURE_DEFORMATION_SGIX = ((int)SGIX_polynomial_ffd.TEXTURE_DEFORMATION_SGIX), + MAP2_COLOR_4 = ((int)GetPName.MAP2_COLOR_4), MAP1_TEXTURE_COORD_4 = ((int)GetPName.MAP1_TEXTURE_COORD_4), - MAP1_VERTEX_3 = ((int)GetPName.MAP1_VERTEX_3), - MAP2_TEXTURE_COORD_1 = ((int)GetPName.MAP2_TEXTURE_COORD_1), MAP2_VERTEX_3 = ((int)GetPName.MAP2_VERTEX_3), GEOMETRY_DEFORMATION_SGIX = ((int)SGIX_polynomial_ffd.GEOMETRY_DEFORMATION_SGIX), - MAP2_VERTEX_4 = ((int)GetPName.MAP2_VERTEX_4), - MAP2_TEXTURE_COORD_4 = ((int)GetPName.MAP2_TEXTURE_COORD_4), - MAP1_COLOR_4 = ((int)GetPName.MAP1_COLOR_4), - MAP1_VERTEX_4 = ((int)GetPName.MAP1_VERTEX_4), - MAP1_TEXTURE_COORD_3 = ((int)GetPName.MAP1_TEXTURE_COORD_3), - MAP2_TEXTURE_COORD_3 = ((int)GetPName.MAP2_TEXTURE_COORD_3), - MAP2_COLOR_4 = ((int)GetPName.MAP2_COLOR_4), - MAP2_NORMAL = ((int)GetPName.MAP2_NORMAL), + MAP2_INDEX = ((int)GetPName.MAP2_INDEX), MAP1_TEXTURE_COORD_1 = ((int)GetPName.MAP1_TEXTURE_COORD_1), + TEXTURE_DEFORMATION_SGIX = ((int)SGIX_polynomial_ffd.TEXTURE_DEFORMATION_SGIX), + MAP2_TEXTURE_COORD_1 = ((int)GetPName.MAP2_TEXTURE_COORD_1), + MAP2_TEXTURE_COORD_4 = ((int)GetPName.MAP2_TEXTURE_COORD_4), + MAP1_TEXTURE_COORD_3 = ((int)GetPName.MAP1_TEXTURE_COORD_3), + MAP1_INDEX = ((int)GetPName.MAP1_INDEX), + MAP1_VERTEX_4 = ((int)GetPName.MAP1_VERTEX_4), + MAP1_TEXTURE_COORD_2 = ((int)GetPName.MAP1_TEXTURE_COORD_2), + MAP2_TEXTURE_COORD_2 = ((int)GetPName.MAP2_TEXTURE_COORD_2), + MAP1_VERTEX_3 = ((int)GetPName.MAP1_VERTEX_3), + MAP1_COLOR_4 = ((int)GetPName.MAP1_COLOR_4), + MAP2_NORMAL = ((int)GetPName.MAP2_NORMAL), + MAP2_VERTEX_4 = ((int)GetPName.MAP2_VERTEX_4), + MAP2_TEXTURE_COORD_3 = ((int)GetPName.MAP2_TEXTURE_COORD_3), + MAP1_NORMAL = ((int)GetPName.MAP1_NORMAL), } public enum MaterialFace { BACK = ((int)DrawBufferMode.BACK), - FRONT = ((int)DrawBufferMode.FRONT), FRONT_AND_BACK = ((int)DrawBufferMode.FRONT_AND_BACK), + FRONT = ((int)DrawBufferMode.FRONT), } public enum MaterialParameter { + EMISSION = ((int)0x1600), DIFFUSE = ((int)LightParameter.DIFFUSE), + AMBIENT_AND_DIFFUSE = ((int)0x1602), SHININESS = ((int)0x1601), + SPECULAR = ((int)LightParameter.SPECULAR), AMBIENT = ((int)LightParameter.AMBIENT), COLOR_INDEXES = ((int)0x1603), - AMBIENT_AND_DIFFUSE = ((int)0x1602), - SPECULAR = ((int)LightParameter.SPECULAR), - EMISSION = ((int)0x1600), } public enum MatrixMode { + PROJECTION = ((int)0x1701), MODELVIEW = ((int)0x1700), TEXTURE = ((int)0x1702), - PROJECTION = ((int)0x1701), } public enum MeshMode1 { - POINT = ((int)PolygonMode.POINT), LINE = ((int)PolygonMode.LINE), + POINT = ((int)PolygonMode.POINT), } public enum MeshMode2 { FILL = ((int)PolygonMode.FILL), - POINT = ((int)PolygonMode.POINT), LINE = ((int)PolygonMode.LINE), + POINT = ((int)PolygonMode.POINT), } public enum MinmaxTargetEXT @@ -1143,224 +1143,224 @@ namespace OpenTK.OpenGL public enum NormalPointerType { - BYTE = ((int)DataType.BYTE), - FLOAT = ((int)DataType.FLOAT), - INT = ((int)DataType.INT), - SHORT = ((int)DataType.SHORT), DOUBLE = ((int)DataType.DOUBLE), + BYTE = ((int)DataType.BYTE), + SHORT = ((int)DataType.SHORT), + INT = ((int)DataType.INT), + FLOAT = ((int)DataType.FLOAT), } public enum PixelCopyType { - COLOR = ((int)0x1800), DEPTH = ((int)0x1801), + COLOR = ((int)0x1800), STENCIL = ((int)0x1802), } public enum PixelFormat { - COLOR_INDEX = ((int)0x1900), - RED = ((int)0x1903), - RGB = ((int)0x1907), - YCRCB_444_SGIX = ((int)SGIX_ycrcb.YCRCB_444_SGIX), - LUMINANCE16_ALPHA8_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ALPHA8_ICC_SGIX), - BLUE = ((int)0x1905), - ALPHA = ((int)0x1906), - LUMINANCE = ((int)0x1909), - CMYKA_EXT = ((int)EXT_cmyka.CMYKA_EXT), - DEPTH_COMPONENT = ((int)0x1902), - ABGR_EXT = ((int)EXT_abgr.ABGR_EXT), CMYK_EXT = ((int)EXT_cmyka.CMYK_EXT), - RGBA = ((int)0x1908), - ALPHA16_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA16_ICC_SGIX), - STENCIL_INDEX = ((int)0x1901), + YCRCB_444_SGIX = ((int)SGIX_ycrcb.YCRCB_444_SGIX), R5_G6_B5_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_ICC_SGIX), - YCRCB_422_SGIX = ((int)SGIX_ycrcb.YCRCB_422_SGIX), - R5_G6_B5_A8_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_A8_ICC_SGIX), - LUMINANCE16_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ICC_SGIX), + ALPHA = ((int)0x1906), + RGBA = ((int)0x1908), GREEN = ((int)0x1904), + R5_G6_B5_A8_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_A8_ICC_SGIX), LUMINANCE_ALPHA = ((int)0x190A), + STENCIL_INDEX = ((int)0x1901), + RED = ((int)0x1903), + BLUE = ((int)0x1905), + CMYKA_EXT = ((int)EXT_cmyka.CMYKA_EXT), + ALPHA16_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA16_ICC_SGIX), + LUMINANCE = ((int)0x1909), + LUMINANCE16_ALPHA8_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ALPHA8_ICC_SGIX), + YCRCB_422_SGIX = ((int)SGIX_ycrcb.YCRCB_422_SGIX), + ABGR_EXT = ((int)EXT_abgr.ABGR_EXT), + COLOR_INDEX = ((int)0x1900), + RGB = ((int)0x1907), + LUMINANCE16_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ICC_SGIX), + DEPTH_COMPONENT = ((int)0x1902), } public enum PixelMap { - PIXEL_MAP_I_TO_G = ((int)GetPixelMap.PIXEL_MAP_I_TO_G), - PIXEL_MAP_G_TO_G = ((int)GetPixelMap.PIXEL_MAP_G_TO_G), - PIXEL_MAP_A_TO_A = ((int)GetPixelMap.PIXEL_MAP_A_TO_A), - PIXEL_MAP_R_TO_R = ((int)GetPixelMap.PIXEL_MAP_R_TO_R), - PIXEL_MAP_I_TO_R = ((int)GetPixelMap.PIXEL_MAP_I_TO_R), - PIXEL_MAP_I_TO_B = ((int)GetPixelMap.PIXEL_MAP_I_TO_B), - PIXEL_MAP_I_TO_A = ((int)GetPixelMap.PIXEL_MAP_I_TO_A), - PIXEL_MAP_S_TO_S = ((int)GetPixelMap.PIXEL_MAP_S_TO_S), PIXEL_MAP_B_TO_B = ((int)GetPixelMap.PIXEL_MAP_B_TO_B), + PIXEL_MAP_S_TO_S = ((int)GetPixelMap.PIXEL_MAP_S_TO_S), + PIXEL_MAP_R_TO_R = ((int)GetPixelMap.PIXEL_MAP_R_TO_R), + PIXEL_MAP_I_TO_B = ((int)GetPixelMap.PIXEL_MAP_I_TO_B), + PIXEL_MAP_I_TO_G = ((int)GetPixelMap.PIXEL_MAP_I_TO_G), + PIXEL_MAP_I_TO_A = ((int)GetPixelMap.PIXEL_MAP_I_TO_A), + PIXEL_MAP_A_TO_A = ((int)GetPixelMap.PIXEL_MAP_A_TO_A), + PIXEL_MAP_G_TO_G = ((int)GetPixelMap.PIXEL_MAP_G_TO_G), PIXEL_MAP_I_TO_I = ((int)GetPixelMap.PIXEL_MAP_I_TO_I), + PIXEL_MAP_I_TO_R = ((int)GetPixelMap.PIXEL_MAP_I_TO_R), } public enum PixelStoreParameter { + UNPACK_IMAGE_DEPTH_SGIS = ((int)SGIS_texture4D.UNPACK_IMAGE_DEPTH_SGIS), + UNPACK_LSB_FIRST = ((int)GetPName.UNPACK_LSB_FIRST), + UNPACK_RESAMPLE_SGIX = ((int)SGIX_resample.UNPACK_RESAMPLE_SGIX), PIXEL_TILE_CACHE_SIZE_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_CACHE_SIZE_SGIX), - PACK_SUBSAMPLE_RATE_SGIX = ((int)SGIX_subsample.PACK_SUBSAMPLE_RATE_SGIX), UNPACK_ROW_LENGTH = ((int)GetPName.UNPACK_ROW_LENGTH), + UNPACK_ALIGNMENT = ((int)GetPName.UNPACK_ALIGNMENT), UNPACK_IMAGE_HEIGHT_EXT = ((int)EXT_texture3D.UNPACK_IMAGE_HEIGHT_EXT), - PACK_SKIP_PIXELS = ((int)GetPName.PACK_SKIP_PIXELS), + PIXEL_TILE_GRID_DEPTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_DEPTH_SGIX), + PIXEL_TILE_WIDTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_WIDTH_SGIX), + PACK_SKIP_ROWS = ((int)GetPName.PACK_SKIP_ROWS), + PACK_SKIP_VOLUMES_SGIS = ((int)SGIS_texture4D.PACK_SKIP_VOLUMES_SGIS), + UNPACK_SKIP_ROWS = ((int)GetPName.UNPACK_SKIP_ROWS), + UNPACK_SKIP_IMAGES_EXT = ((int)EXT_texture3D.UNPACK_SKIP_IMAGES_EXT), + UNPACK_SUBSAMPLE_RATE_SGIX = ((int)SGIX_subsample.UNPACK_SUBSAMPLE_RATE_SGIX), PIXEL_TILE_GRID_HEIGHT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_HEIGHT_SGIX), + PIXEL_TILE_HEIGHT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_HEIGHT_SGIX), + PACK_RESAMPLE_SGIX = ((int)SGIX_resample.PACK_RESAMPLE_SGIX), + PACK_SKIP_PIXELS = ((int)GetPName.PACK_SKIP_PIXELS), PACK_IMAGE_DEPTH_SGIS = ((int)SGIS_texture4D.PACK_IMAGE_DEPTH_SGIS), PIXEL_TILE_GRID_WIDTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_WIDTH_SGIX), - PIXEL_TILE_GRID_DEPTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_GRID_DEPTH_SGIX), - PACK_IMAGE_HEIGHT_EXT = ((int)EXT_texture3D.PACK_IMAGE_HEIGHT_EXT), - PACK_SKIP_IMAGES_EXT = ((int)EXT_texture3D.PACK_SKIP_IMAGES_EXT), - UNPACK_SKIP_IMAGES_EXT = ((int)EXT_texture3D.UNPACK_SKIP_IMAGES_EXT), - UNPACK_SWAP_BYTES = ((int)GetPName.UNPACK_SWAP_BYTES), - UNPACK_RESAMPLE_SGIX = ((int)SGIX_resample.UNPACK_RESAMPLE_SGIX), - PACK_LSB_FIRST = ((int)GetPName.PACK_LSB_FIRST), - UNPACK_ALIGNMENT = ((int)GetPName.UNPACK_ALIGNMENT), - UNPACK_IMAGE_DEPTH_SGIS = ((int)SGIS_texture4D.UNPACK_IMAGE_DEPTH_SGIS), - PACK_RESAMPLE_SGIX = ((int)SGIX_resample.PACK_RESAMPLE_SGIX), - UNPACK_SKIP_ROWS = ((int)GetPName.UNPACK_SKIP_ROWS), - UNPACK_SKIP_VOLUMES_SGIS = ((int)SGIS_texture4D.UNPACK_SKIP_VOLUMES_SGIS), - PIXEL_TILE_HEIGHT_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_HEIGHT_SGIX), - UNPACK_SUBSAMPLE_RATE_SGIX = ((int)SGIX_subsample.UNPACK_SUBSAMPLE_RATE_SGIX), - UNPACK_SKIP_PIXELS = ((int)GetPName.UNPACK_SKIP_PIXELS), - PACK_ROW_LENGTH = ((int)GetPName.PACK_ROW_LENGTH), - PIXEL_TILE_WIDTH_SGIX = ((int)SGIX_pixel_tiles.PIXEL_TILE_WIDTH_SGIX), - PACK_ALIGNMENT = ((int)GetPName.PACK_ALIGNMENT), - UNPACK_LSB_FIRST = ((int)GetPName.UNPACK_LSB_FIRST), - PACK_SKIP_VOLUMES_SGIS = ((int)SGIS_texture4D.PACK_SKIP_VOLUMES_SGIS), PACK_SWAP_BYTES = ((int)GetPName.PACK_SWAP_BYTES), - PACK_SKIP_ROWS = ((int)GetPName.PACK_SKIP_ROWS), + UNPACK_SWAP_BYTES = ((int)GetPName.UNPACK_SWAP_BYTES), + PACK_SKIP_IMAGES_EXT = ((int)EXT_texture3D.PACK_SKIP_IMAGES_EXT), + UNPACK_SKIP_VOLUMES_SGIS = ((int)SGIS_texture4D.UNPACK_SKIP_VOLUMES_SGIS), + PACK_LSB_FIRST = ((int)GetPName.PACK_LSB_FIRST), + PACK_ALIGNMENT = ((int)GetPName.PACK_ALIGNMENT), + PACK_ROW_LENGTH = ((int)GetPName.PACK_ROW_LENGTH), + UNPACK_SKIP_PIXELS = ((int)GetPName.UNPACK_SKIP_PIXELS), + PACK_SUBSAMPLE_RATE_SGIX = ((int)SGIX_subsample.PACK_SUBSAMPLE_RATE_SGIX), + PACK_IMAGE_HEIGHT_EXT = ((int)EXT_texture3D.PACK_IMAGE_HEIGHT_EXT), } public enum PixelStoreResampleMode { + RESAMPLE_DECIMATE_SGIX = ((int)SGIX_resample.RESAMPLE_DECIMATE_SGIX), RESAMPLE_REPLICATE_SGIX = ((int)SGIX_resample.RESAMPLE_REPLICATE_SGIX), RESAMPLE_ZERO_FILL_SGIX = ((int)SGIX_resample.RESAMPLE_ZERO_FILL_SGIX), - RESAMPLE_DECIMATE_SGIX = ((int)SGIX_resample.RESAMPLE_DECIMATE_SGIX), } public enum PixelStoreSubsampleRate { PIXEL_SUBSAMPLE_2424_SGIX = ((int)SGIX_subsample.PIXEL_SUBSAMPLE_2424_SGIX), - PIXEL_SUBSAMPLE_4242_SGIX = ((int)SGIX_subsample.PIXEL_SUBSAMPLE_4242_SGIX), PIXEL_SUBSAMPLE_4444_SGIX = ((int)SGIX_subsample.PIXEL_SUBSAMPLE_4444_SGIX), + PIXEL_SUBSAMPLE_4242_SGIX = ((int)SGIX_subsample.PIXEL_SUBSAMPLE_4242_SGIX), } public enum PixelTexGenMode { - RGBA = ((int)PixelFormat.RGBA), - PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX), - PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX), - PIXEL_TEX_GEN_ALPHA_LS_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_ALPHA_LS_SGIX), RGB = ((int)PixelFormat.RGB), - LUMINANCE = ((int)PixelFormat.LUMINANCE), NONE = ((int)DrawBufferMode.NONE), - LUMINANCE_ALPHA = ((int)PixelFormat.LUMINANCE_ALPHA), + LUMINANCE = ((int)PixelFormat.LUMINANCE), PIXEL_TEX_GEN_ALPHA_MS_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_ALPHA_MS_SGIX), + PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX), + PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX), + LUMINANCE_ALPHA = ((int)PixelFormat.LUMINANCE_ALPHA), + PIXEL_TEX_GEN_ALPHA_LS_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_ALPHA_LS_SGIX), + RGBA = ((int)PixelFormat.RGBA), } public enum PixelTexGenParameterNameSGIS { - PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS = ((int)SGIS_pixel_texture.PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS), PIXEL_FRAGMENT_RGB_SOURCE_SGIS = ((int)SGIS_pixel_texture.PIXEL_FRAGMENT_RGB_SOURCE_SGIS), + PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS = ((int)SGIS_pixel_texture.PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS), } public enum PixelTransferParameter { - RED_BIAS = ((int)GetPName.RED_BIAS), - MAP_COLOR = ((int)GetPName.MAP_COLOR), - POST_COLOR_MATRIX_RED_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_RED_BIAS_SGI), + POST_CONVOLUTION_RED_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_RED_BIAS_EXT), + DEPTH_BIAS = ((int)GetPName.DEPTH_BIAS), + POST_COLOR_MATRIX_BLUE_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_BLUE_BIAS_SGI), + POST_CONVOLUTION_BLUE_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_BLUE_BIAS_EXT), BLUE_SCALE = ((int)GetPName.BLUE_SCALE), - MAP_STENCIL = ((int)GetPName.MAP_STENCIL), - POST_CONVOLUTION_ALPHA_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_ALPHA_SCALE_EXT), - POST_CONVOLUTION_ALPHA_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_ALPHA_BIAS_EXT), - ALPHA_SCALE = ((int)GetPName.ALPHA_SCALE), - POST_COLOR_MATRIX_RED_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_RED_SCALE_SGI), + POST_COLOR_MATRIX_BLUE_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_BLUE_SCALE_SGI), BLUE_BIAS = ((int)GetPName.BLUE_BIAS), POST_COLOR_MATRIX_ALPHA_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_ALPHA_BIAS_SGI), - POST_CONVOLUTION_RED_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_RED_BIAS_EXT), - GREEN_SCALE = ((int)GetPName.GREEN_SCALE), - POST_CONVOLUTION_BLUE_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_BLUE_SCALE_EXT), - GREEN_BIAS = ((int)GetPName.GREEN_BIAS), - POST_CONVOLUTION_RED_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_RED_SCALE_EXT), - POST_CONVOLUTION_GREEN_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_GREEN_BIAS_EXT), - POST_COLOR_MATRIX_BLUE_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_BLUE_SCALE_SGI), - POST_COLOR_MATRIX_ALPHA_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_ALPHA_SCALE_SGI), - POST_CONVOLUTION_GREEN_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_GREEN_SCALE_EXT), - DEPTH_SCALE = ((int)GetPName.DEPTH_SCALE), - POST_COLOR_MATRIX_GREEN_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_GREEN_BIAS_SGI), - POST_COLOR_MATRIX_BLUE_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_BLUE_BIAS_SGI), - POST_COLOR_MATRIX_GREEN_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_GREEN_SCALE_SGI), - ALPHA_BIAS = ((int)GetPName.ALPHA_BIAS), INDEX_OFFSET = ((int)GetPName.INDEX_OFFSET), - RED_SCALE = ((int)GetPName.RED_SCALE), - POST_CONVOLUTION_BLUE_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_BLUE_BIAS_EXT), - DEPTH_BIAS = ((int)GetPName.DEPTH_BIAS), + POST_CONVOLUTION_ALPHA_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_ALPHA_BIAS_EXT), + POST_COLOR_MATRIX_RED_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_RED_BIAS_SGI), + MAP_COLOR = ((int)GetPName.MAP_COLOR), + POST_COLOR_MATRIX_ALPHA_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_ALPHA_SCALE_SGI), + MAP_STENCIL = ((int)GetPName.MAP_STENCIL), + POST_CONVOLUTION_GREEN_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_GREEN_SCALE_EXT), INDEX_SHIFT = ((int)GetPName.INDEX_SHIFT), + POST_COLOR_MATRIX_GREEN_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_GREEN_SCALE_SGI), + POST_CONVOLUTION_BLUE_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_BLUE_SCALE_EXT), + POST_CONVOLUTION_RED_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_RED_SCALE_EXT), + POST_COLOR_MATRIX_GREEN_BIAS_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_GREEN_BIAS_SGI), + POST_COLOR_MATRIX_RED_SCALE_SGI = ((int)SGI_color_matrix.POST_COLOR_MATRIX_RED_SCALE_SGI), + RED_SCALE = ((int)GetPName.RED_SCALE), + GREEN_BIAS = ((int)GetPName.GREEN_BIAS), + RED_BIAS = ((int)GetPName.RED_BIAS), + POST_CONVOLUTION_GREEN_BIAS_EXT = ((int)EXT_convolution.POST_CONVOLUTION_GREEN_BIAS_EXT), + GREEN_SCALE = ((int)GetPName.GREEN_SCALE), + ALPHA_SCALE = ((int)GetPName.ALPHA_SCALE), + ALPHA_BIAS = ((int)GetPName.ALPHA_BIAS), + DEPTH_SCALE = ((int)GetPName.DEPTH_SCALE), + POST_CONVOLUTION_ALPHA_SCALE_EXT = ((int)EXT_convolution.POST_CONVOLUTION_ALPHA_SCALE_EXT), } public enum PixelType { + UNSIGNED_INT = ((int)DataType.UNSIGNED_INT), + UNSIGNED_SHORT_5_5_5_1_EXT = ((int)EXT_packed_pixels.UNSIGNED_SHORT_5_5_5_1_EXT), + FLOAT = ((int)DataType.FLOAT), + UNSIGNED_SHORT = ((int)DataType.UNSIGNED_SHORT), + SHORT = ((int)DataType.SHORT), + BYTE = ((int)DataType.BYTE), + UNSIGNED_INT_8_8_8_8_EXT = ((int)EXT_packed_pixels.UNSIGNED_INT_8_8_8_8_EXT), + UNSIGNED_BYTE_3_3_2_EXT = ((int)EXT_packed_pixels.UNSIGNED_BYTE_3_3_2_EXT), INT = ((int)DataType.INT), BITMAP = ((int)0x1A00), - UNSIGNED_SHORT_5_5_5_1_EXT = ((int)EXT_packed_pixels.UNSIGNED_SHORT_5_5_5_1_EXT), - UNSIGNED_INT = ((int)DataType.UNSIGNED_INT), - UNSIGNED_SHORT_4_4_4_4_EXT = ((int)EXT_packed_pixels.UNSIGNED_SHORT_4_4_4_4_EXT), - SHORT = ((int)DataType.SHORT), - UNSIGNED_BYTE_3_3_2_EXT = ((int)EXT_packed_pixels.UNSIGNED_BYTE_3_3_2_EXT), - FLOAT = ((int)DataType.FLOAT), UNSIGNED_BYTE = ((int)DataType.UNSIGNED_BYTE), UNSIGNED_INT_10_10_10_2_EXT = ((int)EXT_packed_pixels.UNSIGNED_INT_10_10_10_2_EXT), - UNSIGNED_SHORT = ((int)DataType.UNSIGNED_SHORT), - UNSIGNED_INT_8_8_8_8_EXT = ((int)EXT_packed_pixels.UNSIGNED_INT_8_8_8_8_EXT), - BYTE = ((int)DataType.BYTE), + UNSIGNED_SHORT_4_4_4_4_EXT = ((int)EXT_packed_pixels.UNSIGNED_SHORT_4_4_4_4_EXT), } public enum PointParameterNameSGIS { + DISTANCE_ATTENUATION_SGIS = ((int)SGIS_point_parameters.DISTANCE_ATTENUATION_SGIS), + POINT_SIZE_MAX_SGIS = ((int)SGIS_point_parameters.POINT_SIZE_MAX_SGIS), POINT_FADE_THRESHOLD_SIZE_SGIS = ((int)SGIS_point_parameters.POINT_FADE_THRESHOLD_SIZE_SGIS), POINT_SIZE_MIN_SGIS = ((int)SGIS_point_parameters.POINT_SIZE_MIN_SGIS), - POINT_SIZE_MAX_SGIS = ((int)SGIS_point_parameters.POINT_SIZE_MAX_SGIS), - DISTANCE_ATTENUATION_SGIS = ((int)SGIS_point_parameters.DISTANCE_ATTENUATION_SGIS), } public enum PolygonMode { FILL = ((int)0x1B02), - POINT = ((int)0x1B00), LINE = ((int)0x1B01), + POINT = ((int)0x1B00), } public enum ReadBufferMode { - BACK = ((int)DrawBufferMode.BACK), - BACK_LEFT = ((int)DrawBufferMode.BACK_LEFT), - AUX1 = ((int)DrawBufferMode.AUX1), - FRONT = ((int)DrawBufferMode.FRONT), FRONT_RIGHT = ((int)DrawBufferMode.FRONT_RIGHT), - AUX2 = ((int)DrawBufferMode.AUX2), - RIGHT = ((int)DrawBufferMode.RIGHT), - FRONT_LEFT = ((int)DrawBufferMode.FRONT_LEFT), - BACK_RIGHT = ((int)DrawBufferMode.BACK_RIGHT), - AUX0 = ((int)DrawBufferMode.AUX0), AUX3 = ((int)DrawBufferMode.AUX3), + AUX1 = ((int)DrawBufferMode.AUX1), LEFT = ((int)DrawBufferMode.LEFT), + RIGHT = ((int)DrawBufferMode.RIGHT), + BACK_RIGHT = ((int)DrawBufferMode.BACK_RIGHT), + AUX2 = ((int)DrawBufferMode.AUX2), + AUX0 = ((int)DrawBufferMode.AUX0), + FRONT_LEFT = ((int)DrawBufferMode.FRONT_LEFT), + BACK = ((int)DrawBufferMode.BACK), + FRONT = ((int)DrawBufferMode.FRONT), + BACK_LEFT = ((int)DrawBufferMode.BACK_LEFT), } public enum RenderingMode { - FEEDBACK = ((int)0x1C01), SELECT = ((int)0x1C02), + FEEDBACK = ((int)0x1C01), RENDER = ((int)0x1C00), } public enum SamplePatternSGIS { - GL_4PASS_3_SGIS = ((int)SGIS_multisample.GL_4PASS_3_SGIS), GL_4PASS_2_SGIS = ((int)SGIS_multisample.GL_4PASS_2_SGIS), + GL_4PASS_3_SGIS = ((int)SGIS_multisample.GL_4PASS_3_SGIS), + GL_2PASS_0_SGIS = ((int)SGIS_multisample.GL_2PASS_0_SGIS), GL_4PASS_1_SGIS = ((int)SGIS_multisample.GL_4PASS_1_SGIS), GL_1PASS_SGIS = ((int)SGIS_multisample.GL_1PASS_SGIS), GL_4PASS_0_SGIS = ((int)SGIS_multisample.GL_4PASS_0_SGIS), GL_2PASS_1_SGIS = ((int)SGIS_multisample.GL_2PASS_1_SGIS), - GL_2PASS_0_SGIS = ((int)SGIS_multisample.GL_2PASS_0_SGIS), } public enum SeparableTargetEXT @@ -1370,70 +1370,70 @@ namespace OpenTK.OpenGL public enum ShadingModel { - FLAT = ((int)0x1D00), SMOOTH = ((int)0x1D01), + FLAT = ((int)0x1D00), } public enum StencilFunction { - GEQUAL = ((int)AlphaFunction.GEQUAL), NEVER = ((int)AlphaFunction.NEVER), - LESS = ((int)AlphaFunction.LESS), - LEQUAL = ((int)AlphaFunction.LEQUAL), - EQUAL = ((int)AlphaFunction.EQUAL), + GEQUAL = ((int)AlphaFunction.GEQUAL), GREATER = ((int)AlphaFunction.GREATER), - NOTEQUAL = ((int)AlphaFunction.NOTEQUAL), ALWAYS = ((int)AlphaFunction.ALWAYS), + LEQUAL = ((int)AlphaFunction.LEQUAL), + NOTEQUAL = ((int)AlphaFunction.NOTEQUAL), + EQUAL = ((int)AlphaFunction.EQUAL), + LESS = ((int)AlphaFunction.LESS), } public enum StencilOp { - ZERO = ((int)BlendingFactorDest.ZERO), REPLACE = ((int)0x1E01), + DECR = ((int)0x1E03), INVERT = ((int)LogicOp.INVERT), INCR = ((int)0x1E02), KEEP = ((int)0x1E00), - DECR = ((int)0x1E03), + ZERO = ((int)BlendingFactorDest.ZERO), } public enum StringName { - VENDOR = ((int)0x1F00), - RENDERER = ((int)0x1F01), EXTENSIONS = ((int)0x1F03), VERSION = ((int)0x1F02), + RENDERER = ((int)0x1F01), + VENDOR = ((int)0x1F00), } public enum TexCoordPointerType { - FLOAT = ((int)DataType.FLOAT), + DOUBLE = ((int)DataType.DOUBLE), INT = ((int)DataType.INT), SHORT = ((int)DataType.SHORT), - DOUBLE = ((int)DataType.DOUBLE), + FLOAT = ((int)DataType.FLOAT), } public enum TextureCoordName { + Q = ((int)0x2003), R = ((int)0x2002), S = ((int)0x2000), - Q = ((int)0x2003), T = ((int)0x2001), } public enum TextureEnvMode { - ADD = ((int)AccumOp.ADD), REPLACE_EXT = ((int)EXT_texture.REPLACE_EXT), - TEXTURE_ENV_BIAS_SGIX = ((int)SGIX_texture_add_env.TEXTURE_ENV_BIAS_SGIX), MODULATE = ((int)0x2100), - BLEND = ((int)GetPName.BLEND), + ADD = ((int)AccumOp.ADD), DECAL = ((int)0x2101), + BLEND = ((int)GetPName.BLEND), + TEXTURE_ENV_BIAS_SGIX = ((int)SGIX_texture_add_env.TEXTURE_ENV_BIAS_SGIX), } public enum TextureEnvParameter { - TEXTURE_ENV_MODE = ((int)0x2200), TEXTURE_ENV_COLOR = ((int)0x2201), + TEXTURE_ENV_MODE = ((int)0x2200), } public enum TextureEnvTarget @@ -1448,246 +1448,246 @@ namespace OpenTK.OpenGL public enum TextureGenMode { - EYE_LINEAR = ((int)0x2400), + EYE_DISTANCE_TO_LINE_SGIS = ((int)SGIS_point_line_texgen.EYE_DISTANCE_TO_LINE_SGIS), EYE_DISTANCE_TO_POINT_SGIS = ((int)SGIS_point_line_texgen.EYE_DISTANCE_TO_POINT_SGIS), OBJECT_LINEAR = ((int)0x2401), - SPHERE_MAP = ((int)0x2402), - OBJECT_DISTANCE_TO_POINT_SGIS = ((int)SGIS_point_line_texgen.OBJECT_DISTANCE_TO_POINT_SGIS), - EYE_DISTANCE_TO_LINE_SGIS = ((int)SGIS_point_line_texgen.EYE_DISTANCE_TO_LINE_SGIS), OBJECT_DISTANCE_TO_LINE_SGIS = ((int)SGIS_point_line_texgen.OBJECT_DISTANCE_TO_LINE_SGIS), + OBJECT_DISTANCE_TO_POINT_SGIS = ((int)SGIS_point_line_texgen.OBJECT_DISTANCE_TO_POINT_SGIS), + EYE_LINEAR = ((int)0x2400), + SPHERE_MAP = ((int)0x2402), } public enum TextureGenParameter { - EYE_LINE_SGIS = ((int)SGIS_point_line_texgen.EYE_LINE_SGIS), - EYE_POINT_SGIS = ((int)SGIS_point_line_texgen.EYE_POINT_SGIS), - OBJECT_POINT_SGIS = ((int)SGIS_point_line_texgen.OBJECT_POINT_SGIS), - OBJECT_LINE_SGIS = ((int)SGIS_point_line_texgen.OBJECT_LINE_SGIS), EYE_PLANE = ((int)0x2502), - OBJECT_PLANE = ((int)0x2501), + OBJECT_LINE_SGIS = ((int)SGIS_point_line_texgen.OBJECT_LINE_SGIS), + EYE_POINT_SGIS = ((int)SGIS_point_line_texgen.EYE_POINT_SGIS), TEXTURE_GEN_MODE = ((int)0x2500), + EYE_LINE_SGIS = ((int)SGIS_point_line_texgen.EYE_LINE_SGIS), + OBJECT_POINT_SGIS = ((int)SGIS_point_line_texgen.OBJECT_POINT_SGIS), + OBJECT_PLANE = ((int)0x2501), } public enum TextureMagFilter { - PIXEL_TEX_GEN_Q_FLOOR_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_FLOOR_SGIX), LINEAR = ((int)0x2601), - LINEAR_SHARPEN_COLOR_SGIS = ((int)SGIS_sharpen_texture.LINEAR_SHARPEN_COLOR_SGIS), - PIXEL_TEX_GEN_Q_ROUND_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_ROUND_SGIX), - PIXEL_TEX_GEN_Q_CEILING_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_CEILING_SGIX), - NEAREST = ((int)0x2600), - LINEAR_DETAIL_ALPHA_SGIS = ((int)SGIS_detail_texture.LINEAR_DETAIL_ALPHA_SGIS), - LINEAR_DETAIL_SGIS = ((int)SGIS_detail_texture.LINEAR_DETAIL_SGIS), - LINEAR_SHARPEN_ALPHA_SGIS = ((int)SGIS_sharpen_texture.LINEAR_SHARPEN_ALPHA_SGIS), + PIXEL_TEX_GEN_Q_FLOOR_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_FLOOR_SGIX), FILTER4_SGIS = ((int)SGIS_texture_filter4.FILTER4_SGIS), LINEAR_SHARPEN_SGIS = ((int)SGIS_sharpen_texture.LINEAR_SHARPEN_SGIS), + PIXEL_TEX_GEN_Q_CEILING_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_CEILING_SGIX), + LINEAR_DETAIL_SGIS = ((int)SGIS_detail_texture.LINEAR_DETAIL_SGIS), + PIXEL_TEX_GEN_Q_ROUND_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_ROUND_SGIX), + NEAREST = ((int)0x2600), + LINEAR_SHARPEN_COLOR_SGIS = ((int)SGIS_sharpen_texture.LINEAR_SHARPEN_COLOR_SGIS), + LINEAR_SHARPEN_ALPHA_SGIS = ((int)SGIS_sharpen_texture.LINEAR_SHARPEN_ALPHA_SGIS), + LINEAR_DETAIL_ALPHA_SGIS = ((int)SGIS_detail_texture.LINEAR_DETAIL_ALPHA_SGIS), LINEAR_DETAIL_COLOR_SGIS = ((int)SGIS_detail_texture.LINEAR_DETAIL_COLOR_SGIS), } public enum TextureMinFilter { - NEAREST_CLIPMAP_LINEAR_SGIX = ((int)SGIX_clipmap.NEAREST_CLIPMAP_LINEAR_SGIX), - PIXEL_TEX_GEN_Q_FLOOR_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_FLOOR_SGIX), - NEAREST_MIPMAP_NEAREST = ((int)0x2700), LINEAR = ((int)TextureMagFilter.LINEAR), - NEAREST_MIPMAP_LINEAR = ((int)0x2702), + PIXEL_TEX_GEN_Q_FLOOR_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_FLOOR_SGIX), + FILTER4_SGIS = ((int)SGIS_texture_filter4.FILTER4_SGIS), PIXEL_TEX_GEN_Q_CEILING_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_CEILING_SGIX), + NEAREST_CLIPMAP_NEAREST_SGIX = ((int)SGIX_clipmap.NEAREST_CLIPMAP_NEAREST_SGIX), + LINEAR_CLIPMAP_NEAREST_SGIX = ((int)SGIX_clipmap.LINEAR_CLIPMAP_NEAREST_SGIX), + NEAREST_CLIPMAP_LINEAR_SGIX = ((int)SGIX_clipmap.NEAREST_CLIPMAP_LINEAR_SGIX), + NEAREST_MIPMAP_LINEAR = ((int)0x2702), + NEAREST = ((int)TextureMagFilter.NEAREST), + NEAREST_MIPMAP_NEAREST = ((int)0x2700), + LINEAR_MIPMAP_NEAREST = ((int)0x2701), LINEAR_CLIPMAP_LINEAR_SGIX = ((int)SGIX_clipmap.LINEAR_CLIPMAP_LINEAR_SGIX), LINEAR_MIPMAP_LINEAR = ((int)0x2703), - NEAREST = ((int)TextureMagFilter.NEAREST), - NEAREST_CLIPMAP_NEAREST_SGIX = ((int)SGIX_clipmap.NEAREST_CLIPMAP_NEAREST_SGIX), - LINEAR_MIPMAP_NEAREST = ((int)0x2701), PIXEL_TEX_GEN_Q_ROUND_SGIX = ((int)SGIX_impact_pixel_texture.PIXEL_TEX_GEN_Q_ROUND_SGIX), - LINEAR_CLIPMAP_NEAREST_SGIX = ((int)SGIX_clipmap.LINEAR_CLIPMAP_NEAREST_SGIX), - FILTER4_SGIS = ((int)SGIS_texture_filter4.FILTER4_SGIS), } public enum TextureParameterName { - TEXTURE_WRAP_T = ((int)0x2803), - TEXTURE_CLIPMAP_FRAME_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_FRAME_SGIX), - GENERATE_MIPMAP_SGIS = ((int)SGIS_generate_mipmap.GENERATE_MIPMAP_SGIS), - TEXTURE_MAG_FILTER = ((int)0x2800), - TEXTURE_CLIPMAP_CENTER_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_CENTER_SGIX), - TEXTURE_MIN_FILTER = ((int)0x2801), - DETAIL_TEXTURE_LEVEL_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_LEVEL_SGIS), - TEXTURE_WRAP_Q_SGIS = ((int)SGIS_texture4D.TEXTURE_WRAP_Q_SGIS), + TEXTURE_BORDER_COLOR = ((int)GetTextureParameter.TEXTURE_BORDER_COLOR), + TEXTURE_LOD_BIAS_T_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_T_SGIX), + TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX), POST_TEXTURE_FILTER_BIAS_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_BIAS_SGIX), TEXTURE_LOD_BIAS_R_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_R_SGIX), - DETAIL_TEXTURE_MODE_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_MODE_SGIS), - TEXTURE_BORDER_COLOR = ((int)GetTextureParameter.TEXTURE_BORDER_COLOR), - POST_TEXTURE_FILTER_SCALE_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_SCALE_SGIX), + GENERATE_MIPMAP_SGIS = ((int)SGIS_generate_mipmap.GENERATE_MIPMAP_SGIS), TEXTURE_CLIPMAP_DEPTH_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_DEPTH_SGIX), - TEXTURE_CLIPMAP_OFFSET_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_OFFSET_SGIX), - TEXTURE_COMPARE_SGIX = ((int)SGIX_shadow.TEXTURE_COMPARE_SGIX), - TEXTURE_MAX_CLAMP_T_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_T_SGIX), - TEXTURE_WRAP_R_EXT = ((int)EXT_texture3D.TEXTURE_WRAP_R_EXT), - TEXTURE_PRIORITY = ((int)GetTextureParameter.TEXTURE_PRIORITY), - TEXTURE_MAX_CLAMP_R_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_R_SGIX), - TEXTURE_MAX_CLAMP_S_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_S_SGIX), - QUAD_TEXTURE_SELECT_SGIS = ((int)SGIS_texture_select.QUAD_TEXTURE_SELECT_SGIS), - TEXTURE_LOD_BIAS_T_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_T_SGIX), - SHADOW_AMBIENT_SGIX = ((int)SGIX_shadow_ambient.SHADOW_AMBIENT_SGIX), TEXTURE_COMPARE_OPERATOR_SGIX = ((int)SGIX_shadow.TEXTURE_COMPARE_OPERATOR_SGIX), + QUAD_TEXTURE_SELECT_SGIS = ((int)SGIS_texture_select.QUAD_TEXTURE_SELECT_SGIS), + TEXTURE_CLIPMAP_CENTER_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_CENTER_SGIX), + TEXTURE_MAX_CLAMP_T_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_T_SGIX), + TEXTURE_COMPARE_SGIX = ((int)SGIX_shadow.TEXTURE_COMPARE_SGIX), + TEXTURE_MAX_CLAMP_S_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_S_SGIX), + TEXTURE_MAG_FILTER = ((int)0x2800), + SHADOW_AMBIENT_SGIX = ((int)SGIX_shadow_ambient.SHADOW_AMBIENT_SGIX), + TEXTURE_WRAP_Q_SGIS = ((int)SGIS_texture4D.TEXTURE_WRAP_Q_SGIS), + DETAIL_TEXTURE_MODE_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_MODE_SGIS), + TEXTURE_CLIPMAP_FRAME_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_FRAME_SGIX), DUAL_TEXTURE_SELECT_SGIS = ((int)SGIS_texture_select.DUAL_TEXTURE_SELECT_SGIS), - TEXTURE_LOD_BIAS_S_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_S_SGIX), - TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_LOD_OFFSET_SGIX), TEXTURE_WRAP_S = ((int)0x2802), - TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX), + TEXTURE_LOD_BIAS_S_SGIX = ((int)SGIX_texture_lod_bias.TEXTURE_LOD_BIAS_S_SGIX), + POST_TEXTURE_FILTER_SCALE_SGIX = ((int)SGIX_texture_scale_bias.POST_TEXTURE_FILTER_SCALE_SGIX), + DETAIL_TEXTURE_LEVEL_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_LEVEL_SGIS), + TEXTURE_WRAP_R_EXT = ((int)EXT_texture3D.TEXTURE_WRAP_R_EXT), + TEXTURE_MIN_FILTER = ((int)0x2801), + TEXTURE_CLIPMAP_OFFSET_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_OFFSET_SGIX), + TEXTURE_WRAP_T = ((int)0x2803), + TEXTURE_MAX_CLAMP_R_SGIX = ((int)SGIX_texture_coordinate_clamp.TEXTURE_MAX_CLAMP_R_SGIX), + TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = ((int)SGIX_clipmap.TEXTURE_CLIPMAP_LOD_OFFSET_SGIX), + TEXTURE_PRIORITY = ((int)GetTextureParameter.TEXTURE_PRIORITY), } public enum TextureTarget { - TEXTURE_MAX_LOD_SGIS = ((int)SGIS_texture_lod.TEXTURE_MAX_LOD_SGIS), - TEXTURE_BASE_LEVEL_SGIS = ((int)SGIS_texture_lod.TEXTURE_BASE_LEVEL_SGIS), - PROXY_TEXTURE_1D = ((int)0x8063), - TEXTURE_3D_EXT = ((int)EXT_texture3D.TEXTURE_3D_EXT), - PROXY_TEXTURE_4D_SGIS = ((int)SGIS_texture4D.PROXY_TEXTURE_4D_SGIS), - PROXY_TEXTURE_3D_EXT = ((int)EXT_texture3D.PROXY_TEXTURE_3D_EXT), - TEXTURE_2D = ((int)GetPName.TEXTURE_2D), - DETAIL_TEXTURE_2D_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_2D_SGIS), TEXTURE_1D = ((int)GetPName.TEXTURE_1D), - TEXTURE_4D_SGIS = ((int)SGIS_texture4D.TEXTURE_4D_SGIS), + TEXTURE_MAX_LOD_SGIS = ((int)SGIS_texture_lod.TEXTURE_MAX_LOD_SGIS), + TEXTURE_2D = ((int)GetPName.TEXTURE_2D), + TEXTURE_BASE_LEVEL_SGIS = ((int)SGIS_texture_lod.TEXTURE_BASE_LEVEL_SGIS), + PROXY_TEXTURE_4D_SGIS = ((int)SGIS_texture4D.PROXY_TEXTURE_4D_SGIS), PROXY_TEXTURE_2D = ((int)0x8064), + TEXTURE_4D_SGIS = ((int)SGIS_texture4D.TEXTURE_4D_SGIS), + DETAIL_TEXTURE_2D_SGIS = ((int)SGIS_detail_texture.DETAIL_TEXTURE_2D_SGIS), + PROXY_TEXTURE_1D = ((int)0x8063), TEXTURE_MIN_LOD_SGIS = ((int)SGIS_texture_lod.TEXTURE_MIN_LOD_SGIS), TEXTURE_MAX_LEVEL_SGIS = ((int)SGIS_texture_lod.TEXTURE_MAX_LEVEL_SGIS), + TEXTURE_3D_EXT = ((int)EXT_texture3D.TEXTURE_3D_EXT), + PROXY_TEXTURE_3D_EXT = ((int)EXT_texture3D.PROXY_TEXTURE_3D_EXT), } public enum TextureWrapMode { - REPEAT = ((int)0x2901), - CLAMP = ((int)0x2900), - CLAMP_TO_EDGE_SGIS = ((int)SGIS_texture_edge_clamp.CLAMP_TO_EDGE_SGIS), CLAMP_TO_BORDER_SGIS = ((int)SGIS_texture_border_clamp.CLAMP_TO_BORDER_SGIS), + CLAMP = ((int)0x2900), + REPEAT = ((int)0x2901), + CLAMP_TO_EDGE_SGIS = ((int)SGIS_texture_edge_clamp.CLAMP_TO_EDGE_SGIS), } public enum PixelInternalFormat { - RGB_ICC_SGIX = ((int)SGIX_icc_texture.RGB_ICC_SGIX), - RGBA4 = ((int)0x8056), + LUMINANCE12_ALPHA12 = ((int)0x8047), + DUAL_LUMINANCE16_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE16_SGIS), QUAD_LUMINANCE8_SGIS = ((int)SGIS_texture_select.QUAD_LUMINANCE8_SGIS), - DUAL_ALPHA8_SGIS = ((int)SGIS_texture_select.DUAL_ALPHA8_SGIS), - INTENSITY = ((int)0x8049), + RGBA16 = ((int)0x805B), + ALPHA_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA_ICC_SGIX), + LUMINANCE12 = ((int)0x8041), DUAL_ALPHA4_SGIS = ((int)SGIS_texture_select.DUAL_ALPHA4_SGIS), - RGB5 = ((int)0x8050), - QUAD_ALPHA4_SGIS = ((int)SGIS_texture_select.QUAD_ALPHA4_SGIS), - DEPTH_COMPONENT32_SGIX = ((int)SGIX_depth_texture.DEPTH_COMPONENT32_SGIX), - DEPTH_COMPONENT16_SGIX = ((int)SGIX_depth_texture.DEPTH_COMPONENT16_SGIX), - ALPHA8 = ((int)0x803C), - INTENSITY12 = ((int)0x804C), - DUAL_LUMINANCE4_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE4_SGIS), - INTENSITY16 = ((int)0x804D), - DUAL_INTENSITY12_SGIS = ((int)SGIS_texture_select.DUAL_INTENSITY12_SGIS), - RGB10_A2 = ((int)0x8059), - ALPHA16_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA16_ICC_SGIX), - LUMINANCE16_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ICC_SGIX), - DUAL_LUMINANCE8_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE8_SGIS), - DUAL_ALPHA12_SGIS = ((int)SGIS_texture_select.DUAL_ALPHA12_SGIS), - R3_G3_B2 = ((int)0x2A10), - DEPTH_COMPONENT24_SGIX = ((int)SGIX_depth_texture.DEPTH_COMPONENT24_SGIX), - RGB2_EXT = ((int)EXT_texture.RGB2_EXT), - QUAD_INTENSITY4_SGIS = ((int)SGIS_texture_select.QUAD_INTENSITY4_SGIS), - QUAD_INTENSITY8_SGIS = ((int)SGIS_texture_select.QUAD_INTENSITY8_SGIS), - QUAD_LUMINANCE4_SGIS = ((int)SGIS_texture_select.QUAD_LUMINANCE4_SGIS), - RGB8 = ((int)0x8051), - DUAL_LUMINANCE_ALPHA8_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE_ALPHA8_SGIS), - DUAL_LUMINANCE_ALPHA4_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE_ALPHA4_SGIS), - LUMINANCE16_ALPHA16 = ((int)0x8048), - R5_G6_B5_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_ICC_SGIX), - LUMINANCE12_ALPHA4 = ((int)0x8046), - LUMINANCE6_ALPHA2 = ((int)0x8044), INTENSITY4 = ((int)0x804A), + RGBA12 = ((int)0x805A), + INTENSITY8 = ((int)0x804B), + DUAL_ALPHA8_SGIS = ((int)SGIS_texture_select.DUAL_ALPHA8_SGIS), + DEPTH_COMPONENT16_SGIX = ((int)SGIX_depth_texture.DEPTH_COMPONENT16_SGIX), + ALPHA16_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA16_ICC_SGIX), + DUAL_INTENSITY12_SGIS = ((int)SGIS_texture_select.DUAL_INTENSITY12_SGIS), + LUMINANCE16 = ((int)0x8042), + LUMINANCE_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE_ICC_SGIX), + DEPTH_COMPONENT24_SGIX = ((int)SGIX_depth_texture.DEPTH_COMPONENT24_SGIX), + INTENSITY = ((int)0x8049), + QUAD_ALPHA4_SGIS = ((int)SGIS_texture_select.QUAD_ALPHA4_SGIS), + ALPHA12 = ((int)0x803D), + INTENSITY_ICC_SGIX = ((int)SGIX_icc_texture.INTENSITY_ICC_SGIX), + LUMINANCE4 = ((int)0x803F), + LUMINANCE_ALPHA_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE_ALPHA_ICC_SGIX), + RGB_ICC_SGIX = ((int)SGIX_icc_texture.RGB_ICC_SGIX), + LUMINANCE4_ALPHA4 = ((int)0x8043), + INTENSITY16_ICC_SGIX = ((int)SGIX_icc_texture.INTENSITY16_ICC_SGIX), + RGBA_ICC_SGIX = ((int)SGIX_icc_texture.RGBA_ICC_SGIX), + DUAL_LUMINANCE12_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE12_SGIS), + ALPHA16 = ((int)0x803E), + DUAL_ALPHA16_SGIS = ((int)SGIS_texture_select.DUAL_ALPHA16_SGIS), + DUAL_ALPHA12_SGIS = ((int)SGIS_texture_select.DUAL_ALPHA12_SGIS), + RGB2_EXT = ((int)EXT_texture.RGB2_EXT), + LUMINANCE8 = ((int)0x8040), + QUAD_INTENSITY8_SGIS = ((int)SGIS_texture_select.QUAD_INTENSITY8_SGIS), + DUAL_LUMINANCE_ALPHA4_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE_ALPHA4_SGIS), + LUMINANCE12_ALPHA4 = ((int)0x8046), + QUAD_LUMINANCE4_SGIS = ((int)SGIS_texture_select.QUAD_LUMINANCE4_SGIS), + RGB5 = ((int)0x8050), + DUAL_LUMINANCE_ALPHA8_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE_ALPHA8_SGIS), + LUMINANCE8_ALPHA8 = ((int)0x8045), + DUAL_INTENSITY8_SGIS = ((int)SGIS_texture_select.DUAL_INTENSITY8_SGIS), + RGB8 = ((int)0x8051), + R5_G6_B5_A8_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_A8_ICC_SGIX), + QUAD_ALPHA8_SGIS = ((int)SGIS_texture_select.QUAD_ALPHA8_SGIS), + DUAL_INTENSITY4_SGIS = ((int)SGIS_texture_select.DUAL_INTENSITY4_SGIS), + RGB10_A2 = ((int)0x8059), + INTENSITY12 = ((int)0x804C), + RGBA4 = ((int)0x8056), + RGB5_A1 = ((int)0x8057), + R3_G3_B2 = ((int)0x2A10), + R5_G6_B5_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_ICC_SGIX), + RGBA2 = ((int)0x8055), + DUAL_INTENSITY16_SGIS = ((int)SGIS_texture_select.DUAL_INTENSITY16_SGIS), + QUAD_INTENSITY4_SGIS = ((int)SGIS_texture_select.QUAD_INTENSITY4_SGIS), + DUAL_LUMINANCE8_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE8_SGIS), + RGB16 = ((int)0x8054), + ALPHA4 = ((int)0x803B), + RGBA8 = ((int)0x8058), + INTENSITY16 = ((int)0x804D), + LUMINANCE16_ALPHA8_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ALPHA8_ICC_SGIX), + LUMINANCE16_ALPHA16 = ((int)0x8048), + LUMINANCE16_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ICC_SGIX), + ALPHA8 = ((int)0x803C), + RGB4 = ((int)0x804F), + DEPTH_COMPONENT32_SGIX = ((int)SGIX_depth_texture.DEPTH_COMPONENT32_SGIX), RGB10 = ((int)0x8052), RGB12 = ((int)0x8053), - DUAL_INTENSITY8_SGIS = ((int)SGIS_texture_select.DUAL_INTENSITY8_SGIS), - RGB4 = ((int)0x804F), - LUMINANCE4_ALPHA4 = ((int)0x8043), - R5_G6_B5_A8_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_A8_ICC_SGIX), - INTENSITY8 = ((int)0x804B), - LUMINANCE4 = ((int)0x803F), - RGB16 = ((int)0x8054), - DUAL_ALPHA16_SGIS = ((int)SGIS_texture_select.DUAL_ALPHA16_SGIS), - ALPHA_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA_ICC_SGIX), - QUAD_ALPHA8_SGIS = ((int)SGIS_texture_select.QUAD_ALPHA8_SGIS), - DUAL_LUMINANCE12_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE12_SGIS), - LUMINANCE16 = ((int)0x8042), - RGBA16 = ((int)0x805B), - ALPHA12 = ((int)0x803D), - LUMINANCE12 = ((int)0x8041), - LUMINANCE8_ALPHA8 = ((int)0x8045), - ALPHA16 = ((int)0x803E), - LUMINANCE16_ALPHA8_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ALPHA8_ICC_SGIX), - LUMINANCE_ALPHA_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE_ALPHA_ICC_SGIX), - RGBA8 = ((int)0x8058), - INTENSITY_ICC_SGIX = ((int)SGIX_icc_texture.INTENSITY_ICC_SGIX), - RGBA12 = ((int)0x805A), - INTENSITY16_ICC_SGIX = ((int)SGIX_icc_texture.INTENSITY16_ICC_SGIX), - LUMINANCE8 = ((int)0x8040), - DUAL_LUMINANCE16_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE16_SGIS), - ALPHA4 = ((int)0x803B), - LUMINANCE12_ALPHA12 = ((int)0x8047), - LUMINANCE_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE_ICC_SGIX), - DUAL_INTENSITY16_SGIS = ((int)SGIS_texture_select.DUAL_INTENSITY16_SGIS), - RGB5_A1 = ((int)0x8057), - RGBA2 = ((int)0x8055), - DUAL_INTENSITY4_SGIS = ((int)SGIS_texture_select.DUAL_INTENSITY4_SGIS), - RGBA_ICC_SGIX = ((int)SGIX_icc_texture.RGBA_ICC_SGIX), + LUMINANCE6_ALPHA2 = ((int)0x8044), + DUAL_LUMINANCE4_SGIS = ((int)SGIS_texture_select.DUAL_LUMINANCE4_SGIS), } public enum InterleavedArrayFormat { - C4UB_V2F = ((int)0x2A22), - T2F_C3F_V3F = ((int)0x2A2A), + T2F_C4UB_V3F = ((int)0x2A29), + T2F_N3F_V3F = ((int)0x2A2B), + T4F_V4F = ((int)0x2A28), + T2F_V3F = ((int)0x2A27), + V2F = ((int)0x2A20), T2F_C4F_N3F_V3F = ((int)0x2A2C), + T4F_C4F_N3F_V4F = ((int)0x2A2D), + T2F_C3F_V3F = ((int)0x2A2A), + C3F_V3F = ((int)0x2A24), + C4F_N3F_V3F = ((int)0x2A26), V3F = ((int)0x2A21), N3F_V3F = ((int)0x2A25), - T2F_C4UB_V3F = ((int)0x2A29), - V2F = ((int)0x2A20), - T2F_N3F_V3F = ((int)0x2A2B), - C3F_V3F = ((int)0x2A24), - T4F_C4F_N3F_V4F = ((int)0x2A2D), - T2F_V3F = ((int)0x2A27), - T4F_V4F = ((int)0x2A28), - C4F_N3F_V3F = ((int)0x2A26), + C4UB_V2F = ((int)0x2A22), C4UB_V3F = ((int)0x2A23), } public enum VertexPointerType { - FLOAT = ((int)DataType.FLOAT), + DOUBLE = ((int)DataType.DOUBLE), INT = ((int)DataType.INT), SHORT = ((int)DataType.SHORT), - DOUBLE = ((int)DataType.DOUBLE), + FLOAT = ((int)DataType.FLOAT), } public enum ClipPlaneName { - CLIP_PLANE5 = ((int)0x3005), - CLIP_PLANE4 = ((int)0x3004), - CLIP_PLANE1 = ((int)0x3001), - CLIP_PLANE0 = ((int)0x3000), CLIP_PLANE3 = ((int)0x3003), CLIP_PLANE2 = ((int)0x3002), + CLIP_PLANE5 = ((int)0x3005), + CLIP_PLANE1 = ((int)0x3001), + CLIP_PLANE0 = ((int)0x3000), + CLIP_PLANE4 = ((int)0x3004), } public enum LightName { - LIGHT6 = ((int)0x4006), FRAGMENT_LIGHT4_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT4_SGIX), - FRAGMENT_LIGHT3_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT3_SGIX), - FRAGMENT_LIGHT0_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT0_SGIX), - LIGHT4 = ((int)0x4004), - FRAGMENT_LIGHT7_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT7_SGIX), - FRAGMENT_LIGHT6_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT6_SGIX), - LIGHT5 = ((int)0x4005), FRAGMENT_LIGHT5_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT5_SGIX), - LIGHT2 = ((int)0x4002), - LIGHT0 = ((int)0x4000), - LIGHT1 = ((int)0x4001), - LIGHT7 = ((int)0x4007), - FRAGMENT_LIGHT2_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT2_SGIX), + LIGHT4 = ((int)0x4004), LIGHT3 = ((int)0x4003), + FRAGMENT_LIGHT7_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT7_SGIX), + LIGHT6 = ((int)0x4006), FRAGMENT_LIGHT1_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT1_SGIX), + LIGHT5 = ((int)0x4005), + LIGHT0 = ((int)0x4000), + FRAGMENT_LIGHT3_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT3_SGIX), + FRAGMENT_LIGHT2_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT2_SGIX), + LIGHT7 = ((int)0x4007), + LIGHT2 = ((int)0x4002), + FRAGMENT_LIGHT0_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT0_SGIX), + LIGHT1 = ((int)0x4001), + FRAGMENT_LIGHT6_SGIX = ((int)SGIX_fragment_lighting.FRAGMENT_LIGHT6_SGIX), } public enum EXT_abgr @@ -1697,275 +1697,275 @@ namespace OpenTK.OpenGL public enum EXT_blend_color { - CONSTANT_COLOR = ((int)0x8001), + CONSTANT_COLOR_EXT = ((int)0x8001), + CONSTANT_ALPHA = ((int)0x8003), BLEND_COLOR_EXT = ((int)0x8005), + CONSTANT_ALPHA_EXT = ((int)0x8003), ONE_MINUS_CONSTANT_COLOR_EXT = ((int)0x8002), ONE_MINUS_CONSTANT_COLOR = ((int)0x8002), - ONE_MINUS_CONSTANT_ALPHA = ((int)0x8004), - CONSTANT_ALPHA = ((int)0x8003), - BLEND_COLOR = ((int)0x8005), - CONSTANT_ALPHA_EXT = ((int)0x8003), ONE_MINUS_CONSTANT_ALPHA_EXT = ((int)0x8004), - CONSTANT_COLOR_EXT = ((int)0x8001), + CONSTANT_COLOR = ((int)0x8001), + BLEND_COLOR = ((int)0x8005), + ONE_MINUS_CONSTANT_ALPHA = ((int)0x8004), } public enum EXT_blend_minmax { - MIN = ((int)0x8007), - BLEND_EQUATION_EXT = ((int)0x8009), - FUNC_ADD = ((int)0x8006), - BLEND_EQUATION = ((int)0x8009), MAX_EXT = ((int)0x8008), + BLEND_EQUATION_EXT = ((int)0x8009), + MIN = ((int)0x8007), + FUNC_ADD_EXT = ((int)0x8006), + FUNC_ADD = ((int)0x8006), MAX = ((int)0x8008), MIN_EXT = ((int)0x8007), - FUNC_ADD_EXT = ((int)0x8006), + BLEND_EQUATION = ((int)0x8009), } public enum EXT_blend_subtract { - FUNC_SUBTRACT_EXT = ((int)0x800A), - FUNC_REVERSE_SUBTRACT_EXT = ((int)0x800B), - FUNC_REVERSE_SUBTRACT = ((int)0x800B), FUNC_SUBTRACT = ((int)0x800A), + FUNC_REVERSE_SUBTRACT = ((int)0x800B), + FUNC_REVERSE_SUBTRACT_EXT = ((int)0x800B), + FUNC_SUBTRACT_EXT = ((int)0x800A), } public enum EXT_cmyka { - PACK_CMYK_HINT_EXT = ((int)0x800E), - CMYK_EXT = ((int)0x800C), - CMYKA_EXT = ((int)0x800D), UNPACK_CMYK_HINT_EXT = ((int)0x800F), + PACK_CMYK_HINT_EXT = ((int)0x800E), + CMYKA_EXT = ((int)0x800D), + CMYK_EXT = ((int)0x800C), } public enum EXT_convolution { - CONVOLUTION_FILTER_SCALE = ((int)0x8014), - POST_CONVOLUTION_GREEN_BIAS_EXT = ((int)0x8021), - POST_CONVOLUTION_GREEN_SCALE_EXT = ((int)0x801D), - CONVOLUTION_FORMAT_EXT = ((int)0x8017), CONVOLUTION_WIDTH = ((int)0x8018), - POST_CONVOLUTION_RED_SCALE = ((int)0x801C), - MAX_CONVOLUTION_HEIGHT_EXT = ((int)0x801B), - MAX_CONVOLUTION_WIDTH = ((int)0x801A), - CONVOLUTION_2D_EXT = ((int)0x8011), - CONVOLUTION_BORDER_MODE_EXT = ((int)0x8013), - CONVOLUTION_FILTER_BIAS = ((int)0x8015), - POST_CONVOLUTION_ALPHA_SCALE_EXT = ((int)0x801F), - POST_CONVOLUTION_BLUE_BIAS_EXT = ((int)0x8022), - POST_CONVOLUTION_BLUE_BIAS = ((int)0x8022), - SEPARABLE_2D_EXT = ((int)0x8012), - POST_CONVOLUTION_RED_BIAS = ((int)0x8020), - MAX_CONVOLUTION_WIDTH_EXT = ((int)0x801A), - POST_CONVOLUTION_BLUE_SCALE_EXT = ((int)0x801E), - REDUCE_EXT = ((int)0x8016), - POST_CONVOLUTION_ALPHA_SCALE = ((int)0x801F), - CONVOLUTION_FORMAT = ((int)0x8017), - POST_CONVOLUTION_RED_BIAS_EXT = ((int)0x8020), - POST_CONVOLUTION_ALPHA_BIAS = ((int)0x8023), - POST_CONVOLUTION_GREEN_BIAS = ((int)0x8021), - POST_CONVOLUTION_GREEN_SCALE = ((int)0x801D), - POST_CONVOLUTION_BLUE_SCALE = ((int)0x801E), + CONVOLUTION_1D = ((int)0x8010), CONVOLUTION_FILTER_SCALE_EXT = ((int)0x8014), CONVOLUTION_2D = ((int)0x8011), - CONVOLUTION_1D = ((int)0x8010), - CONVOLUTION_HEIGHT = ((int)0x8019), - CONVOLUTION_FILTER_BIAS_EXT = ((int)0x8015), - REDUCE = ((int)0x8016), - POST_CONVOLUTION_ALPHA_BIAS_EXT = ((int)0x8023), - CONVOLUTION_1D_EXT = ((int)0x8010), - CONVOLUTION_BORDER_MODE = ((int)0x8013), CONVOLUTION_WIDTH_EXT = ((int)0x8018), + POST_CONVOLUTION_ALPHA_BIAS = ((int)0x8023), + POST_CONVOLUTION_ALPHA_SCALE_EXT = ((int)0x801F), + POST_CONVOLUTION_BLUE_BIAS_EXT = ((int)0x8022), + CONVOLUTION_FILTER_SCALE = ((int)0x8014), + POST_CONVOLUTION_GREEN_SCALE_EXT = ((int)0x801D), SEPARABLE_2D = ((int)0x8012), - CONVOLUTION_HEIGHT_EXT = ((int)0x8019), + CONVOLUTION_FORMAT = ((int)0x8017), + POST_CONVOLUTION_BLUE_SCALE = ((int)0x801E), + CONVOLUTION_BORDER_MODE_EXT = ((int)0x8013), + POST_CONVOLUTION_GREEN_SCALE = ((int)0x801D), POST_CONVOLUTION_RED_SCALE_EXT = ((int)0x801C), + REDUCE_EXT = ((int)0x8016), + CONVOLUTION_1D_EXT = ((int)0x8010), + MAX_CONVOLUTION_WIDTH_EXT = ((int)0x801A), + CONVOLUTION_FORMAT_EXT = ((int)0x8017), + POST_CONVOLUTION_BLUE_BIAS = ((int)0x8022), + CONVOLUTION_HEIGHT = ((int)0x8019), + SEPARABLE_2D_EXT = ((int)0x8012), + CONVOLUTION_2D_EXT = ((int)0x8011), + MAX_CONVOLUTION_WIDTH = ((int)0x801A), + POST_CONVOLUTION_ALPHA_BIAS_EXT = ((int)0x8023), + POST_CONVOLUTION_GREEN_BIAS_EXT = ((int)0x8021), + POST_CONVOLUTION_RED_BIAS_EXT = ((int)0x8020), + REDUCE = ((int)0x8016), + MAX_CONVOLUTION_HEIGHT_EXT = ((int)0x801B), + CONVOLUTION_BORDER_MODE = ((int)0x8013), + POST_CONVOLUTION_ALPHA_SCALE = ((int)0x801F), + POST_CONVOLUTION_BLUE_SCALE_EXT = ((int)0x801E), + POST_CONVOLUTION_RED_BIAS = ((int)0x8020), + CONVOLUTION_FILTER_BIAS_EXT = ((int)0x8015), + POST_CONVOLUTION_RED_SCALE = ((int)0x801C), + CONVOLUTION_HEIGHT_EXT = ((int)0x8019), MAX_CONVOLUTION_HEIGHT = ((int)0x801B), + CONVOLUTION_FILTER_BIAS = ((int)0x8015), + POST_CONVOLUTION_GREEN_BIAS = ((int)0x8021), } public enum EXT_histogram { HISTOGRAM_WIDTH = ((int)0x8026), - HISTOGRAM_RED_SIZE = ((int)0x8028), - MINMAX_SINK_EXT = ((int)0x8030), PROXY_HISTOGRAM = ((int)0x8025), - HISTOGRAM = ((int)0x8024), - HISTOGRAM_WIDTH_EXT = ((int)0x8026), - MINMAX_SINK = ((int)0x8030), - HISTOGRAM_GREEN_SIZE = ((int)0x8029), - HISTOGRAM_BLUE_SIZE_EXT = ((int)0x802A), - MINMAX_FORMAT_EXT = ((int)0x802F), - HISTOGRAM_RED_SIZE_EXT = ((int)0x8028), - TABLE_TOO_LARGE = ((int)0x8031), - HISTOGRAM_FORMAT = ((int)0x8027), - MINMAX = ((int)0x802E), - MINMAX_FORMAT = ((int)0x802F), - HISTOGRAM_FORMAT_EXT = ((int)0x8027), - HISTOGRAM_BLUE_SIZE = ((int)0x802A), - HISTOGRAM_GREEN_SIZE_EXT = ((int)0x8029), - HISTOGRAM_SINK_EXT = ((int)0x802D), - HISTOGRAM_ALPHA_SIZE = ((int)0x802B), - HISTOGRAM_LUMINANCE_SIZE = ((int)0x802C), - HISTOGRAM_EXT = ((int)0x8024), - HISTOGRAM_LUMINANCE_SIZE_EXT = ((int)0x802C), - TABLE_TOO_LARGE_EXT = ((int)0x8031), MINMAX_EXT = ((int)0x802E), - HISTOGRAM_ALPHA_SIZE_EXT = ((int)0x802B), - HISTOGRAM_SINK = ((int)0x802D), + MINMAX_SINK_EXT = ((int)0x8030), + MINMAX_FORMAT_EXT = ((int)0x802F), + HISTOGRAM_BLUE_SIZE = ((int)0x802A), + HISTOGRAM_SINK_EXT = ((int)0x802D), + HISTOGRAM_LUMINANCE_SIZE = ((int)0x802C), + HISTOGRAM_LUMINANCE_SIZE_EXT = ((int)0x802C), + HISTOGRAM_EXT = ((int)0x8024), + HISTOGRAM_ALPHA_SIZE = ((int)0x802B), + HISTOGRAM_FORMAT_EXT = ((int)0x8027), + HISTOGRAM_RED_SIZE_EXT = ((int)0x8028), + MINMAX = ((int)0x802E), + MINMAX_SINK = ((int)0x8030), PROXY_HISTOGRAM_EXT = ((int)0x8025), + HISTOGRAM_RED_SIZE = ((int)0x8028), + HISTOGRAM_ALPHA_SIZE_EXT = ((int)0x802B), + HISTOGRAM_BLUE_SIZE_EXT = ((int)0x802A), + MINMAX_FORMAT = ((int)0x802F), + HISTOGRAM_WIDTH_EXT = ((int)0x8026), + HISTOGRAM_FORMAT = ((int)0x8027), + TABLE_TOO_LARGE = ((int)0x8031), + HISTOGRAM_SINK = ((int)0x802D), + HISTOGRAM_GREEN_SIZE_EXT = ((int)0x8029), + TABLE_TOO_LARGE_EXT = ((int)0x8031), + HISTOGRAM = ((int)0x8024), + HISTOGRAM_GREEN_SIZE = ((int)0x8029), } public enum EXT_packed_pixels { - UNSIGNED_SHORT_5_5_5_1 = ((int)0x8034), - UNSIGNED_SHORT_4_4_4_4 = ((int)0x8033), - UNSIGNED_SHORT_5_6_5_REV_EXT = ((int)0x8364), - UNSIGNED_INT_10_10_10_2_EXT = ((int)0x8036), - UNSIGNED_SHORT_4_4_4_4_REV_EXT = ((int)0x8365), - UNSIGNED_BYTE_3_3_2_EXT = ((int)0x8032), - UNSIGNED_SHORT_4_4_4_4_REV = ((int)0x8365), - UNSIGNED_INT_8_8_8_8_EXT = ((int)0x8035), - UNSIGNED_SHORT_5_6_5_REV = ((int)0x8364), - UNSIGNED_SHORT_5_6_5 = ((int)0x8363), - UNSIGNED_BYTE_2_3_3_REV_EXT = ((int)0x8362), - UNSIGNED_SHORT_5_5_5_1_EXT = ((int)0x8034), - UNSIGNED_INT_2_10_10_10_REV_EXT = ((int)0x8368), - UNSIGNED_SHORT_1_5_5_5_REV = ((int)0x8366), - UNSIGNED_SHORT_5_6_5_EXT = ((int)0x8363), - UNSIGNED_BYTE_2_3_3_REV = ((int)0x8362), - UNSIGNED_SHORT_4_4_4_4_EXT = ((int)0x8033), - UNSIGNED_SHORT_1_5_5_5_REV_EXT = ((int)0x8366), - UNSIGNED_INT_2_10_10_10_REV = ((int)0x8368), - UNSIGNED_INT_8_8_8_8_REV_EXT = ((int)0x8367), - UNSIGNED_INT_8_8_8_8 = ((int)0x8035), - UNSIGNED_INT_10_10_10_2 = ((int)0x8036), - UNSIGNED_INT_8_8_8_8_REV = ((int)0x8367), UNSIGNED_BYTE_3_3_2 = ((int)0x8032), + UNSIGNED_INT_2_10_10_10_REV = ((int)0x8368), + UNSIGNED_INT_10_10_10_2 = ((int)0x8036), + UNSIGNED_SHORT_4_4_4_4_REV = ((int)0x8365), + UNSIGNED_SHORT_5_6_5_REV_EXT = ((int)0x8364), + UNSIGNED_INT_8_8_8_8 = ((int)0x8035), + UNSIGNED_SHORT_5_6_5 = ((int)0x8363), + UNSIGNED_INT_8_8_8_8_REV = ((int)0x8367), + UNSIGNED_SHORT_1_5_5_5_REV = ((int)0x8366), + UNSIGNED_INT_8_8_8_8_EXT = ((int)0x8035), + UNSIGNED_SHORT_1_5_5_5_REV_EXT = ((int)0x8366), + UNSIGNED_SHORT_5_6_5_REV = ((int)0x8364), + UNSIGNED_SHORT_4_4_4_4_REV_EXT = ((int)0x8365), + UNSIGNED_INT_2_10_10_10_REV_EXT = ((int)0x8368), + UNSIGNED_BYTE_2_3_3_REV = ((int)0x8362), + UNSIGNED_BYTE_2_3_3_REV_EXT = ((int)0x8362), + UNSIGNED_SHORT_4_4_4_4_EXT = ((int)0x8033), + UNSIGNED_INT_10_10_10_2_EXT = ((int)0x8036), + UNSIGNED_SHORT_5_6_5_EXT = ((int)0x8363), + UNSIGNED_SHORT_5_5_5_1 = ((int)0x8034), + UNSIGNED_INT_8_8_8_8_REV_EXT = ((int)0x8367), + UNSIGNED_SHORT_5_5_5_1_EXT = ((int)0x8034), + UNSIGNED_BYTE_3_3_2_EXT = ((int)0x8032), + UNSIGNED_SHORT_4_4_4_4 = ((int)0x8033), } public enum EXT_polygon_offset { + POLYGON_OFFSET_BIAS_EXT = ((int)0x8039), POLYGON_OFFSET_EXT = ((int)0x8037), POLYGON_OFFSET_FACTOR_EXT = ((int)0x8038), - POLYGON_OFFSET_BIAS_EXT = ((int)0x8039), } public enum EXT_rescale_normal { - RESCALE_NORMAL = ((int)0x803A), RESCALE_NORMAL_EXT = ((int)0x803A), + RESCALE_NORMAL = ((int)0x803A), } public enum EXT_texture { - LUMINANCE12_EXT = ((int)0x8041), - RGB12_EXT = ((int)0x8053), - RGB8_EXT = ((int)0x8051), - LUMINANCE6_ALPHA2_EXT = ((int)0x8044), - INTENSITY4_EXT = ((int)0x804A), - PROXY_TEXTURE_1D_EXT = ((int)0x8063), - ALPHA8_EXT = ((int)0x803C), - LUMINANCE8_EXT = ((int)0x8040), - RGB5_A1_EXT = ((int)0x8057), - RGBA2_EXT = ((int)0x8055), - REPLACE_EXT = ((int)0x8062), - RGB2_EXT = ((int)0x804E), - LUMINANCE16_ALPHA16_EXT = ((int)0x8048), - LUMINANCE4_ALPHA4_EXT = ((int)0x8043), - INTENSITY_EXT = ((int)0x8049), - RGB16_EXT = ((int)0x8054), - TEXTURE_BLUE_SIZE_EXT = ((int)0x805E), - TEXTURE_GREEN_SIZE_EXT = ((int)0x805D), - RGBA4_EXT = ((int)0x8056), - INTENSITY8_EXT = ((int)0x804B), - LUMINANCE4_EXT = ((int)0x803F), - RGB4_EXT = ((int)0x804F), - TEXTURE_ALPHA_SIZE_EXT = ((int)0x805F), - ALPHA12_EXT = ((int)0x803D), - INTENSITY16_EXT = ((int)0x804D), - RGB10_A2_EXT = ((int)0x8059), - ALPHA4_EXT = ((int)0x803B), LUMINANCE8_ALPHA8_EXT = ((int)0x8045), - LUMINANCE12_ALPHA4_EXT = ((int)0x8046), - TEXTURE_INTENSITY_SIZE_EXT = ((int)0x8061), - TEXTURE_TOO_LARGE_EXT = ((int)0x8065), - TEXTURE_RED_SIZE_EXT = ((int)0x805C), - RGBA8_EXT = ((int)0x8058), - LUMINANCE16_EXT = ((int)0x8042), RGBA12_EXT = ((int)0x805A), - LUMINANCE12_ALPHA12_EXT = ((int)0x8047), - RGB5_EXT = ((int)0x8050), - RGBA16_EXT = ((int)0x805B), - PROXY_TEXTURE_2D_EXT = ((int)0x8064), - ALPHA16_EXT = ((int)0x803E), - TEXTURE_LUMINANCE_SIZE_EXT = ((int)0x8060), INTENSITY12_EXT = ((int)0x804C), + RGB16_EXT = ((int)0x8054), + REPLACE_EXT = ((int)0x8062), + RGB5_A1_EXT = ((int)0x8057), + RGB5_EXT = ((int)0x8050), + TEXTURE_INTENSITY_SIZE_EXT = ((int)0x8061), + ALPHA12_EXT = ((int)0x803D), + RGB4_EXT = ((int)0x804F), + TEXTURE_LUMINANCE_SIZE_EXT = ((int)0x8060), + RGBA16_EXT = ((int)0x805B), + RGB8_EXT = ((int)0x8051), + RGBA8_EXT = ((int)0x8058), + RGB12_EXT = ((int)0x8053), + LUMINANCE12_ALPHA12_EXT = ((int)0x8047), + INTENSITY4_EXT = ((int)0x804A), + INTENSITY8_EXT = ((int)0x804B), + RGB10_A2_EXT = ((int)0x8059), RGB10_EXT = ((int)0x8052), + LUMINANCE8_EXT = ((int)0x8040), + TEXTURE_RED_SIZE_EXT = ((int)0x805C), + LUMINANCE12_EXT = ((int)0x8041), + PROXY_TEXTURE_2D_EXT = ((int)0x8064), + LUMINANCE4_EXT = ((int)0x803F), + INTENSITY16_EXT = ((int)0x804D), + TEXTURE_GREEN_SIZE_EXT = ((int)0x805D), + LUMINANCE16_ALPHA16_EXT = ((int)0x8048), + TEXTURE_ALPHA_SIZE_EXT = ((int)0x805F), + LUMINANCE16_EXT = ((int)0x8042), + PROXY_TEXTURE_1D_EXT = ((int)0x8063), + RGBA4_EXT = ((int)0x8056), + INTENSITY_EXT = ((int)0x8049), + RGBA2_EXT = ((int)0x8055), + ALPHA16_EXT = ((int)0x803E), + TEXTURE_TOO_LARGE_EXT = ((int)0x8065), + ALPHA8_EXT = ((int)0x803C), + ALPHA4_EXT = ((int)0x803B), + LUMINANCE4_ALPHA4_EXT = ((int)0x8043), + LUMINANCE6_ALPHA2_EXT = ((int)0x8044), + TEXTURE_BLUE_SIZE_EXT = ((int)0x805E), + RGB2_EXT = ((int)0x804E), + LUMINANCE12_ALPHA4_EXT = ((int)0x8046), } public enum EXT_texture_object { - TEXTURE_RESIDENT_EXT = ((int)0x8067), - TEXTURE_1D_BINDING_EXT = ((int)0x8068), TEXTURE_2D_BINDING_EXT = ((int)0x8069), - TEXTURE_3D_BINDING_EXT = ((int)0x806A), + TEXTURE_1D_BINDING_EXT = ((int)0x8068), TEXTURE_PRIORITY_EXT = ((int)0x8066), + TEXTURE_3D_BINDING_EXT = ((int)0x806A), + TEXTURE_RESIDENT_EXT = ((int)0x8067), } public enum EXT_texture3D { - TEXTURE_3D_EXT = ((int)0x806F), - MAX_3D_TEXTURE_SIZE = ((int)0x8073), - TEXTURE_3D = ((int)0x806F), - UNPACK_IMAGE_HEIGHT_EXT = ((int)0x806E), - PACK_IMAGE_HEIGHT = ((int)0x806C), TEXTURE_WRAP_R = ((int)0x8072), - PACK_IMAGE_HEIGHT_EXT = ((int)0x806C), - PACK_SKIP_IMAGES_EXT = ((int)0x806B), - UNPACK_SKIP_IMAGES_EXT = ((int)0x806D), - TEXTURE_DEPTH_EXT = ((int)0x8071), - TEXTURE_WRAP_R_EXT = ((int)0x8072), + UNPACK_IMAGE_HEIGHT_EXT = ((int)0x806E), PROXY_TEXTURE_3D = ((int)0x8070), - MAX_3D_TEXTURE_SIZE_EXT = ((int)0x8073), + UNPACK_SKIP_IMAGES_EXT = ((int)0x806D), + MAX_3D_TEXTURE_SIZE = ((int)0x8073), + TEXTURE_3D_EXT = ((int)0x806F), + PACK_SKIP_IMAGES = ((int)0x806B), + PACK_IMAGE_HEIGHT = ((int)0x806C), PROXY_TEXTURE_3D_EXT = ((int)0x8070), + MAX_3D_TEXTURE_SIZE_EXT = ((int)0x8073), + TEXTURE_DEPTH_EXT = ((int)0x8071), TEXTURE_DEPTH = ((int)0x8071), + PACK_SKIP_IMAGES_EXT = ((int)0x806B), + TEXTURE_WRAP_R_EXT = ((int)0x8072), UNPACK_SKIP_IMAGES = ((int)0x806D), UNPACK_IMAGE_HEIGHT = ((int)0x806E), - PACK_SKIP_IMAGES = ((int)0x806B), + TEXTURE_3D = ((int)0x806F), + PACK_IMAGE_HEIGHT_EXT = ((int)0x806C), } public enum EXT_vertex_array { - NORMAL_ARRAY_POINTER_EXT = ((int)0x808F), - INDEX_ARRAY_TYPE_EXT = ((int)0x8085), - VERTEX_ARRAY_SIZE_EXT = ((int)0x807A), - TEXTURE_COORD_ARRAY_STRIDE_EXT = ((int)0x808A), - INDEX_ARRAY_STRIDE_EXT = ((int)0x8086), - EDGE_FLAG_ARRAY_POINTER_EXT = ((int)0x8093), - INDEX_ARRAY_POINTER_EXT = ((int)0x8091), - COLOR_ARRAY_EXT = ((int)0x8076), - TEXTURE_COORD_ARRAY_COUNT_EXT = ((int)0x808B), - VERTEX_ARRAY_POINTER_EXT = ((int)0x808E), - NORMAL_ARRAY_TYPE_EXT = ((int)0x807E), - EDGE_FLAG_ARRAY_STRIDE_EXT = ((int)0x808C), - VERTEX_ARRAY_COUNT_EXT = ((int)0x807D), - COLOR_ARRAY_STRIDE_EXT = ((int)0x8083), - INDEX_ARRAY_EXT = ((int)0x8077), - NORMAL_ARRAY_EXT = ((int)0x8075), - EDGE_FLAG_ARRAY_EXT = ((int)0x8079), - COLOR_ARRAY_COUNT_EXT = ((int)0x8084), - NORMAL_ARRAY_STRIDE_EXT = ((int)0x807F), - VERTEX_ARRAY_TYPE_EXT = ((int)0x807B), - COLOR_ARRAY_TYPE_EXT = ((int)0x8082), - COLOR_ARRAY_SIZE_EXT = ((int)0x8081), - VERTEX_ARRAY_EXT = ((int)0x8074), + TEXTURE_COORD_ARRAY_POINTER_EXT = ((int)0x8092), NORMAL_ARRAY_COUNT_EXT = ((int)0x8080), - EDGE_FLAG_ARRAY_COUNT_EXT = ((int)0x808D), - COLOR_ARRAY_POINTER_EXT = ((int)0x8090), + INDEX_ARRAY_TYPE_EXT = ((int)0x8085), + VERTEX_ARRAY_TYPE_EXT = ((int)0x807B), INDEX_ARRAY_COUNT_EXT = ((int)0x8087), TEXTURE_COORD_ARRAY_SIZE_EXT = ((int)0x8088), + COLOR_ARRAY_POINTER_EXT = ((int)0x8090), + INDEX_ARRAY_POINTER_EXT = ((int)0x8091), + COLOR_ARRAY_TYPE_EXT = ((int)0x8082), + NORMAL_ARRAY_POINTER_EXT = ((int)0x808F), + TEXTURE_COORD_ARRAY_COUNT_EXT = ((int)0x808B), + VERTEX_ARRAY_SIZE_EXT = ((int)0x807A), VERTEX_ARRAY_STRIDE_EXT = ((int)0x807C), + VERTEX_ARRAY_POINTER_EXT = ((int)0x808E), + INDEX_ARRAY_STRIDE_EXT = ((int)0x8086), + VERTEX_ARRAY_COUNT_EXT = ((int)0x807D), + EDGE_FLAG_ARRAY_POINTER_EXT = ((int)0x8093), TEXTURE_COORD_ARRAY_EXT = ((int)0x8078), + VERTEX_ARRAY_EXT = ((int)0x8074), + TEXTURE_COORD_ARRAY_STRIDE_EXT = ((int)0x808A), + COLOR_ARRAY_EXT = ((int)0x8076), + COLOR_ARRAY_SIZE_EXT = ((int)0x8081), TEXTURE_COORD_ARRAY_TYPE_EXT = ((int)0x8089), - TEXTURE_COORD_ARRAY_POINTER_EXT = ((int)0x8092), + NORMAL_ARRAY_TYPE_EXT = ((int)0x807E), + NORMAL_ARRAY_STRIDE_EXT = ((int)0x807F), + COLOR_ARRAY_COUNT_EXT = ((int)0x8084), + EDGE_FLAG_ARRAY_STRIDE_EXT = ((int)0x808C), + EDGE_FLAG_ARRAY_EXT = ((int)0x8079), + INDEX_ARRAY_EXT = ((int)0x8077), + NORMAL_ARRAY_EXT = ((int)0x8075), + EDGE_FLAG_ARRAY_COUNT_EXT = ((int)0x808D), + COLOR_ARRAY_STRIDE_EXT = ((int)0x8083), } public enum SGIX_interlace @@ -1975,89 +1975,89 @@ namespace OpenTK.OpenGL public enum SGIS_detail_texture { - DETAIL_TEXTURE_FUNC_POINTS_SGIS = ((int)0x809C), DETAIL_TEXTURE_MODE_SGIS = ((int)0x809B), - DETAIL_TEXTURE_LEVEL_SGIS = ((int)0x809A), - LINEAR_DETAIL_ALPHA_SGIS = ((int)0x8098), - LINEAR_DETAIL_SGIS = ((int)0x8097), - DETAIL_TEXTURE_2D_SGIS = ((int)0x8095), DETAIL_TEXTURE_2D_BINDING_SGIS = ((int)0x8096), + DETAIL_TEXTURE_LEVEL_SGIS = ((int)0x809A), + DETAIL_TEXTURE_2D_SGIS = ((int)0x8095), + LINEAR_DETAIL_SGIS = ((int)0x8097), + DETAIL_TEXTURE_FUNC_POINTS_SGIS = ((int)0x809C), + LINEAR_DETAIL_ALPHA_SGIS = ((int)0x8098), LINEAR_DETAIL_COLOR_SGIS = ((int)0x8099), } public enum ARB_multisample { - SAMPLE_COVERAGE_ARB = ((int)0x80A0), - SAMPLE_COVERAGE = ((int)0x80A0), - MULTISAMPLE_BIT_ARB = ((int)0x20000000), - MULTISAMPLE = ((int)0x809D), - SAMPLE_ALPHA_TO_COVERAGE_ARB = ((int)0x809E), - SAMPLE_ALPHA_TO_ONE_ARB = ((int)0x809F), - SAMPLE_BUFFERS_ARB = ((int)0x80A8), - SAMPLE_COVERAGE_INVERT = ((int)0x80AB), - SAMPLES = ((int)0x80A9), + SAMPLE_COVERAGE_VALUE_ARB = ((int)0x80AA), + SAMPLES_ARB = ((int)0x80A9), SAMPLE_BUFFERS = ((int)0x80A8), + SAMPLE_COVERAGE = ((int)0x80A0), MULTISAMPLE_ARB = ((int)0x809D), SAMPLE_ALPHA_TO_COVERAGE = ((int)0x809E), - SAMPLE_COVERAGE_VALUE_ARB = ((int)0x80AA), + SAMPLE_BUFFERS_ARB = ((int)0x80A8), + SAMPLE_COVERAGE_ARB = ((int)0x80A0), SAMPLE_COVERAGE_INVERT_ARB = ((int)0x80AB), - SAMPLES_ARB = ((int)0x80A9), + SAMPLE_COVERAGE_INVERT = ((int)0x80AB), + MULTISAMPLE = ((int)0x809D), + SAMPLE_ALPHA_TO_ONE_ARB = ((int)0x809F), SAMPLE_ALPHA_TO_ONE = ((int)0x809F), + SAMPLES = ((int)0x80A9), + SAMPLE_ALPHA_TO_COVERAGE_ARB = ((int)0x809E), + MULTISAMPLE_BIT_ARB = ((int)0x20000000), SAMPLE_COVERAGE_VALUE = ((int)0x80AA), } public enum SGIS_multisample { - GL_2PASS_1_SGIS = ((int)0x80A3), - SAMPLE_MASK_VALUE_SGIS = ((int)0x80AA), - GL_4PASS_2_SGIS = ((int)0x80A6), - GL_2PASS_0_SGIS = ((int)0x80A2), - GL_1PASS_SGIS = ((int)0x80A1), - SAMPLE_MASK_SGIS = ((int)0x80A0), - GL_4PASS_1_SGIS = ((int)0x80A5), - SAMPLES_SGIS = ((int)0x80A9), - SAMPLE_ALPHA_TO_MASK_SGIS = ((int)0x809E), - GL_4PASS_3_SGIS = ((int)0x80A7), - SAMPLE_MASK_INVERT_SGIS = ((int)0x80AB), - GL_4PASS_0_SGIS = ((int)0x80A4), SAMPLE_PATTERN_SGIS = ((int)0x80AC), + GL_4PASS_0_SGIS = ((int)0x80A4), + GL_4PASS_1_SGIS = ((int)0x80A5), + GL_4PASS_2_SGIS = ((int)0x80A6), + SAMPLES_SGIS = ((int)0x80A9), MULTISAMPLE_SGIS = ((int)0x809D), + GL_4PASS_3_SGIS = ((int)0x80A7), + SAMPLE_MASK_SGIS = ((int)0x80A0), + GL_2PASS_0_SGIS = ((int)0x80A2), + GL_2PASS_1_SGIS = ((int)0x80A3), + SAMPLE_ALPHA_TO_MASK_SGIS = ((int)0x809E), + GL_1PASS_SGIS = ((int)0x80A1), + SAMPLE_MASK_INVERT_SGIS = ((int)0x80AB), SAMPLE_BUFFERS_SGIS = ((int)0x80A8), + SAMPLE_MASK_VALUE_SGIS = ((int)0x80AA), SAMPLE_ALPHA_TO_ONE_SGIS = ((int)0x809F), } public enum SGIS_sharpen_texture { + LINEAR_SHARPEN_SGIS = ((int)0x80AD), + LINEAR_SHARPEN_ALPHA_SGIS = ((int)0x80AE), LINEAR_SHARPEN_COLOR_SGIS = ((int)0x80AF), SHARPEN_TEXTURE_FUNC_POINTS_SGIS = ((int)0x80B0), - LINEAR_SHARPEN_ALPHA_SGIS = ((int)0x80AE), - LINEAR_SHARPEN_SGIS = ((int)0x80AD), } public enum SGI_color_matrix { POST_COLOR_MATRIX_RED_BIAS_SGI = ((int)0x80B8), POST_COLOR_MATRIX_BLUE_BIAS_SGI = ((int)0x80BA), - POST_COLOR_MATRIX_GREEN_SCALE = ((int)0x80B5), + COLOR_MATRIX_SGI = ((int)0x80B1), POST_COLOR_MATRIX_BLUE_SCALE_SGI = ((int)0x80B6), - COLOR_MATRIX_STACK_DEPTH = ((int)0x80B2), - POST_COLOR_MATRIX_RED_SCALE = ((int)0x80B4), - POST_COLOR_MATRIX_RED_SCALE_SGI = ((int)0x80B4), - POST_COLOR_MATRIX_BLUE_BIAS = ((int)0x80BA), - POST_COLOR_MATRIX_ALPHA_SCALE_SGI = ((int)0x80B7), - COLOR_MATRIX = ((int)0x80B1), + POST_COLOR_MATRIX_GREEN_BIAS = ((int)0x80B9), + POST_COLOR_MATRIX_BLUE_SCALE = ((int)0x80B6), POST_COLOR_MATRIX_ALPHA_BIAS_SGI = ((int)0x80BB), COLOR_MATRIX_STACK_DEPTH_SGI = ((int)0x80B2), - MAX_COLOR_MATRIX_STACK_DEPTH_SGI = ((int)0x80B3), - POST_COLOR_MATRIX_RED_BIAS = ((int)0x80B8), POST_COLOR_MATRIX_GREEN_BIAS_SGI = ((int)0x80B9), - POST_COLOR_MATRIX_GREEN_SCALE_SGI = ((int)0x80B5), - POST_COLOR_MATRIX_GREEN_BIAS = ((int)0x80B9), - MAX_COLOR_MATRIX_STACK_DEPTH = ((int)0x80B3), - POST_COLOR_MATRIX_BLUE_SCALE = ((int)0x80B6), + POST_COLOR_MATRIX_ALPHA_SCALE_SGI = ((int)0x80B7), + POST_COLOR_MATRIX_GREEN_SCALE = ((int)0x80B5), + POST_COLOR_MATRIX_RED_BIAS = ((int)0x80B8), + MAX_COLOR_MATRIX_STACK_DEPTH_SGI = ((int)0x80B3), POST_COLOR_MATRIX_ALPHA_SCALE = ((int)0x80B7), + COLOR_MATRIX_STACK_DEPTH = ((int)0x80B2), + POST_COLOR_MATRIX_BLUE_BIAS = ((int)0x80BA), + COLOR_MATRIX = ((int)0x80B1), + POST_COLOR_MATRIX_GREEN_SCALE_SGI = ((int)0x80B5), + POST_COLOR_MATRIX_RED_SCALE = ((int)0x80B4), + MAX_COLOR_MATRIX_STACK_DEPTH = ((int)0x80B3), POST_COLOR_MATRIX_ALPHA_BIAS = ((int)0x80BB), - COLOR_MATRIX_SGI = ((int)0x80B1), + POST_COLOR_MATRIX_RED_SCALE_SGI = ((int)0x80B4), } public enum SGI_texture_color_table @@ -2078,151 +2078,151 @@ namespace OpenTK.OpenGL public enum SGI_color_table { - PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)0x80D5), - COLOR_TABLE_BLUE_SIZE = ((int)0x80DC), - COLOR_TABLE_RED_SIZE_SGI = ((int)0x80DA), - COLOR_TABLE_INTENSITY_SIZE_SGI = ((int)0x80DF), - COLOR_TABLE_BIAS = ((int)0x80D7), - COLOR_TABLE_FORMAT_SGI = ((int)0x80D8), - COLOR_TABLE_ALPHA_SIZE = ((int)0x80DD), - COLOR_TABLE_GREEN_SIZE = ((int)0x80DB), COLOR_TABLE_SGI = ((int)0x80D0), - COLOR_TABLE_INTENSITY_SIZE = ((int)0x80DF), - PROXY_POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D4), - COLOR_TABLE_WIDTH_SGI = ((int)0x80D9), - COLOR_TABLE_GREEN_SIZE_SGI = ((int)0x80DB), - PROXY_POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D5), - COLOR_TABLE_BLUE_SIZE_SGI = ((int)0x80DC), - POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)0x80D1), - COLOR_TABLE_FORMAT = ((int)0x80D8), - PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)0x80D4), - COLOR_TABLE_LUMINANCE_SIZE = ((int)0x80DE), - PROXY_COLOR_TABLE = ((int)0x80D3), - COLOR_TABLE_LUMINANCE_SIZE_SGI = ((int)0x80DE), - COLOR_TABLE = ((int)0x80D0), - PROXY_COLOR_TABLE_SGI = ((int)0x80D3), - COLOR_TABLE_RED_SIZE = ((int)0x80DA), - COLOR_TABLE_BIAS_SGI = ((int)0x80D7), - POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)0x80D2), - COLOR_TABLE_WIDTH = ((int)0x80D9), - POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D2), - COLOR_TABLE_ALPHA_SIZE_SGI = ((int)0x80DD), + COLOR_TABLE_FORMAT_SGI = ((int)0x80D8), COLOR_TABLE_SCALE = ((int)0x80D6), COLOR_TABLE_SCALE_SGI = ((int)0x80D6), + PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)0x80D5), + COLOR_TABLE_INTENSITY_SIZE_SGI = ((int)0x80DF), + COLOR_TABLE_WIDTH_SGI = ((int)0x80D9), + COLOR_TABLE_BIAS = ((int)0x80D7), + COLOR_TABLE_BLUE_SIZE = ((int)0x80DC), + POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D2), + COLOR_TABLE_FORMAT = ((int)0x80D8), + PROXY_POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D5), + PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)0x80D4), + PROXY_COLOR_TABLE_SGI = ((int)0x80D3), + COLOR_TABLE_GREEN_SIZE = ((int)0x80DB), + PROXY_COLOR_TABLE = ((int)0x80D3), + COLOR_TABLE_LUMINANCE_SIZE_SGI = ((int)0x80DE), + COLOR_TABLE_ALPHA_SIZE = ((int)0x80DD), POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D1), + COLOR_TABLE_BIAS_SGI = ((int)0x80D7), + COLOR_TABLE_WIDTH = ((int)0x80D9), + POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)0x80D2), + COLOR_TABLE_BLUE_SIZE_SGI = ((int)0x80DC), + COLOR_TABLE = ((int)0x80D0), + PROXY_POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D4), + COLOR_TABLE_RED_SIZE_SGI = ((int)0x80DA), + COLOR_TABLE_LUMINANCE_SIZE = ((int)0x80DE), + POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)0x80D1), + COLOR_TABLE_GREEN_SIZE_SGI = ((int)0x80DB), + COLOR_TABLE_RED_SIZE = ((int)0x80DA), + COLOR_TABLE_INTENSITY_SIZE = ((int)0x80DF), + COLOR_TABLE_ALPHA_SIZE_SGI = ((int)0x80DD), } public enum EXT_bgra { - BGRA_EXT = ((int)0x80E1), - BGR = ((int)0x80E0), BGRA = ((int)0x80E1), BGR_EXT = ((int)0x80E0), + BGRA_EXT = ((int)0x80E1), + BGR = ((int)0x80E0), } public enum VERSION_1_2 { - UNSIGNED_INT_10_10_10_2 = ((int)0x8036), - SMOOTH_LINE_WIDTH_RANGE = ((int)0x0B22), - SEPARATE_SPECULAR_COLOR = ((int)0x81FA), - UNPACK_SKIP_IMAGES = ((int)0x806D), - UNPACK_IMAGE_HEIGHT = ((int)0x806E), - UNSIGNED_SHORT_4_4_4_4 = ((int)0x8033), - BGR = ((int)0x80E0), - SMOOTH_LINE_WIDTH_GRANULARITY = ((int)0x0B23), - TEXTURE_BINDING_3D = ((int)0x806A), - PACK_SKIP_IMAGES = ((int)0x806B), - UNSIGNED_INT_2_10_10_10_REV = ((int)0x8368), - SMOOTH_POINT_SIZE_RANGE = ((int)0x0B12), - UNSIGNED_INT_8_8_8_8 = ((int)0x8035), - LIGHT_MODEL_COLOR_CONTROL = ((int)0x81F8), - BGRA = ((int)0x80E1), - SMOOTH_POINT_SIZE_GRANULARITY = ((int)0x0B13), - MAX_3D_TEXTURE_SIZE = ((int)0x8073), - UNSIGNED_INT_8_8_8_8_REV = ((int)0x8367), - MAX_ELEMENTS_INDICES = ((int)0x80E9), - ALIASED_LINE_WIDTH_RANGE = ((int)0x846E), - UNSIGNED_SHORT_5_6_5 = ((int)0x8363), - PACK_IMAGE_HEIGHT = ((int)0x806C), - MAX_ELEMENTS_VERTICES = ((int)0x80E8), - UNSIGNED_BYTE_3_3_2 = ((int)0x8032), - ALIASED_POINT_SIZE_RANGE = ((int)0x846D), - UNSIGNED_SHORT_4_4_4_4_REV = ((int)0x8365), - UNSIGNED_SHORT_1_5_5_5_REV = ((int)0x8366), - TEXTURE_DEPTH = ((int)0x8071), TEXTURE_BASE_LEVEL = ((int)0x813C), - CLAMP_TO_EDGE = ((int)0x812F), - RESCALE_NORMAL = ((int)0x803A), - TEXTURE_MAX_LOD = ((int)0x813B), UNSIGNED_SHORT_5_6_5_REV = ((int)0x8364), + PACK_IMAGE_HEIGHT = ((int)0x806C), + MAX_ELEMENTS_INDICES = ((int)0x80E9), + UNPACK_SKIP_IMAGES = ((int)0x806D), + LIGHT_MODEL_COLOR_CONTROL = ((int)0x81F8), + UNSIGNED_INT_8_8_8_8_REV = ((int)0x8367), + SMOOTH_LINE_WIDTH_RANGE = ((int)0x0B22), TEXTURE_WRAP_R = ((int)0x8072), + PACK_SKIP_IMAGES = ((int)0x806B), UNSIGNED_BYTE_2_3_3_REV = ((int)0x8362), - UNSIGNED_SHORT_5_5_5_1 = ((int)0x8034), + UNSIGNED_SHORT_5_6_5 = ((int)0x8363), + UNSIGNED_INT_8_8_8_8 = ((int)0x8035), PROXY_TEXTURE_3D = ((int)0x8070), - TEXTURE_3D = ((int)0x806F), + SMOOTH_POINT_SIZE_GRANULARITY = ((int)0x0B13), + UNSIGNED_SHORT_5_5_5_1 = ((int)0x8034), + TEXTURE_MAX_LOD = ((int)0x813B), + UNSIGNED_BYTE_3_3_2 = ((int)0x8032), TEXTURE_MAX_LEVEL = ((int)0x813D), + BGRA = ((int)0x80E1), + SEPARATE_SPECULAR_COLOR = ((int)0x81FA), + ALIASED_POINT_SIZE_RANGE = ((int)0x846D), + SMOOTH_LINE_WIDTH_GRANULARITY = ((int)0x0B23), SINGLE_COLOR = ((int)0x81F9), + RESCALE_NORMAL = ((int)0x803A), + UNSIGNED_INT_10_10_10_2 = ((int)0x8036), + ALIASED_LINE_WIDTH_RANGE = ((int)0x846E), + UNPACK_IMAGE_HEIGHT = ((int)0x806E), + UNSIGNED_SHORT_1_5_5_5_REV = ((int)0x8366), TEXTURE_MIN_LOD = ((int)0x813A), + MAX_3D_TEXTURE_SIZE = ((int)0x8073), + TEXTURE_3D = ((int)0x806F), + SMOOTH_POINT_SIZE_RANGE = ((int)0x0B12), + MAX_ELEMENTS_VERTICES = ((int)0x80E8), + TEXTURE_DEPTH = ((int)0x8071), + UNSIGNED_INT_2_10_10_10_REV = ((int)0x8368), + TEXTURE_BINDING_3D = ((int)0x806A), + UNSIGNED_SHORT_4_4_4_4 = ((int)0x8033), + UNSIGNED_SHORT_4_4_4_4_REV = ((int)0x8365), + BGR = ((int)0x80E0), + CLAMP_TO_EDGE = ((int)0x812F), } public enum SGIS_texture_select { - DUAL_LUMINANCE12_SGIS = ((int)0x8116), - DUAL_ALPHA12_SGIS = ((int)0x8112), - QUAD_ALPHA8_SGIS = ((int)0x811F), - QUAD_TEXTURE_SELECT_SGIS = ((int)0x8125), - DUAL_LUMINANCE8_SGIS = ((int)0x8115), - DUAL_INTENSITY4_SGIS = ((int)0x8118), - DUAL_ALPHA8_SGIS = ((int)0x8111), - QUAD_INTENSITY4_SGIS = ((int)0x8122), - DUAL_LUMINANCE16_SGIS = ((int)0x8117), - QUAD_LUMINANCE8_SGIS = ((int)0x8121), - DUAL_LUMINANCE4_SGIS = ((int)0x8114), - QUAD_LUMINANCE4_SGIS = ((int)0x8120), - DUAL_ALPHA4_SGIS = ((int)0x8110), DUAL_ALPHA16_SGIS = ((int)0x8113), - DUAL_INTENSITY16_SGIS = ((int)0x811B), - DUAL_LUMINANCE_ALPHA8_SGIS = ((int)0x811D), - QUAD_ALPHA4_SGIS = ((int)0x811E), + QUAD_ALPHA8_SGIS = ((int)0x811F), DUAL_LUMINANCE_ALPHA4_SGIS = ((int)0x811C), - DUAL_TEXTURE_SELECT_SGIS = ((int)0x8124), - DUAL_INTENSITY8_SGIS = ((int)0x8119), - DUAL_INTENSITY12_SGIS = ((int)0x811A), + DUAL_LUMINANCE12_SGIS = ((int)0x8116), + DUAL_ALPHA4_SGIS = ((int)0x8110), + QUAD_TEXTURE_SELECT_SGIS = ((int)0x8125), + DUAL_ALPHA12_SGIS = ((int)0x8112), + QUAD_INTENSITY4_SGIS = ((int)0x8122), + DUAL_INTENSITY16_SGIS = ((int)0x811B), + DUAL_INTENSITY4_SGIS = ((int)0x8118), + DUAL_LUMINANCE4_SGIS = ((int)0x8114), QUAD_INTENSITY8_SGIS = ((int)0x8123), + DUAL_LUMINANCE16_SGIS = ((int)0x8117), + DUAL_LUMINANCE8_SGIS = ((int)0x8115), + QUAD_LUMINANCE8_SGIS = ((int)0x8121), + DUAL_TEXTURE_SELECT_SGIS = ((int)0x8124), + DUAL_ALPHA8_SGIS = ((int)0x8111), + DUAL_INTENSITY12_SGIS = ((int)0x811A), + DUAL_LUMINANCE_ALPHA8_SGIS = ((int)0x811D), + QUAD_LUMINANCE4_SGIS = ((int)0x8120), + DUAL_INTENSITY8_SGIS = ((int)0x8119), + QUAD_ALPHA4_SGIS = ((int)0x811E), } public enum SGIS_point_parameters { - POINT_SIZE_MIN_EXT = ((int)0x8126), - POINT_SIZE_MIN = ((int)0x8126), - POINT_DISTANCE_ATTENUATION_ARB = ((int)0x8129), - POINT_SIZE_MAX_SGIS = ((int)0x8127), - POINT_FADE_THRESHOLD_SIZE_ARB = ((int)0x8128), - POINT_FADE_THRESHOLD_SIZE = ((int)0x8128), - POINT_DISTANCE_ATTENUATION = ((int)0x8129), - POINT_SIZE_MAX = ((int)0x8127), - POINT_SIZE_MAX_ARB = ((int)0x8127), - POINT_FADE_THRESHOLD_SIZE_SGIS = ((int)0x8128), - DISTANCE_ATTENUATION_SGIS = ((int)0x8129), - POINT_SIZE_MIN_ARB = ((int)0x8126), - POINT_FADE_THRESHOLD_SIZE_EXT = ((int)0x8128), - POINT_SIZE_MAX_EXT = ((int)0x8127), - DISTANCE_ATTENUATION_EXT = ((int)0x8129), POINT_SIZE_MIN_SGIS = ((int)0x8126), + POINT_SIZE_MAX_SGIS = ((int)0x8127), + POINT_DISTANCE_ATTENUATION = ((int)0x8129), + DISTANCE_ATTENUATION_EXT = ((int)0x8129), + POINT_FADE_THRESHOLD_SIZE = ((int)0x8128), + POINT_FADE_THRESHOLD_SIZE_SGIS = ((int)0x8128), + POINT_SIZE_MIN_EXT = ((int)0x8126), + POINT_SIZE_MAX = ((int)0x8127), + POINT_DISTANCE_ATTENUATION_ARB = ((int)0x8129), + POINT_SIZE_MIN = ((int)0x8126), + POINT_FADE_THRESHOLD_SIZE_EXT = ((int)0x8128), + DISTANCE_ATTENUATION_SGIS = ((int)0x8129), + POINT_SIZE_MAX_EXT = ((int)0x8127), + POINT_FADE_THRESHOLD_SIZE_ARB = ((int)0x8128), + POINT_SIZE_MAX_ARB = ((int)0x8127), + POINT_SIZE_MIN_ARB = ((int)0x8126), } public enum SGIS_fog_function { + FOG_FUNC_POINTS_SGIS = ((int)0x812B), MAX_FOG_FUNC_POINTS_SGIS = ((int)0x812C), FOG_FUNC_SGIS = ((int)0x812A), - FOG_FUNC_POINTS_SGIS = ((int)0x812B), } public enum SGIS_texture_border_clamp { CLAMP_TO_BORDER_SGIS = ((int)0x812D), - CLAMP_TO_BORDER = ((int)0x812D), CLAMP_TO_BORDER_ARB = ((int)0x812D), + CLAMP_TO_BORDER = ((int)0x812D), } public enum SGIX_texture_multi_buffer @@ -2238,46 +2238,46 @@ namespace OpenTK.OpenGL public enum SGIS_texture4D { - UNPACK_IMAGE_DEPTH_SGIS = ((int)0x8133), + TEXTURE_4D_BINDING_SGIS = ((int)0x814F), + PACK_IMAGE_DEPTH_SGIS = ((int)0x8131), MAX_4D_TEXTURE_SIZE_SGIS = ((int)0x8138), PACK_SKIP_VOLUMES_SGIS = ((int)0x8130), - PROXY_TEXTURE_4D_SGIS = ((int)0x8135), - TEXTURE_4D_BINDING_SGIS = ((int)0x814F), - UNPACK_SKIP_VOLUMES_SGIS = ((int)0x8132), TEXTURE_4D_SGIS = ((int)0x8134), + PROXY_TEXTURE_4D_SGIS = ((int)0x8135), + UNPACK_IMAGE_DEPTH_SGIS = ((int)0x8133), + UNPACK_SKIP_VOLUMES_SGIS = ((int)0x8132), TEXTURE_4DSIZE_SGIS = ((int)0x8136), - PACK_IMAGE_DEPTH_SGIS = ((int)0x8131), TEXTURE_WRAP_Q_SGIS = ((int)0x8137), } public enum SGIX_pixel_texture { - PIXEL_TEX_GEN_MODE_SGIX = ((int)0x832B), PIXEL_TEX_GEN_SGIX = ((int)0x8139), + PIXEL_TEX_GEN_MODE_SGIX = ((int)0x832B), } public enum SGIS_texture_lod { - TEXTURE_MAX_LOD = ((int)0x813B), TEXTURE_MAX_LOD_SGIS = ((int)0x813B), - TEXTURE_MIN_LOD = ((int)0x813A), TEXTURE_MAX_LEVEL = ((int)0x813D), - TEXTURE_BASE_LEVEL = ((int)0x813C), TEXTURE_BASE_LEVEL_SGIS = ((int)0x813C), TEXTURE_MIN_LOD_SGIS = ((int)0x813A), + TEXTURE_MIN_LOD = ((int)0x813A), + TEXTURE_MAX_LOD = ((int)0x813B), + TEXTURE_BASE_LEVEL = ((int)0x813C), TEXTURE_MAX_LEVEL_SGIS = ((int)0x813D), } public enum SGIX_pixel_tiles { - PIXEL_TILE_CACHE_SIZE_SGIX = ((int)0x8145), - PIXEL_TILE_HEIGHT_SGIX = ((int)0x8141), - PIXEL_TILE_WIDTH_SGIX = ((int)0x8140), - PIXEL_TILE_BEST_ALIGNMENT_SGIX = ((int)0x813E), - PIXEL_TILE_GRID_HEIGHT_SGIX = ((int)0x8143), - PIXEL_TILE_GRID_DEPTH_SGIX = ((int)0x8144), - PIXEL_TILE_GRID_WIDTH_SGIX = ((int)0x8142), PIXEL_TILE_CACHE_INCREMENT_SGIX = ((int)0x813F), + PIXEL_TILE_GRID_WIDTH_SGIX = ((int)0x8142), + PIXEL_TILE_GRID_HEIGHT_SGIX = ((int)0x8143), + PIXEL_TILE_HEIGHT_SGIX = ((int)0x8141), + PIXEL_TILE_CACHE_SIZE_SGIX = ((int)0x8145), + PIXEL_TILE_BEST_ALIGNMENT_SGIX = ((int)0x813E), + PIXEL_TILE_GRID_DEPTH_SGIX = ((int)0x8144), + PIXEL_TILE_WIDTH_SGIX = ((int)0x8140), } public enum SGIS_texture_filter4 @@ -2288,40 +2288,40 @@ namespace OpenTK.OpenGL public enum SGIX_sprite { - SPRITE_OBJECT_ALIGNED_SGIX = ((int)0x814D), SPRITE_SGIX = ((int)0x8148), SPRITE_MODE_SGIX = ((int)0x8149), - SPRITE_EYE_ALIGNED_SGIX = ((int)0x814E), - SPRITE_AXIAL_SGIX = ((int)0x814C), SPRITE_TRANSLATION_SGIX = ((int)0x814B), SPRITE_AXIS_SGIX = ((int)0x814A), + SPRITE_AXIAL_SGIX = ((int)0x814C), + SPRITE_OBJECT_ALIGNED_SGIX = ((int)0x814D), + SPRITE_EYE_ALIGNED_SGIX = ((int)0x814E), } public enum HP_convolution_border_modes { - REPLICATE_BORDER_HP = ((int)0x8153), - CONSTANT_BORDER = ((int)0x8151), - CONVOLUTION_BORDER_COLOR_HP = ((int)0x8154), IGNORE_BORDER_HP = ((int)0x8150), CONVOLUTION_BORDER_COLOR = ((int)0x8154), - REPLICATE_BORDER = ((int)0x8153), + CONVOLUTION_BORDER_COLOR_HP = ((int)0x8154), + REPLICATE_BORDER_HP = ((int)0x8153), + CONSTANT_BORDER = ((int)0x8151), CONSTANT_BORDER_HP = ((int)0x8151), + REPLICATE_BORDER = ((int)0x8153), } public enum SGIX_clipmap { - MAX_CLIPMAP_DEPTH_SGIX = ((int)0x8177), - TEXTURE_CLIPMAP_DEPTH_SGIX = ((int)0x8176), + TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = ((int)0x8175), NEAREST_CLIPMAP_LINEAR_SGIX = ((int)0x844E), - TEXTURE_CLIPMAP_OFFSET_SGIX = ((int)0x8173), - NEAREST_CLIPMAP_NEAREST_SGIX = ((int)0x844D), LINEAR_CLIPMAP_LINEAR_SGIX = ((int)0x8170), - TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)0x8174), TEXTURE_CLIPMAP_FRAME_SGIX = ((int)0x8172), + NEAREST_CLIPMAP_NEAREST_SGIX = ((int)0x844D), + TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)0x8174), + MAX_CLIPMAP_DEPTH_SGIX = ((int)0x8177), + TEXTURE_CLIPMAP_OFFSET_SGIX = ((int)0x8173), + TEXTURE_CLIPMAP_DEPTH_SGIX = ((int)0x8176), TEXTURE_CLIPMAP_CENTER_SGIX = ((int)0x8171), LINEAR_CLIPMAP_NEAREST_SGIX = ((int)0x844F), MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)0x8178), - TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = ((int)0x8175), } public enum SGIX_texture_scale_bias @@ -2361,39 +2361,39 @@ namespace OpenTK.OpenGL public enum SGIX_impact_pixel_texture { + PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX = ((int)0x8188), PIXEL_TEX_GEN_Q_ROUND_SGIX = ((int)0x8185), PIXEL_TEX_GEN_Q_CEILING_SGIX = ((int)0x8184), + PIXEL_TEX_GEN_Q_FLOOR_SGIX = ((int)0x8186), + PIXEL_TEX_GEN_ALPHA_MS_SGIX = ((int)0x818A), PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX = ((int)0x8187), PIXEL_TEX_GEN_ALPHA_LS_SGIX = ((int)0x8189), - PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX = ((int)0x8188), - PIXEL_TEX_GEN_ALPHA_MS_SGIX = ((int)0x818A), - PIXEL_TEX_GEN_Q_FLOOR_SGIX = ((int)0x8186), } public enum SGIX_framezoom { FRAMEZOOM_FACTOR_SGIX = ((int)0x818C), - FRAMEZOOM_SGIX = ((int)0x818B), MAX_FRAMEZOOM_FACTOR_SGIX = ((int)0x818D), + FRAMEZOOM_SGIX = ((int)0x818B), } public enum SGIX_texture_lod_bias { TEXTURE_LOD_BIAS_R_SGIX = ((int)0x8190), - TEXTURE_LOD_BIAS_T_SGIX = ((int)0x818F), TEXTURE_LOD_BIAS_S_SGIX = ((int)0x818E), + TEXTURE_LOD_BIAS_T_SGIX = ((int)0x818F), } public enum SGIS_generate_mipmap { - GENERATE_MIPMAP_SGIS = ((int)0x8191), - DEFORMATIONS_MASK_SGIX = ((int)0x8196), GENERATE_MIPMAP_HINT = ((int)0x8192), TEXTURE_DEFORMATION_SGIX = ((int)0x8195), GENERATE_MIPMAP = ((int)0x8191), GEOMETRY_DEFORMATION_SGIX = ((int)0x8194), - MAX_DEFORMATION_ORDER_SGIX = ((int)0x8197), GENERATE_MIPMAP_HINT_SGIS = ((int)0x8192), + GENERATE_MIPMAP_SGIS = ((int)0x8191), + DEFORMATIONS_MASK_SGIX = ((int)0x8196), + MAX_DEFORMATION_ORDER_SGIX = ((int)0x8197), } public enum SGIX_fog_offset @@ -2404,26 +2404,26 @@ namespace OpenTK.OpenGL public enum SGIX_shadow { - TEXTURE_GEQUAL_R_SGIX = ((int)0x819D), - TEXTURE_COMPARE_OPERATOR_SGIX = ((int)0x819B), TEXTURE_LEQUAL_R_SGIX = ((int)0x819C), TEXTURE_COMPARE_SGIX = ((int)0x819A), + TEXTURE_COMPARE_OPERATOR_SGIX = ((int)0x819B), + TEXTURE_GEQUAL_R_SGIX = ((int)0x819D), } public enum SGIX_depth_texture { - DEPTH_COMPONENT24_SGIX = ((int)0x81A6), - DEPTH_COMPONENT24 = ((int)0x81A6), - DEPTH_COMPONENT32 = ((int)0x81A7), DEPTH_COMPONENT16_SGIX = ((int)0x81A5), DEPTH_COMPONENT32_SGIX = ((int)0x81A7), DEPTH_COMPONENT16 = ((int)0x81A5), + DEPTH_COMPONENT24 = ((int)0x81A6), + DEPTH_COMPONENT24_SGIX = ((int)0x81A6), + DEPTH_COMPONENT32 = ((int)0x81A7), } public enum SGIX_ycrcb { - YCRCB_444_SGIX = ((int)0x81BC), YCRCB_422_SGIX = ((int)0x81BB), + YCRCB_444_SGIX = ((int)0x81BC), } public enum SGIS_texture_color_mask @@ -2433,24 +2433,24 @@ namespace OpenTK.OpenGL public enum SGIS_point_line_texgen { - OBJECT_DISTANCE_TO_POINT_SGIS = ((int)0x81F1), - OBJECT_LINE_SGIS = ((int)0x81F7), - OBJECT_DISTANCE_TO_LINE_SGIS = ((int)0x81F3), EYE_DISTANCE_TO_LINE_SGIS = ((int)0x81F2), - EYE_POINT_SGIS = ((int)0x81F4), - OBJECT_POINT_SGIS = ((int)0x81F5), EYE_LINE_SGIS = ((int)0x81F6), + OBJECT_LINE_SGIS = ((int)0x81F7), + OBJECT_POINT_SGIS = ((int)0x81F5), + OBJECT_DISTANCE_TO_POINT_SGIS = ((int)0x81F1), + EYE_POINT_SGIS = ((int)0x81F4), + OBJECT_DISTANCE_TO_LINE_SGIS = ((int)0x81F3), EYE_DISTANCE_TO_POINT_SGIS = ((int)0x81F0), } public enum EXT_separate_specular_color { - SINGLE_COLOR = ((int)0x81F9), - SEPARATE_SPECULAR_COLOR = ((int)0x81FA), + SINGLE_COLOR_EXT = ((int)0x81F9), LIGHT_MODEL_COLOR_CONTROL = ((int)0x81F8), SEPARATE_SPECULAR_COLOR_EXT = ((int)0x81FA), LIGHT_MODEL_COLOR_CONTROL_EXT = ((int)0x81F8), - SINGLE_COLOR_EXT = ((int)0x81F9), + SEPARATE_SPECULAR_COLOR = ((int)0x81FA), + SINGLE_COLOR = ((int)0x81F9), } public enum EXT_shared_texture_palette @@ -2465,54 +2465,54 @@ namespace OpenTK.OpenGL public enum SGIX_blend_alpha_minmax { - ASYNC_MARKER_SGIX = ((int)0x8329), ALPHA_MAX_SGIX = ((int)0x8321), + ASYNC_MARKER_SGIX = ((int)0x8329), ALPHA_MIN_SGIX = ((int)0x8320), } public enum SGIX_async_histogram { - ASYNC_HISTOGRAM_SGIX = ((int)0x832C), MAX_ASYNC_HISTOGRAM_SGIX = ((int)0x832D), + ASYNC_HISTOGRAM_SGIX = ((int)0x832C), } public enum EXT_pixel_transform { - MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = ((int)0x8337), - PIXEL_TRANSFORM_2D_MATRIX_EXT = ((int)0x8338), PIXEL_MIN_FILTER_EXT = ((int)0x8332), - PIXEL_MAG_FILTER_EXT = ((int)0x8331), - CUBIC_EXT = ((int)0x8334), - AVERAGE_EXT = ((int)0x8335), - PIXEL_CUBIC_WEIGHT_EXT = ((int)0x8333), - PIXEL_TRANSFORM_2D_EXT = ((int)0x8330), PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = ((int)0x8336), + PIXEL_TRANSFORM_2D_EXT = ((int)0x8330), + MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = ((int)0x8337), + CUBIC_EXT = ((int)0x8334), + PIXEL_CUBIC_WEIGHT_EXT = ((int)0x8333), + AVERAGE_EXT = ((int)0x8335), + PIXEL_TRANSFORM_2D_MATRIX_EXT = ((int)0x8338), + PIXEL_MAG_FILTER_EXT = ((int)0x8331), } public enum SGIS_pixel_texture { - PIXEL_GROUP_COLOR_SGIS = ((int)0x8356), - PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS = ((int)0x8355), PIXEL_FRAGMENT_RGB_SOURCE_SGIS = ((int)0x8354), PIXEL_TEXTURE_SGIS = ((int)0x8353), + PIXEL_GROUP_COLOR_SGIS = ((int)0x8356), + PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS = ((int)0x8355), } public enum SGIX_async_pixel { - MAX_ASYNC_TEX_IMAGE_SGIX = ((int)0x835F), ASYNC_TEX_IMAGE_SGIX = ((int)0x835C), - MAX_ASYNC_READ_PIXELS_SGIX = ((int)0x8361), - MAX_ASYNC_DRAW_PIXELS_SGIX = ((int)0x8360), + MAX_ASYNC_TEX_IMAGE_SGIX = ((int)0x835F), ASYNC_DRAW_PIXELS_SGIX = ((int)0x835D), ASYNC_READ_PIXELS_SGIX = ((int)0x835E), + MAX_ASYNC_DRAW_PIXELS_SGIX = ((int)0x8360), + MAX_ASYNC_READ_PIXELS_SGIX = ((int)0x8361), } public enum SGIX_texture_coordinate_clamp { - TEXTURE_MAX_CLAMP_R_SGIX = ((int)0x836B), - TEXTURE_MAX_CLAMP_S_SGIX = ((int)0x8369), - TEXTURE_MAX_CLAMP_T_SGIX = ((int)0x836A), FOG_FACTOR_TO_ALPHA_SGIX = ((int)0x836F), + TEXTURE_MAX_CLAMP_S_SGIX = ((int)0x8369), + TEXTURE_MAX_CLAMP_R_SGIX = ((int)0x836B), + TEXTURE_MAX_CLAMP_T_SGIX = ((int)0x836A), } public enum SGIX_vertex_preclip @@ -2523,3506 +2523,3506 @@ namespace OpenTK.OpenGL public enum EXT_texture_compression_s3tc { - COMPRESSED_RGBA_S3TC_DXT3_EXT = ((int)0x83F2), - COMPRESSED_RGBA_S3TC_DXT5_EXT = ((int)0x83F3), - COMPRESSED_RGBA_S3TC_DXT1_EXT = ((int)0x83F1), COMPRESSED_RGB_S3TC_DXT1_EXT = ((int)0x83F0), + COMPRESSED_RGBA_S3TC_DXT1_EXT = ((int)0x83F1), + COMPRESSED_RGBA_S3TC_DXT5_EXT = ((int)0x83F3), + COMPRESSED_RGBA_S3TC_DXT3_EXT = ((int)0x83F2), } public enum INTEL_parallel_arrays { - TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F8), - PARALLEL_ARRAYS_INTEL = ((int)0x83F4), - COLOR_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F7), VERTEX_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F5), NORMAL_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F6), + COLOR_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F7), + PARALLEL_ARRAYS_INTEL = ((int)0x83F4), + TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F8), } public enum SGIX_fragment_lighting { - FRAGMENT_LIGHT2_SGIX = ((int)0x840E), - FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = ((int)0x8408), FRAGMENT_COLOR_MATERIAL_FACE_SGIX = ((int)0x8402), - FRAGMENT_COLOR_MATERIAL_SGIX = ((int)0x8401), - FRAGMENT_LIGHTING_SGIX = ((int)0x8400), FRAGMENT_LIGHT1_SGIX = ((int)0x840D), - CURRENT_RASTER_NORMAL_SGIX = ((int)0x8406), LIGHT_ENV_MODE_SGIX = ((int)0x8407), + FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = ((int)0x8408), + CURRENT_RASTER_NORMAL_SGIX = ((int)0x8406), FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX = ((int)0x8403), - FRAGMENT_LIGHT4_SGIX = ((int)0x8410), - FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = ((int)0x8409), - MAX_FRAGMENT_LIGHTS_SGIX = ((int)0x8404), - FRAGMENT_LIGHT0_SGIX = ((int)0x840C), - FRAGMENT_LIGHT7_SGIX = ((int)0x8413), FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX = ((int)0x840B), + MAX_FRAGMENT_LIGHTS_SGIX = ((int)0x8404), + FRAGMENT_LIGHT4_SGIX = ((int)0x8410), + FRAGMENT_LIGHT5_SGIX = ((int)0x8411), + FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX = ((int)0x840A), + FRAGMENT_LIGHTING_SGIX = ((int)0x8400), FRAGMENT_LIGHT6_SGIX = ((int)0x8412), MAX_ACTIVE_LIGHTS_SGIX = ((int)0x8405), - FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX = ((int)0x840A), + FRAGMENT_LIGHT2_SGIX = ((int)0x840E), + FRAGMENT_LIGHT0_SGIX = ((int)0x840C), + FRAGMENT_COLOR_MATERIAL_SGIX = ((int)0x8401), FRAGMENT_LIGHT3_SGIX = ((int)0x840F), - FRAGMENT_LIGHT5_SGIX = ((int)0x8411), + FRAGMENT_LIGHT7_SGIX = ((int)0x8413), + FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = ((int)0x8409), } public enum SGIX_resample { - RESAMPLE_REPLICATE_SGIX = ((int)0x842E), UNPACK_RESAMPLE_SGIX = ((int)0x842D), - RESAMPLE_ZERO_FILL_SGIX = ((int)0x842F), RESAMPLE_DECIMATE_SGIX = ((int)0x8430), + RESAMPLE_REPLICATE_SGIX = ((int)0x842E), PACK_RESAMPLE_SGIX = ((int)0x842C), + RESAMPLE_ZERO_FILL_SGIX = ((int)0x842F), } public enum SGIX_subsample { PIXEL_SUBSAMPLE_2424_SGIX = ((int)0x85A3), - PIXEL_SUBSAMPLE_4242_SGIX = ((int)0x85A4), - PIXEL_SUBSAMPLE_4444_SGIX = ((int)0x85A2), PACK_SUBSAMPLE_RATE_SGIX = ((int)0x85A0), + PIXEL_SUBSAMPLE_4444_SGIX = ((int)0x85A2), + PIXEL_SUBSAMPLE_4242_SGIX = ((int)0x85A4), UNPACK_SUBSAMPLE_RATE_SGIX = ((int)0x85A1), } public enum All { - MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT = ((int)0x8DE4), - T4F_V4F = ((int)0x2A28), - ONE_MINUS_DST_COLOR = ((int)0x0307), - ONE_MINUS_SRC_COLOR = ((int)0x0301), - NORMAL_ARRAY = ((int)0x8075), - IDENTITY_NV = ((int)0x862A), - LUMINANCE12_ALPHA4 = ((int)0x8046), - PIXEL_TILE_CACHE_SIZE_SGIX = ((int)0x8145), - MAX_TRANSFORM_FEEDBACK_INTERLEAVED_ATTRIBS_NV = ((int)0x8C8A), - LUMINANCE8_ALPHA8 = ((int)0x8045), - CONSTANT_COLOR0_NV = ((int)0x852A), - MAX_TEXTURE_UNITS_ARB = ((int)0x84E2), - VERTEX_PROGRAM_ARB = ((int)0x8620), - GEOMETRY_INPUT_TYPE_EXT = ((int)0x8DDB), - MAX_GENERAL_COMBINERS_NV = ((int)0x854D), - SRC2_ALPHA = ((int)VERSION_1_3.SOURCE2_ALPHA), - MIRRORED_REPEAT_ARB = ((int)0x8370), - FOG_COORD_ARRAY_TYPE = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_TYPE), - VERTEX_SHADER_LOCALS_EXT = ((int)0x87D3), - DYNAMIC_DRAW = ((int)0x88E8), - PROGRAM_NATIVE_ATTRIBS_ARB = ((int)0x88AE), - LOGIC_OP_MODE = ((int)0x0BF0), - MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8B4C), - CURRENT_VERTEX_EXT = ((int)0x87E2), - FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA4), - MATRIX21_ARB = ((int)0x88D5), - DYNAMIC_READ_ARB = ((int)0x88E9), - SOURCE1_ALPHA = ((int)0x8589), - VERTEX_ATTRIB_ARRAY_ENABLED = ((int)0x8622), - LINEAR_DETAIL_COLOR_SGIS = ((int)0x8099), - SECONDARY_COLOR_ARRAY_STRIDE = ((int)0x845C), - CONSTANT_COLOR1_NV = ((int)0x852B), - PIXEL_TILE_GRID_WIDTH_SGIX = ((int)0x8142), - PROGRAM_POINT_SIZE_EXT = ((int)0x8642), - PREVIOUS = ((int)0x8578), - DITHER = ((int)0x0BD0), - OFFSET_TEXTURE_MATRIX_NV = ((int)0x86E1), - DUAL_INTENSITY8_SGIS = ((int)0x8119), - T4F_C4F_N3F_V4F = ((int)0x2A2D), - TEXTURE_MAX_CLAMP_T_SGIX = ((int)0x836A), - PACK_SUBSAMPLE_RATE_SGIX = ((int)0x85A0), - MAX_TEXTURE_COORDS = ((int)0x8871), - FLOAT_VEC2 = ((int)0x8B50), - ATTRIB_ARRAY_TYPE_NV = ((int)0x8625), - SECONDARY_COLOR_ARRAY_POINTER_EXT = ((int)0x845D), - GL_1PASS_EXT = ((int)0x80A1), - MAX_PROGRAM_ATTRIBS_ARB = ((int)0x88AD), - TEXTURE_WRAP_Q_SGIS = ((int)0x8137), - OUTPUT_TEXTURE_COORD11_EXT = ((int)0x87A8), - EVAL_VERTEX_ATTRIB14_NV = ((int)0x86D4), - SECONDARY_COLOR_ARRAY_BUFFER_BINDING = ((int)0x889C), - SECONDARY_COLOR_ARRAY_EXT = ((int)0x845E), - HINT_BIT = ((int)0x00008000), - INT_VEC3_ARB = ((int)0x8B54), - FRAMEBUFFER_INCOMPLETE_FORMATS_EXT = ((int)0x8CDA), - HISTOGRAM = ((int)0x8024), - VERSION = ((int)0x1F02), - RGB32I_EXT = ((int)0x8D83), - LIGHT0 = ((int)0x4000), - MAX_PROGRAM_LOCAL_PARAMETERS_ARB = ((int)0x88B4), - OP_CLAMP_EXT = ((int)0x878E), - REPLICATE_BORDER = ((int)0x8153), - FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX = ((int)0x8403), - PIXEL_TEX_GEN_SGIX = ((int)0x8139), - REG_22_ATI = ((int)0x8937), - VERTEX_PROGRAM_POINT_SIZE_NV = ((int)0x8642), - UNPACK_CONSTANT_DATA_SUNX = ((int)0x81D5), - TIME_ELAPSED_EXT = ((int)0x88BF), - TEXTURE_LOD_BIAS_S_SGIX = ((int)0x818E), - LOAD = ((int)0x0101), - MULTISAMPLE_BIT_ARB = ((int)0x20000000), - LIST_BASE = ((int)0x0B32), - BUMP_ROT_MATRIX_ATI = ((int)0x8775), - SPECULAR = ((int)0x1202), - LIST_MODE = ((int)0x0B30), - VERTEX_ARRAY_RANGE_NV = ((int)0x851D), - HILO_NV = ((int)0x86F4), - MAX_PROGRAM_LOOP_DEPTH_NV = ((int)0x88F7), - INTENSITY16F_ARB = ((int)0x881D), - INTERPOLATE_EXT = ((int)0x8575), - PIXEL_SUBSAMPLE_2424_SGIX = ((int)0x85A3), - TEXTURE_TOO_LARGE_EXT = ((int)0x8065), - INDEX_ARRAY_LIST_STRIDE_IBM = ((int)103083), - MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB = ((int)0x88A3), - LUMINANCE32F_ARB = ((int)0x8818), - MAX_VARYING_FLOATS = ((int)0x8B4B), - INVERTED_SCREEN_W_REND = ((int)0x8491), - DRAW_BUFFER5 = ((int)0x882A), - FOG_COORDINATE_ARRAY = ((int)0x8457), - LUMINANCE_FLOAT32_ATI = ((int)0x8818), - POST_CONVOLUTION_BLUE_BIAS = ((int)0x8022), - LUMINANCE_ALPHA_INTEGER_EXT = ((int)0x8D9D), - TEXTURE_LOD_BIAS = ((int)0x8501), - VARIABLE_E_NV = ((int)0x8527), - REG_13_ATI = ((int)0x892E), - TRIANGLE_LIST_SUN = ((int)0x81D7), - OBJECT_PLANE = ((int)0x2501), - PIXEL_PACK_BUFFER_EXT = ((int)0x88EB), - VERTEX_ATTRIB_ARRAY_SIZE_ARB = ((int)0x8623), - PASS_THROUGH_NV = ((int)0x86E6), - GL_2PASS_1_SGIS = ((int)0x80A3), - SWIZZLE_STRQ_ATI = ((int)0x897A), - PRESERVE_ATI = ((int)0x8762), - FRAGMENT_SHADER_DERIVATIVE_HINT_ARB = ((int)0x8B8B), - OUTPUT_TEXTURE_COORD3_EXT = ((int)0x87A0), - EVAL_VERTEX_ATTRIB5_NV = ((int)0x86CB), - CLIENT_PIXEL_STORE_BIT = ((int)0x00000001), - VERTEX_STREAM6_ATI = ((int)0x8772), - STATIC_ATI = ((int)0x8760), - REPLACE_OLDEST_SUN = ((int)0x0003), - TEXTURE_DEPTH_EXT = ((int)0x8071), - ALPHA32F_ARB = ((int)0x8816), - PROGRAM_OBJECT_ARB = ((int)0x8B40), - RIGHT = ((int)0x0407), - BOOL_ARB = ((int)0x8B56), - FRAGMENT_PROGRAM_ARB = ((int)0x8804), - MODELVIEW22_ARB = ((int)0x8736), - CONSTANT_COLOR_EXT = ((int)0x8001), - RGB16_EXT = ((int)0x8054), - COMBINER_BIAS_NV = ((int)0x8549), - EVAL_VERTEX_ATTRIB6_NV = ((int)0x86CC), - COMPRESSED_RGBA_S3TC_DXT5_EXT = ((int)0x83F3), - TEXTURE_ENV_BIAS_SGIX = ((int)0x80BE), - PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = ((int)0x8163), - FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX = ((int)0x840A), - CLEAR = ((int)0x1500), - COMPRESSED_SRGB_ALPHA = ((int)0x8C49), - MAP1_VERTEX_ATTRIB6_4_NV = ((int)0x8666), - COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT = ((int)0x8DBE), - UNSIGNED_INT_8_8_8_8 = ((int)0x8035), - DUAL_LUMINANCE12_SGIS = ((int)0x8116), - TEXTURE5_ARB = ((int)0x84C5), - REG_5_ATI = ((int)0x8926), - VERTEX_STREAM3_ATI = ((int)0x876F), - TEXTURE_DEFORMATION_BIT_SGIX = ((int)0x00000001), - TEXTURE17_ARB = ((int)0x84D1), - MODELVIEW15_ARB = ((int)0x872F), - ALPHA_INTEGER_EXT = ((int)0x8D97), - MATRIX25_ARB = ((int)0x88D9), - TEXTURE_DEPTH_TYPE_ARB = ((int)0x8C16), - BLEND_COLOR_EXT = ((int)0x8005), - BUFFER_USAGE = ((int)0x8765), - DRAW_BUFFER8_ARB = ((int)0x882D), - RGB16UI_EXT = ((int)0x8D77), - ACTIVE_STENCIL_FACE_EXT = ((int)0x8911), - BLEND_EQUATION_ALPHA = ((int)0x883D), - REPLACE_MIDDLE_SUN = ((int)0x0002), - CURRENT_TANGENT_EXT = ((int)0x843B), - CLIP_VOLUME_CLIPPING_HINT_EXT = ((int)0x80F0), - PIXEL_TILE_WIDTH_SGIX = ((int)0x8140), - GLOBAL_ALPHA_FACTOR_SUN = ((int)0x81DA), - DRAW_BUFFER11 = ((int)0x8830), - DRAW_BUFFER13 = ((int)0x8832), - INT_SAMPLER_1D_EXT = ((int)0x8DC9), - SRC2_RGB = ((int)VERSION_1_3.SOURCE2_RGB), - ALPHA16UI_EXT = ((int)0x8D78), - RED_MAX_CLAMP_INGR = ((int)0x8564), - EVAL_VERTEX_ATTRIB12_NV = ((int)0x86D2), - TEXTURE_INTENSITY_SIZE = ((int)0x8061), - MAX_LIST_NESTING = ((int)0x0B31), - OUTPUT_TEXTURE_COORD15_EXT = ((int)0x87AC), - COLOR_MATRIX_SGI = ((int)0x80B1), - MATRIX1_ARB = ((int)0x88C1), - OP_NEGATE_EXT = ((int)0x8783), - EVAL_VERTEX_ATTRIB4_NV = ((int)0x86CA), - LIGHT4 = ((int)0x4004), - MAP1_TANGENT_EXT = ((int)0x8444), - CURRENT_RASTER_POSITION = ((int)0x0B07), - IMAGE_CUBIC_WEIGHT_HP = ((int)0x815E), - FORMAT_SUBSAMPLE_24_24_OML = ((int)0x8982), - NUM_COMPRESSED_TEXTURE_FORMATS = ((int)0x86A2), - FRAGMENT_COLOR_EXT = ((int)0x834C), - NEVER = ((int)0x0200), - MODELVIEW25_ARB = ((int)0x8739), - NORMAL_MAP = ((int)0x8511), - DS_BIAS_NV = ((int)0x8716), - UNPACK_IMAGE_DEPTH_SGIS = ((int)0x8133), - EVAL_VERTEX_ATTRIB1_NV = ((int)0x86C7), - NOOP = ((int)0x1505), - MINMAX_FORMAT = ((int)0x802F), - COMPRESSED_SRGB = ((int)0x8C48), - RGB5_A1 = ((int)0x8057), - SOURCE1_RGB_EXT = ((int)0x8581), - FLOAT_MAT4x3 = ((int)0x8B6A), - TEXTURE25_ARB = ((int)0x84D9), - EYE_PLANE_ABSOLUTE_NV = ((int)0x855C), - TEXTURE7_ARB = ((int)0x84C7), - POINT_SIZE_GRANULARITY = ((int)0x0B13), - EYE_DISTANCE_TO_POINT_SGIS = ((int)0x81F0), - VERTEX_WEIGHT_ARRAY_SIZE_EXT = ((int)0x850D), - COLOR_TABLE_FORMAT_SGI = ((int)0x80D8), - COLOR_TABLE_BLUE_SIZE_SGI = ((int)0x80DC), - WEIGHT_ARRAY_ARB = ((int)0x86AD), - COMBINER_AB_DOT_PRODUCT_NV = ((int)0x8545), - TEXTURE30_ARB = ((int)0x84DE), - V3F = ((int)0x2A21), - EVAL_VERTEX_ATTRIB2_NV = ((int)0x86C8), - MAX_PROGRAM_GENERIC_RESULTS_NV = ((int)0x8DA6), - EDGE_FLAG_ARRAY_POINTER = ((int)0x8093), - ALWAYS_FAST_HINT_PGI = ((int)0x1A20C), - TEXCOORD4_BIT_PGI = unchecked((int)0x80000000), - TEXTURE_DEPTH_SIZE_ARB = ((int)0x884A), - DRAW_BUFFER2 = ((int)0x8827), - SAMPLER_2D_RECT_SHADOW_ARB = ((int)0x8B64), - REG_17_ATI = ((int)0x8932), - BLEND_SRC = ((int)0x0BE1), - POLYGON_STIPPLE_BIT = ((int)0x00000010), - TEXTURE_COORD_ARRAY_POINTER = ((int)0x8092), - RGB4_EXT = ((int)0x804F), - FOG_COORD_ARRAY_POINTER = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_POINTER), - PIXEL_FRAGMENT_RGB_SOURCE_SGIS = ((int)0x8354), - SCALE_BY_ONE_HALF_NV = ((int)0x8540), - ALPHA_TEST_FUNC = ((int)0x0BC1), - TEXTURE31 = ((int)0x84DF), - RESAMPLE_REPLICATE_SGIX = ((int)0x842E), - MAX_3D_TEXTURE_SIZE_EXT = ((int)0x8073), - TEXTURE0_ARB = ((int)0x84C0), - IMPLEMENTATION_COLOR_READ_TYPE_OES = ((int)0x8B9A), - SOURCE1_ALPHA_EXT = ((int)0x8589), - EVAL_VERTEX_ATTRIB7_NV = ((int)0x86CD), - REG_12_ATI = ((int)0x892D), - VERTEX_ATTRIB_ARRAY13_NV = ((int)0x865D), - UNSIGNED_NORMALIZED_ARB = ((int)0x8C17), - DRAW_BUFFER10 = ((int)0x882F), - INDEX_ARRAY_TYPE_EXT = ((int)0x8085), - NORMAL_MAP_NV = ((int)0x8511), - FRAMEZOOM_SGIX = ((int)0x818B), - SIGNED_RGBA_NV = ((int)0x86FB), - ELEMENT_ARRAY_TYPE_ATI = ((int)0x8769), - SHADER_OPERATION_NV = ((int)0x86DF), - FRAGMENT_COLOR_MATERIAL_SGIX = ((int)0x8401), - TRANSPOSE_MODELVIEW_MATRIX = ((int)0x84E3), - PIXEL_UNPACK_BUFFER_BINDING = ((int)0x88EF), - SAMPLER_3D_ARB = ((int)0x8B5F), - PIXEL_PACK_BUFFER_BINDING_EXT = ((int)0x88ED), - DONT_CARE = ((int)0x1100), - ALPHA_FLOAT16_ATI = ((int)0x881C), - LINEAR_MIPMAP_LINEAR = ((int)0x2703), - MODELVIEW0_STACK_DEPTH_EXT = ((int)All.MODELVIEW_STACK_DEPTH), - POINT_TOKEN = ((int)0x0701), - COMPRESSED_SRGB_EXT = ((int)0x8C48), - EVAL_VERTEX_ATTRIB0_NV = ((int)0x86C6), - RGB_INTEGER_EXT = ((int)0x8D98), - VERTEX_ATTRIB_ARRAY10_NV = ((int)0x865A), - RGB4 = ((int)0x804F), - MAP2_COLOR_4 = ((int)0x0DB0), - CON_4_ATI = ((int)0x8945), - MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV = ((int)0x8520), - SIGNED_HILO16_NV = ((int)0x86FA), - REPLACEMENT_CODE_ARRAY_STRIDE_SUN = ((int)0x85C2), - NORMAL_ARRAY_LIST_STRIDE_IBM = ((int)103081), - MIRRORED_REPEAT = ((int)0x8370), - COLOR_CLEAR_UNCLAMPED_VALUE_ATI = ((int)0x8835), - COLOR_TABLE_SCALE_SGI = ((int)0x80D6), - REFLECTION_MAP = ((int)0x8512), - PACK_IMAGE_HEIGHT = ((int)0x806C), - AVERAGE_HP = ((int)0x8160), - FLOAT_RGBA32_NV = ((int)0x888B), - MATRIX29_ARB = ((int)0x88DD), - SLUMINANCE_ALPHA = ((int)0x8C44), - MAT_DIFFUSE_BIT_PGI = ((int)0x00400000), - MODELVIEW2_ARB = ((int)0x8722), - COLOR_TABLE_FORMAT = ((int)0x80D8), - STATIC_DRAW_ARB = ((int)0x88E4), - MATRIX31_ARB = ((int)0x88DF), - MAX_CLIP_PLANES = ((int)0x0D32), - POST_COLOR_MATRIX_BLUE_BIAS = ((int)0x80BA), - SMOOTH_LINE_WIDTH_GRANULARITY = ((int)0x0B23), - STENCIL_BACK_FAIL = ((int)0x8801), - LUMINANCE16 = ((int)0x8042), - DOT_PRODUCT_TEXTURE_3D_NV = ((int)0x86EF), - OFFSET_TEXTURE_2D_MATRIX_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_MATRIX_NV), - LUMINANCE_ALPHA8UI_EXT = ((int)0x8D81), - LUMINANCE12 = ((int)0x8041), - PROGRAM_LENGTH_NV = ((int)0x8627), - MATRIX30_ARB = ((int)0x88DE), - INTENSITY4 = ((int)0x804A), - UNSIGNED_BYTE = ((int)0x1401), - BGR_INTEGER_EXT = ((int)0x8D9A), - BOOL_VEC3_ARB = ((int)0x8B58), - SRGB_ALPHA_EXT = ((int)0x8C42), - LOCAL_CONSTANT_VALUE_EXT = ((int)0x87EC), - REG_23_ATI = ((int)0x8938), - OPERAND1_ALPHA_EXT = ((int)0x8599), - BUMP_TARGET_ATI = ((int)0x877C), - COLOR_ATTACHMENT10_EXT = ((int)0x8CEA), - MAP2_BINORMAL_EXT = ((int)0x8447), - ONE_MINUS_CONSTANT_ALPHA = ((int)0x8004), - TEXTURE21_ARB = ((int)0x84D5), - VERTEX_ATTRIB_ARRAY12_NV = ((int)0x865C), - MATRIX23_ARB = ((int)0x88D7), - LUMINANCE8_ALPHA8_EXT = ((int)0x8045), - RGB2_EXT = ((int)0x804E), - EMBOSS_MAP_NV = ((int)0x855F), - BOOL_VEC4_ARB = ((int)0x8B59), - TEXTURE1 = ((int)0x84C1), - OPERAND1_RGB_EXT = ((int)0x8591), - FLOAT_MAT3x2 = ((int)0x8B67), - EDGE_FLAG_ARRAY_BUFFER_BINDING = ((int)0x889B), - LUMINANCE12_ALPHA12 = ((int)0x8047), - RGBA16_EXT = ((int)0x805B), - EVAL_VERTEX_ATTRIB3_NV = ((int)0x86C9), - SCALE_BY_FOUR_NV = ((int)0x853F), - EDGE_FLAG_ARRAY_STRIDE_EXT = ((int)0x808C), - COLOR_ARRAY_EXT = ((int)0x8076), - DISTANCE_ATTENUATION_EXT = ((int)0x8129), - CURRENT_RASTER_INDEX = ((int)0x0B05), - PROGRAM_ATTRIBS_ARB = ((int)0x88AC), - GL_2PASS_0_SGIS = ((int)0x80A2), - BLEND_EQUATION_EXT = ((int)0x8009), - SAMPLE_COVERAGE_ARB = ((int)0x80A0), - COORD_REPLACE_NV = ((int)0x8862), - MAX_VERTEX_UNIFORM_COMPONENTS = ((int)0x8B4A), - SRGB8 = ((int)0x8C41), - COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = ((int)0x8C4E), - ONE_EXT = ((int)0x87DE), - FLOAT_MAT4x2 = ((int)0x8B69), - PROXY_TEXTURE_CUBE_MAP = ((int)0x851B), - TEXTURE_3D_BINDING_EXT = ((int)0x806A), - CONVOLUTION_1D_EXT = ((int)0x8010), - OUTPUT_TEXTURE_COORD22_EXT = ((int)0x87B3), - VERTEX_ATTRIB_ARRAY14_NV = ((int)0x865E), - UNPACK_SKIP_IMAGES_EXT = ((int)0x806D), - TRIANGLE_STRIP_ADJACENCY_EXT = ((int)0x000D), - HALF_BIAS_NEGATE_NV = ((int)0x853B), - INTENSITY32I_EXT = ((int)0x8D85), - TEXTURE6 = ((int)0x84C6), - QUAD_TEXTURE_SELECT_SGIS = ((int)0x8125), - FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT = ((int)0x8D56), - PACK_CMYK_HINT_EXT = ((int)0x800E), - STATIC_COPY_ARB = ((int)0x88E6), - COLOR_ATTACHMENT0_EXT = ((int)0x8CE0), - DRAW_BUFFER3 = ((int)0x8828), - COMPRESSED_INTENSITY = ((int)0x84EC), - BINORMAL_ARRAY_EXT = ((int)0x843A), - COMPRESSED_RGB_S3TC_DXT1_EXT = ((int)0x83F0), - LUMINANCE16_EXT = ((int)0x8042), - OP_SET_LT_EXT = ((int)0x878D), - TEXTURE26 = ((int)0x84DA), - TEXTURE27 = ((int)0x84DB), - TEXTURE4_ARB = ((int)0x84C4), - AND_INVERTED = ((int)0x1504), - TEXTURE22 = ((int)0x84D6), - TEXTURE23 = ((int)0x84D7), - CONVOLUTION_WIDTH_EXT = ((int)0x8018), - TEXTURE21 = ((int)0x84D5), - SOURCE2_RGB_EXT = ((int)0x8582), - REG_16_ATI = ((int)0x8931), - VERTEX_ATTRIB_ARRAY11_NV = ((int)0x865B), - TEXTURE28 = ((int)0x84DC), - TEXTURE29 = ((int)0x84DD), - DRAW_BUFFER1_ARB = ((int)0x8826), - FRAGMENT_DEPTH_EXT = ((int)0x8452), - SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM = ((int)103087), - RGBA32F_ARB = ((int)0x8814), - FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT = ((int)0x8CD9), - BUFFER_MAPPED = ((int)0x88BC), - TEXTURE24 = ((int)0x84D8), - TEXTURE25 = ((int)0x84D9), - TEXTURE20 = ((int)0x84D4), + TEXTURE_BLUE_SIZE = ((int)0x805E), + MATRIX_INDEX_ARRAY_ARB = ((int)0x8844), BLEND_DST_RGB = ((int)0x80C8), - DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV = ((int)0x885D), - GEOMETRY_VERTICES_OUT_EXT = ((int)0x8DDA), - MULTISAMPLE_ARB = ((int)0x809D), - STENCIL_ATTACHMENT_EXT = ((int)0x8D20), - NOR = ((int)0x1508), - FLOAT_R16_NV = ((int)0x8884), - DRAW_BUFFER3_ATI = ((int)0x8828), - SLUMINANCE = ((int)0x8C46), - AUX1 = ((int)0x040A), - EVAL_TRIANGULAR_2D_NV = ((int)0x86C1), - LINE_STIPPLE_PATTERN = ((int)0x0B25), - FLOAT_MAT2x3 = ((int)0x8B65), - CULL_VERTEX_IBM = ((int)103050), - PACK_LSB_FIRST = ((int)0x0D01), - FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT = ((int)0x8CD0), - MODELVIEW6_ARB = ((int)0x8726), - VARIABLE_F_NV = ((int)0x8528), - DRAW_BUFFER2_ARB = ((int)0x8827), - COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT = ((int)0x8C72), - FLOAT_MAT3_ARB = ((int)0x8B5B), - OBJECT_ATTACHED_OBJECTS_ARB = ((int)0x8B85), - GENERATE_MIPMAP = ((int)0x8191), - DRAW_BUFFER7_ATI = ((int)0x882C), - DUAL_ALPHA16_SGIS = ((int)0x8113), - FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB = ((int)0x889D), - DETAIL_TEXTURE_MODE_SGIS = ((int)0x809B), - COMBINER_CD_OUTPUT_NV = ((int)0x854B), - GREEN_BIT_ATI = ((int)0x00000002), - TEXTURE_1D_STACK_MESAX = ((int)0x8759), - EVAL_VERTEX_ATTRIB8_NV = ((int)0x86CE), - VERTEX_ATTRIB_ARRAY_TYPE = ((int)0x8625), - TRACK_MATRIX_TRANSFORM_NV = ((int)0x8649), - TEXTURE_CUBE_MAP_POSITIVE_X_ARB = ((int)0x8515), - UPPER_LEFT = ((int)0x8CA2), - REDUCE = ((int)0x8016), - COLOR_TABLE_INTENSITY_SIZE_SGI = ((int)0x80DF), - MATRIX27_ARB = ((int)0x88DB), - BLEND_SRC_RGB = ((int)0x80C9), - GEQUAL = ((int)0x0206), - TEXTURE_CLIPMAP_CENTER_SGIX = ((int)0x8171), - DOT3_RGBA_ARB = ((int)0x86AF), - DECR_WRAP = ((int)0x8508), - LIGHT_ENV_MODE_SGIX = ((int)0x8407), - VERTEX_CONSISTENT_HINT_PGI = ((int)0x1A22B), - RENDERBUFFER_GREEN_SIZE_EXT = ((int)0x8D51), - TEXTURE_UNSIGNED_REMAP_MODE_NV = ((int)0x888F), - GL_3_BYTES = ((int)0x1408), - LIGHT_MODEL_SPECULAR_VECTOR_APPLE = ((int)0x85B0), - NEAREST = ((int)0x2600), - MIRRORED_REPEAT_IBM = ((int)0x8370), - CURRENT_PALETTE_MATRIX_ARB = ((int)0x8843), - COLOR_TABLE_INTENSITY_SIZE = ((int)0x80DF), - PROXY_TEXTURE_RECTANGLE_ARB = ((int)0x84F7), - REPLACE = ((int)0x1E01), - COLOR_SUM_EXT = ((int)0x8458), - OBJECT_VALIDATE_STATUS_ARB = ((int)0x8B83), - POLYGON_SMOOTH = ((int)0x0B41), - VERTEX_ATTRIB_ARRAY15_NV = ((int)0x865F), - FOG_COORDINATE_SOURCE_EXT = ((int)0x8450), - UNSIGNED_SHORT_8_8_REV_APPLE = ((int)0x85BB), - DUAL_LUMINANCE_ALPHA4_SGIS = ((int)0x811C), - TEXTURE_COMPRESSED_ARB = ((int)0x86A1), - OPERAND0_RGB_EXT = ((int)0x8590), - ALPHA32I_EXT = ((int)0x8D84), - ALPHA4_EXT = ((int)0x803B), - TEXTURE_1D_ARRAY_EXT = ((int)0x8C18), - STENCIL_PASS_DEPTH_FAIL = ((int)0x0B95), - TEXTURE_WIDTH = ((int)0x1000), - CURRENT_MATRIX_STACK_DEPTH_ARB = ((int)0x8640), - UNPACK_SUBSAMPLE_RATE_SGIX = ((int)0x85A1), - T2F_C4UB_V3F = ((int)0x2A29), - SAMPLE_MASK_SGIS = ((int)0x80A0), - UNSIGNED_SHORT_1_5_5_5_REV_EXT = ((int)0x8366), - DT_SCALE_NV = ((int)0x8711), - CLAMP_TO_BORDER = ((int)0x812D), - ACTIVE_VERTEX_UNITS_ARB = ((int)0x86A5), - CLAMP_READ_COLOR_ARB = ((int)0x891C), - MAX_PROJECTION_STACK_DEPTH = ((int)0x0D38), - OUTPUT_TEXTURE_COORD17_EXT = ((int)0x87AE), - TEXTURE_RED_TYPE_ARB = ((int)0x8C10), - VERTEX_ATTRIB_ARRAY_POINTER = ((int)0x8645), - FENCE_CONDITION_NV = ((int)0x84F4), - MAP1_VERTEX_ATTRIB4_4_NV = ((int)0x8664), - STENCIL_BACK_WRITEMASK = ((int)0x8CA5), - PN_TRIANGLES_POINT_MODE_CUBIC_ATI = ((int)0x87F6), - SHADING_LANGUAGE_VERSION_ARB = ((int)0x8B8C), - MODELVIEW11_ARB = ((int)0x872B), - FLOAT_RGB16_NV = ((int)0x8888), - READ_BUFFER = ((int)0x0C02), - CON_16_ATI = ((int)0x8951), - SAMPLER_2D_SHADOW = ((int)0x8B62), - NORMAL_ARRAY_POINTER = ((int)0x808F), - TEXTURE_GEN_T = ((int)0x0C61), - PIXEL_UNPACK_BUFFER_BINDING_ARB = ((int)0x88EF), - REG_9_ATI = ((int)0x892A), - TEXTURE_GEN_Q = ((int)0x0C63), - SAMPLE_PATTERN_EXT = ((int)0x80AC), - EYE_LINE_SGIS = ((int)0x81F6), - IMAGE_ROTATE_ANGLE_HP = ((int)0x8159), - SAMPLES_PASSED = ((int)0x8914), - LINEAR_ATTENUATION = ((int)0x1208), - RECLAIM_MEMORY_HINT_PGI = ((int)0x1A1FE), - ALPHA12 = ((int)0x803D), - MAP_ATTRIB_V_ORDER_NV = ((int)0x86C4), - ALPHA16 = ((int)0x803E), - CON_3_ATI = ((int)0x8944), - BOOL_VEC2_ARB = ((int)0x8B57), - OBJECT_BUFFER_SIZE_ATI = ((int)0x8764), - REG_0_ATI = ((int)0x8921), - PROXY_TEXTURE_3D_EXT = ((int)0x8070), - DEPTH_COMPONENT32 = ((int)0x81A7), - QUAD_STRIP = ((int)0x0008), - MAP1_VERTEX_ATTRIB10_4_NV = ((int)0x866A), - LUMINANCE8UI_EXT = ((int)0x8D80), - FOG_COORD_ARRAY_BUFFER_BINDING = ((int)VERSION_1_5.FOG_COORDINATE_ARRAY_BUFFER_BINDING), - MAX_SPOT_EXPONENT_NV = ((int)0x8505), - UNSIGNED_INT_24_8_NV = ((int)0x84FA), - STENCIL_BACK_FUNC = ((int)0x8800), - STENCIL_BACK_REF = ((int)0x8CA3), - MATRIX_INDEX_ARRAY_POINTER_ARB = ((int)0x8849), - SWIZZLE_STQ_ATI = ((int)0x8977), - SAMPLER_1D_ARB = ((int)0x8B5D), - CALLIGRAPHIC_FRAGMENT_SGIX = ((int)0x8183), - INTERPOLATE_ARB = ((int)0x8575), - SUBTRACT = ((int)0x84E7), - PIXEL_TILE_BEST_ALIGNMENT_SGIX = ((int)0x813E), - LUMINANCE4_EXT = ((int)0x803F), - AUX0 = ((int)0x0409), - VERTEX_ATTRIB_ARRAY4_NV = ((int)0x8654), - MODELVIEW21_ARB = ((int)0x8735), - STENCIL_BACK_FUNC_ATI = ((int)0x8800), - RED_MIN_CLAMP_INGR = ((int)0x8560), - TEXTURE_COORD_ARRAY_POINTER_EXT = ((int)0x8092), - SAMPLE_MASK_EXT = ((int)0x80A0), - SMOOTH_LINE_WIDTH_RANGE = ((int)0x0B22), - TEXTURE_WRAP_R = ((int)0x8072), - MAP2_VERTEX_ATTRIB15_4_NV = ((int)0x867F), - STENCIL_FAIL = ((int)0x0B94), - MODELVIEW1_EXT = ((int)0x850A), - MAX_CONVOLUTION_HEIGHT_EXT = ((int)0x801B), - POINT_SIZE_MIN_ARB = ((int)0x8126), - COLOR_ARRAY_STRIDE = ((int)0x8083), - RGB10 = ((int)0x8052), - MAP1_TEXTURE_COORD_1 = ((int)0x0D93), - RGB16 = ((int)0x8054), - POINT_SPRITE_R_MODE_NV = ((int)0x8863), - TEXTURE_DEPTH_SIZE = ((int)0x884A), - MAX_NAME_STACK_DEPTH = ((int)0x0D37), - UNIFORM_BUFFER_BINDING_EXT = ((int)0x8DEF), - RGB12 = ((int)0x8053), - RESCALE_NORMAL_EXT = ((int)0x803A), - VERTEX_WEIGHT_ARRAY_TYPE_EXT = ((int)0x850E), - ABGR_EXT = ((int)0x8000), - SAMPLE_ALPHA_TO_ONE_ARB = ((int)0x809F), - MODELVIEW0_ARB = ((int)0x1700), - HISTOGRAM_RED_SIZE = ((int)0x8028), - COMPRESSED_ALPHA = ((int)0x84E9), - HISTOGRAM_LUMINANCE_SIZE = ((int)0x802C), - COLOR_LOGIC_OP = ((int)0x0BF2), - PIXEL_UNPACK_BUFFER = ((int)0x88EC), - TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT = ((int)0x851A), - CURRENT_TEXTURE_COORDS = ((int)0x0B03), - SAMPLE_MASK_INVERT_EXT = ((int)0x80AB), - MAX_MATRIX_PALETTE_STACK_DEPTH_ARB = ((int)0x8841), - TRANSFORM_FEEDBACK_BUFFER_NV = ((int)0x8C8E), - FOG = ((int)0x0B60), - TEXTURE10_ARB = ((int)0x84CA), - SHADOW_AMBIENT_SGIX = ((int)0x80BF), - DU8DV8_ATI = ((int)0x877A), - STATIC_COPY = ((int)0x88E6), - OPERAND2_ALPHA = ((int)0x859A), - INDEX_ARRAY_BUFFER_BINDING = ((int)0x8899), - POINT = ((int)0x1B00), - REG_19_ATI = ((int)0x8934), - CONVOLUTION_FORMAT_EXT = ((int)0x8017), - SIGNED_HILO_NV = ((int)0x86F9), - BLUE_MAX_CLAMP_INGR = ((int)0x8566), - INTENSITY_ICC_SGIX = ((int)SGIX_icc_texture.INTENSITY_ICC_SGIX), - GL_3D_COLOR_TEXTURE = ((int)0x0603), - GENERATE_MIPMAP_HINT_SGIS = ((int)0x8192), - OUTPUT_TEXTURE_COORD21_EXT = ((int)0x87B2), - COMPRESSED_LUMINANCE_ALPHA = ((int)0x84EB), - OUTPUT_TEXTURE_COORD30_EXT = ((int)0x87BB), - POST_CONVOLUTION_ALPHA_SCALE_EXT = ((int)0x801F), - CURRENT_WEIGHT_ARB = ((int)0x86A8), - DEPTH_STENCIL_TO_BGRA_NV = ((int)0x886F), - MAX_PROGRAM_TEX_INSTRUCTIONS_ARB = ((int)0x880C), - CONVOLUTION_HEIGHT = ((int)0x8019), - TABLE_TOO_LARGE = ((int)0x8031), - SAMPLES_3DFX = ((int)0x86B4), - ALPHA4 = ((int)0x803B), - RENDERBUFFER_ALPHA_SIZE_EXT = ((int)0x8D53), - VERTEX_ARRAY_LIST_STRIDE_IBM = ((int)103080), - REFLECTION_MAP_EXT = ((int)0x8512), - FOG_FUNC_SGIS = ((int)0x812A), - R1UI_V3F_SUN = ((int)0x85C4), - RGB_S3TC = ((int)0x83A0), - TEXTURE_MAX_ANISOTROPY_EXT = ((int)0x84FE), - PROGRAM_ATTRIB_COMPONENTS_NV = ((int)0x8906), - CON_31_ATI = ((int)0x8960), - ALIASED_POINT_SIZE_RANGE = ((int)0x846D), - DRAW_BUFFER2_ATI = ((int)0x8827), - COMBINER0_NV = ((int)0x8550), - UNSIGNED_SHORT_8_8_APPLE = ((int)0x85BA), - PRIMITIVE_ID_NV = ((int)0x8C7C), - TEXTURE_CLIPMAP_DEPTH_SGIX = ((int)0x8176), - MAX_EXT = ((int)0x8008), - PIXEL_MODE_BIT = ((int)0x00000020), - FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = ((int)0x8408), - REG_21_ATI = ((int)0x8936), - SEPARATE_ATTRIBS_NV = ((int)0x8C8D), - CLIENT_ACTIVE_TEXTURE = ((int)0x84E1), - SEPARATE_SPECULAR_COLOR_EXT = ((int)0x81FA), - TEXTURE_BUFFER_DATA_STORE_BINDING_EXT = ((int)0x8C2D), - PREFER_DOUBLEBUFFER_HINT_PGI = ((int)0x1A1F8), - HISTOGRAM_ALPHA_SIZE_EXT = ((int)0x802B), - BACK = ((int)0x0405), - RGB12_EXT = ((int)0x8053), - DEPTH_COMPONENT24 = ((int)0x81A6), - MAP1_VERTEX_ATTRIB12_4_NV = ((int)0x866C), - COMPRESSED_RGBA_S3TC_DXT1_EXT = ((int)0x83F1), - IMPLEMENTATION_COLOR_READ_FORMAT_OES = ((int)0x8B9B), - STREAM_COPY_ARB = ((int)0x88E2), - MAP_STENCIL = ((int)0x0D11), - MAP2_VERTEX_ATTRIB2_4_NV = ((int)0x8672), - ELEMENT_ARRAY_BUFFER = ((int)0x8893), - HILO8_NV = ((int)0x885E), - LINEAR_MIPMAP_NEAREST = ((int)0x2701), - FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = ((int)0x8409), - VERTEX_ATTRIB_ARRAY2_NV = ((int)0x8652), - WEIGHT_ARRAY_POINTER_ARB = ((int)0x86AC), - FOG_END = ((int)0x0B64), - OP_INDEX_EXT = ((int)0x8782), - SPRITE_AXIS_SGIX = ((int)0x814A), - MAX_SHININESS_NV = ((int)0x8504), - VERTEX_BLEND_ARB = ((int)0x86A7), - MATRIX19_ARB = ((int)0x88D3), - PROXY_POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D5), - PROXY_POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D4), - CLAMP_VERTEX_COLOR_ARB = ((int)0x891A), - BUMP_TEX_UNITS_ATI = ((int)0x8778), - STENCIL_BACK_PASS_DEPTH_FAIL = ((int)0x8802), - DEPTH = ((int)0x1801), - DEPTH_COMPONENT16_SGIX = ((int)0x81A5), - MAX_PIXEL_MAP_TABLE = ((int)0x0D34), - TEXTURE_COORD_NV = ((int)0x8C79), - LUMINANCE32I_EXT = ((int)0x8D86), - DRAW_FRAMEBUFFER_EXT = ((int)0x8CA9), - COLOR_ATTACHMENT13_EXT = ((int)0x8CED), - COMPRESSED_RGB_ARB = ((int)0x84ED), - INTERLACE_OML = ((int)0x8980), - NUM_FRAGMENT_CONSTANTS_ATI = ((int)0x896F), - MAT_COLOR_INDEXES_BIT_PGI = ((int)0x01000000), - FOG_COORDINATE_ARRAY_POINTER = ((int)0x8456), - POST_CONVOLUTION_BLUE_BIAS_EXT = ((int)0x8022), - INDEX_OFFSET = ((int)0x0D13), - SHADER_OBJECT_ARB = ((int)0x8B48), - CURRENT_QUERY = ((int)0x8865), - HILO16_NV = ((int)0x86F8), - TEXTURE_MATERIAL_PARAMETER_EXT = ((int)0x8352), - FLOAT_RGBA16_NV = ((int)0x888A), - COMBINER_CD_DOT_PRODUCT_NV = ((int)0x8546), - MODELVIEW4_ARB = ((int)0x8724), - BYTE = ((int)0x1400), - OBJECT_DISTANCE_TO_POINT_SGIS = ((int)0x81F1), - DECR_WRAP_EXT = ((int)0x8508), - DOT_PRODUCT_TEXTURE_CUBE_MAP_NV = ((int)0x86F0), - STENCIL_BACK_PASS_DEPTH_PASS = ((int)0x8803), - OPERAND1_ALPHA_ARB = ((int)0x8599), - CON_21_ATI = ((int)0x8956), - COLOR_ARRAY = ((int)0x8076), - TEXTURE11_ARB = ((int)0x84CB), - FOG_COLOR = ((int)0x0B66), - COMBINER4_NV = ((int)0x8554), - COMPILE_AND_EXECUTE = ((int)0x1301), - SEPARATE_SPECULAR_COLOR = ((int)0x81FA), - FLOAT_VEC2_ARB = ((int)0x8B50), - OPERAND1_RGB_ARB = ((int)0x8591), - PIXEL_MAP_R_TO_R = ((int)0x0C76), - TEXTURE_LUMINANCE_TYPE_ARB = ((int)0x8C14), - OBJECT_SUBTYPE_ARB = ((int)0x8B4F), - DRAW_BUFFER10_ATI = ((int)0x882F), - TEXTURE_CUBE_MAP_NEGATIVE_X_EXT = ((int)0x8516), - SAMPLE_BUFFERS_EXT = ((int)0x80A8), - PROGRAM_UNDER_NATIVE_LIMITS_ARB = ((int)0x88B6), - IMAGE_TRANSFORM_2D_HP = ((int)0x8161), - VARIABLE_G_NV = ((int)0x8529), - OFFSET_TEXTURE_2D_BIAS_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_BIAS_NV), - COMPILE = ((int)0x1300), - ARRAY_BUFFER_BINDING_ARB = ((int)0x8894), - RENDERBUFFER_DEPTH_SIZE_EXT = ((int)0x8D54), - VERTEX_ARRAY_LIST_IBM = ((int)103070), - COLOR_ATTACHMENT11_EXT = ((int)0x8CEB), - CON_22_ATI = ((int)0x8957), - LUMINANCE_ALPHA16F_ARB = ((int)0x881F), - COMBINER5_NV = ((int)0x8555), - GL_2_BYTES = ((int)0x1407), - ALPHA_MAX_SGIX = ((int)0x8321), - FUNC_REVERSE_SUBTRACT = ((int)0x800B), - PROGRAM_ERROR_POSITION_ARB = ((int)0x864B), - INFO_LOG_LENGTH = ((int)0x8B84), - DOT_PRODUCT_NV = ((int)0x86EC), - OCCLUSION_TEST_HP = ((int)0x8165), - FOG_COORDINATE = ((int)0x8451), - DRAW_BUFFER14_ATI = ((int)0x8833), - EXPAND_NEGATE_NV = ((int)0x8539), - POINT_SMOOTH = ((int)0x0B10), - CLIENT_ATTRIB_STACK_DEPTH = ((int)0x0BB1), - VERTEX_PRECLIP_HINT_SGIX = ((int)0x83EF), - REG_28_ATI = ((int)0x893D), - INT_SAMPLER_3D_EXT = ((int)0x8DCB), - NEGATIVE_Y_EXT = ((int)0x87DA), - RGB8_EXT = ((int)0x8051), - INCR = ((int)0x1E02), - SAMPLE_BUFFERS_SGIS = ((int)0x80A8), - VARIANT_EXT = ((int)0x87C1), - COMBINER2_NV = ((int)0x8552), - ACTIVE_UNIFORM_MAX_LENGTH = ((int)0x8B87), - WRITE_PIXEL_DATA_RANGE_LENGTH_NV = ((int)0x887A), - EQUIV = ((int)0x1509), - READ_PIXEL_DATA_RANGE_NV = ((int)0x8879), - TEXTURE_COMPRESSED_IMAGE_SIZE = ((int)0x86A0), - PROGRAM_NATIVE_PARAMETERS_ARB = ((int)0x88AA), - REG_25_ATI = ((int)0x893A), - VERTEX_ARRAY_TYPE_EXT = ((int)0x807B), - LUMINANCE16_ALPHA16 = ((int)0x8048), - CON_30_ATI = ((int)0x895F), - INT_SAMPLER_2D_EXT = ((int)0x8DCA), - T2F_IUI_N3F_V3F_EXT = ((int)0x81B4), - OUTPUT_TEXTURE_COORD14_EXT = ((int)0x87AB), - COLOR3_BIT_PGI = ((int)0x00010000), - CURRENT_MATRIX_ARB = ((int)0x8641), - MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB = ((int)0x862E), - UNSIGNED_INT_10_10_10_2 = ((int)0x8036), - DRAW_BUFFER11_ATI = ((int)0x8830), - COMBINER3_NV = ((int)0x8553), - ACTIVE_TEXTURE = ((int)0x84E0), - TRUE = ((int)1), - COMBINE = ((int)0x8570), - FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT = ((int)0x8DA8), - MAX_ASYNC_HISTOGRAM_SGIX = ((int)0x832D), - ELEMENT_ARRAY_BUFFER_BINDING_ARB = ((int)0x8895), - FRAGMENT_LIGHT5_SGIX = ((int)0x8411), - MODULATE_SUBTRACT_ATI = ((int)0x8746), - DEPTH32F_STENCIL8_NV = ((int)0x8DAC), - TEXTURE_WRAP_R_EXT = ((int)0x8072), - OUTPUT_TEXTURE_COORD27_EXT = ((int)0x87B8), - UNSIGNED_INT_24_8_EXT = ((int)0x84FA), - MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT = ((int)0x8DDF), - LINE_STRIP_ADJACENCY_EXT = ((int)0x000B), - ALL_COMPLETED_NV = ((int)0x84F2), - CULL_VERTEX_EYE_POSITION_EXT = ((int)0x81AB), - T2F_V3F = ((int)0x2A27), - PHONG_HINT_WIN = ((int)0x80EB), - FLOAT_MAT2 = ((int)0x8B5A), - CULL_FRAGMENT_NV = ((int)0x86E7), - TEXTURE18_ARB = ((int)0x84D2), - EVAL_VERTEX_ATTRIB11_NV = ((int)0x86D1), - GREEN_MAX_CLAMP_INGR = ((int)0x8565), - SCALEBIAS_HINT_SGIX = ((int)0x8322), - BUFFER_MAP_POINTER = ((int)0x88BD), - OUTPUT_TEXTURE_COORD4_EXT = ((int)0x87A1), - OBJECT_BUFFER_USAGE_ATI = ((int)0x8765), - MAX_RENDERBUFFER_SIZE_EXT = ((int)0x84E8), + DONT_CARE = ((int)0x1100), + OP_FRAC_EXT = ((int)0x8789), + SOURCE0_RGB = ((int)0x8580), + MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB = ((int)0x880E), POLYGON_TOKEN = ((int)0x0703), - EDGE_FLAG_ARRAY_LIST_IBM = ((int)103075), - VERTEX_WEIGHTING_EXT = ((int)0x8509), - OR_REVERSE = ((int)0x150B), - MAP2_VERTEX_ATTRIB5_4_NV = ((int)0x8675), - INVARIANT_VALUE_EXT = ((int)0x87EA), - GREEN_BIAS = ((int)0x0D19), - COMBINER_INPUT_NV = ((int)0x8542), - ADD_ATI = ((int)0x8963), - PROXY_TEXTURE_CUBE_MAP_EXT = ((int)0x851B), - BINORMAL_ARRAY_POINTER_EXT = ((int)0x8443), - EXP2 = ((int)0x0801), - DYNAMIC_COPY_ARB = ((int)0x88EA), - MATRIX_INDEX_ARRAY_SIZE_ARB = ((int)0x8846), - PN_TRIANGLES_TESSELATION_LEVEL_ATI = ((int)0x87F4), - WEIGHT_ARRAY_TYPE_ARB = ((int)0x86A9), - RGBA_FLOAT_MODE_ARB = ((int)0x8820), - PROGRAM_TARGET_NV = ((int)0x8646), - STENCIL_INDEX1_EXT = ((int)0x8D46), - SELECTION_BUFFER_POINTER = ((int)0x0DF3), - RGBA8I_EXT = ((int)0x8D8E), - COMBINER6_NV = ((int)0x8556), - FOG_COORD = ((int)VERSION_1_4.FOG_COORDINATE), - OBJECT_TYPE_ARB = ((int)0x8B4E), - POST_COLOR_MATRIX_GREEN_BIAS = ((int)0x80B9), - UNSIGNED_SHORT_4_4_4_4_REV = ((int)0x8365), - GL_3D_COLOR = ((int)0x0602), - ELEMENT_ARRAY_BUFFER_ARB = ((int)0x8893), - COLOR_TABLE_WIDTH = ((int)0x80D9), - INDEX_ARRAY_STRIDE_EXT = ((int)0x8086), - CON_7_ATI = ((int)0x8948), - COMPRESSED_RGB = ((int)0x84ED), - MAP1_BINORMAL_EXT = ((int)0x8446), - RENDERBUFFER_WIDTH_EXT = ((int)0x8D42), - OPERAND0_RGB_ARB = ((int)0x8590), - ACCUM_ALPHA_BITS = ((int)0x0D5B), - TEXTURE_CUBE_MAP = ((int)0x8513), - MAP_TESSELLATION_NV = ((int)0x86C2), - MATRIX9_ARB = ((int)0x88C9), - COMBINER7_NV = ((int)0x8557), - POINT_SIZE_MAX = ((int)0x8127), - LUMINANCE4_ALPHA4 = ((int)0x8043), - COLOR_TABLE_SCALE = ((int)0x80D6), - TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)0x8174), - FENCE_APPLE = ((int)0x8A0B), - OBJECT_POINT_SGIS = ((int)0x81F5), - TEXTURE15_ARB = ((int)0x84CF), - FRAGMENT_LIGHT0_SGIX = ((int)0x840C), - RESCALE_NORMAL = ((int)0x803A), - SIGNED_RGB8_UNSIGNED_ALPHA8_NV = ((int)0x870D), - SWIZZLE_STR_ATI = ((int)0x8976), - TEXTURE16_ARB = ((int)0x84D0), - COMPRESSED_LUMINANCE = ((int)0x84EA), - DEPTH_ATTACHMENT_EXT = ((int)0x8D00), - X_EXT = ((int)0x87D5), - COMPRESSED_SLUMINANCE = ((int)0x8C4A), - DRAW_BUFFER5_ARB = ((int)0x882A), - NORMAL_ARRAY_LIST_IBM = ((int)103071), - WRITE_ONLY_ARB = ((int)0x88B9), - BACK_PRIMARY_COLOR_NV = ((int)0x8C77), - OUTPUT_TEXTURE_COORD24_EXT = ((int)0x87B5), - OP_DOT4_EXT = ((int)0x8785), - TEXTURE1_ARB = ((int)0x84C1), - TEXTURE_STACK_DEPTH = ((int)0x0BA5), - COLOR_ARRAY_TYPE = ((int)0x8082), - PACK_SKIP_ROWS = ((int)0x0D03), - MAX_PROGRAM_MATRICES_ARB = ((int)0x862F), - SIGNED_LUMINANCE_NV = ((int)0x8701), - TRACK_MATRIX_NV = ((int)0x8648), - GENERIC_ATTRIB_NV = ((int)0x8C7D), - CON_17_ATI = ((int)0x8952), - UNPACK_IMAGE_HEIGHT = ((int)0x806E), - GREEN = ((int)0x1904), - RGBA_ICC_SGIX = ((int)SGIX_icc_texture.RGBA_ICC_SGIX), - VERTEX_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA2), - NEGATIVE_Z_EXT = ((int)0x87DB), - POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = ((int)0x8162), + VARIABLE_C_NV = ((int)0x8525), + TRIANGLE_FAN = ((int)0x0006), + MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI = ((int)0x87F1), + TEXTURE2 = ((int)0x84C2), + VERTEX_ARRAY_STRIDE = ((int)0x807C), + SWIZZLE_STRQ_ATI = ((int)0x897A), ALPHA_MIN_SGIX = ((int)0x8320), - CURRENT_RASTER_POSITION_VALID = ((int)0x0B08), - ADD_SIGNED_EXT = ((int)0x8574), - CLAMP_TO_BORDER_SGIS = ((int)0x812D), - CLIP_FAR_HINT_PGI = ((int)0x1A221), - MATRIX_PALETTE_ARB = ((int)0x8840), - SAMPLER_CUBE = ((int)0x8B60), - SIGNED_IDENTITY_NV = ((int)0x853C), - SELECTION_BUFFER_SIZE = ((int)0x0DF4), - GL_4PASS_2_SGIS = ((int)0x80A6), - NORMAL_MAP_EXT = ((int)0x8511), - COMBINER_COMPONENT_USAGE_NV = ((int)0x8544), - PROGRAM_PARAMETERS_ARB = ((int)0x88A8), - CURRENT_BINORMAL_EXT = ((int)0x843C), - R1UI_C4UB_V3F_SUN = ((int)0x85C5), - MODULATE_ADD_ATI = ((int)0x8744), - PIXEL_TEX_GEN_ALPHA_LS_SGIX = ((int)0x8189), - COLOR_INDEX1_EXT = ((int)0x80E2), - HISTOGRAM_EXT = ((int)0x8024), - TEXTURE_DS_SIZE_NV = ((int)0x871D), - INDEX_TEST_FUNC_EXT = ((int)0x81B6), - IMAGE_MIN_FILTER_HP = ((int)0x815D), - TEXTURE14_ARB = ((int)0x84CE), - GL_4PASS_1_EXT = ((int)0x80A5), - COORD_REPLACE_ARB = ((int)0x8862), - SOURCE1_RGB = ((int)0x8581), - MODELVIEW18_ARB = ((int)0x8732), - TEXTURE_MAX_LOD = ((int)0x813B), - CONSTANT_COLOR = ((int)0x8001), - TEXTURE_MIN_FILTER = ((int)0x2801), - MAX_TEXTURE_SIZE = ((int)0x0D33), - AMBIENT = ((int)0x1200), - DEPTH_COMPONENT24_SGIX = ((int)0x81A6), - TEXCOORD1_BIT_PGI = ((int)0x10000000), - CURRENT_MATRIX_INDEX_ARB = ((int)0x8845), - TEXTURE_4DSIZE_SGIS = ((int)0x8136), - PIXEL_MAP_B_TO_B_SIZE = ((int)0x0CB8), - FRAMEBUFFER_SRGB_CAPABLE_EXT = ((int)0x8DBA), - CONSTANT_BORDER = ((int)0x8151), - UNSIGNED_BYTE_3_3_2_EXT = ((int)0x8032), - RESAMPLE_AVERAGE_OML = ((int)0x8988), - TEXTURE_POST_SPECULAR_HP = ((int)0x8168), - FLOAT_RGB32_NV = ((int)0x8889), - PIXEL_MAG_FILTER_EXT = ((int)0x8331), - REG_20_ATI = ((int)0x8935), - PERTURB_EXT = ((int)0x85AE), - MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV = ((int)0x8C80), - PREVIOUS_TEXTURE_INPUT_NV = ((int)0x86E4), - QUADRATIC_ATTENUATION = ((int)0x1209), - RASTER_POSITION_UNCLIPPED_IBM = ((int)0x19262), - MATRIX6_ARB = ((int)0x88C6), - TEXTURE0 = ((int)0x84C0), - COLOR_TABLE_BIAS = ((int)0x80D7), - TEXT_FRAGMENT_SHADER_ATI = ((int)0x8200), - PROGRAM_TEMPORARIES_ARB = ((int)0x88A4), - CONVOLUTION_HEIGHT_EXT = ((int)0x8019), - STENCIL_CLEAR_TAG_VALUE_EXT = ((int)0x88F3), - TEXTURE_BINDING_RECTANGLE_NV = ((int)0x84F6), - SLUMINANCE_EXT = ((int)0x8C46), - MATRIX_MODE = ((int)0x0BA0), - FEEDBACK_BUFFER_TYPE = ((int)0x0DF2), - PIXEL_TEX_GEN_ALPHA_MS_SGIX = ((int)0x818A), - PROXY_HISTOGRAM_EXT = ((int)0x8025), - FLOAT_MAT3x4 = ((int)0x8B68), - MODELVIEW28_ARB = ((int)0x873C), - T2F_IUI_N3F_V2F_EXT = ((int)0x81B3), - FOG_BIT = ((int)0x00000080), - MAX_PROGRAM_ALU_INSTRUCTIONS_ARB = ((int)0x880B), - RGBA32I_EXT = ((int)0x8D82), - ALPHA8_EXT = ((int)0x803C), - FOG_COORDINATE_ARRAY_TYPE = ((int)0x8454), - OP_EXP_BASE_2_EXT = ((int)0x8791), - COMPARE_REF_DEPTH_TO_TEXTURE_EXT = ((int)0x884E), - PIXEL_TILE_HEIGHT_SGIX = ((int)0x8141), - FULL_STIPPLE_HINT_PGI = ((int)0x1A219), - MATRIX5_ARB = ((int)0x88C5), - GREATER = ((int)0x0204), - COLOR_ARRAY_LIST_STRIDE_IBM = ((int)103082), - RETURN = ((int)0x0102), - NUM_COMPRESSED_TEXTURE_FORMATS_ARB = ((int)0x86A2), - TEXTURE13_ARB = ((int)0x84CD), - MAX_EVAL_ORDER = ((int)0x0D30), - STENCIL_TEST_TWO_SIDE_EXT = ((int)0x8910), - MAP2_VERTEX_ATTRIB9_4_NV = ((int)0x8679), - IGNORE_BORDER_HP = ((int)0x8150), - POINT_SIZE_MAX_EXT = ((int)0x8127), - TEXTURE_BASE_LEVEL_SGIS = ((int)0x813C), - SIGNED_LUMINANCE_ALPHA_NV = ((int)0x8703), - PROGRAM_ADDRESS_REGISTERS_ARB = ((int)0x88B0), - READ_PIXEL_DATA_RANGE_LENGTH_NV = ((int)0x887B), - UNSIGNED_INT_VEC4_EXT = ((int)0x8DC8), - TEXTURE_RESIDENT_EXT = ((int)0x8067), - BACK_NORMALS_HINT_PGI = ((int)0x1A223), - REG_27_ATI = ((int)0x893C), - POST_TEXTURE_FILTER_BIAS_RANGE_SGIX = ((int)0x817B), - INTENSITY12_EXT = ((int)0x804C), - LUMINANCE_ALPHA_FLOAT32_ATI = ((int)0x8819), - STREAM_DRAW = ((int)0x88E0), - STENCIL_INDEX = ((int)0x1901), - REG_30_ATI = ((int)0x893F), - DRAW_BUFFER8_ATI = ((int)0x882D), - FILTER4_SGIS = ((int)0x8146), - IUI_N3F_V3F_EXT = ((int)0x81B0), - MAP2_VERTEX_ATTRIB8_4_NV = ((int)0x8678), - TEXTURE_COMPRESSION_HINT = ((int)0x84EF), - COLOR_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F7), - TEXTURE19_ARB = ((int)0x84D3), - PROGRAM_FORMAT_ASCII_ARB = ((int)0x8875), - QUERY_COUNTER_BITS_ARB = ((int)0x8864), - GL_1PASS_SGIS = ((int)0x80A1), - MAX_3D_TEXTURE_SIZE = ((int)0x8073), - YCRCB_SGIX = ((int)0x8318), - TEXTURE_MAG_FILTER = ((int)0x2800), - OR = ((int)0x1507), - VERTEX_ARRAY_RANGE_LENGTH_NV = ((int)0x851E), - TRIANGLE_STRIP = ((int)0x0005), - TRANSPOSE_TEXTURE_MATRIX = ((int)0x84E5), - SAMPLES = ((int)0x80A9), - NORMAL_MAP_ARB = ((int)0x8511), - MULTISAMPLE = ((int)0x809D), - PIXEL_CUBIC_WEIGHT_EXT = ((int)0x8333), - SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB = ((int)0x889C), - SIGNED_INTENSITY8_NV = ((int)0x8708), - HISTOGRAM_WIDTH = ((int)0x8026), - Q = ((int)0x2003), - VERTEX_ATTRIB_ARRAY_STRIDE_ARB = ((int)0x8624), - SIGNED_RGBA8_NV = ((int)0x86FC), - ALPHA_MIN_CLAMP_INGR = ((int)0x8563), - COMPRESSED_SLUMINANCE_EXT = ((int)0x8C4A), - DRAW_BUFFER6_ATI = ((int)0x882B), - FOG_START = ((int)0x0B63), - SLUMINANCE8_EXT = ((int)0x8C47), - SPRITE_OBJECT_ALIGNED_SGIX = ((int)0x814D), - VERTEX_STREAM7_ATI = ((int)0x8773), - POST_COLOR_MATRIX_RED_BIAS_SGI = ((int)0x80B8), - PIXEL_MAP_A_TO_A_SIZE = ((int)0x0CB9), - UNSIGNED_INT_8_8_8_8_REV = ((int)0x8367), - TEXTURE_4D_SGIS = ((int)0x8134), - COMPRESSED_SRGB_S3TC_DXT1_EXT = ((int)0x8C4C), - COMPRESSED_RED_RGTC1_EXT = ((int)0x8DBB), - SAMPLER_CUBE_ARB = ((int)0x8B60), - MATRIX14_ARB = ((int)0x88CE), - DEPENDENT_RGB_TEXTURE_3D_NV = ((int)0x8859), - LUMINANCE_FLOAT16_ATI = ((int)0x881E), - TEXTURE_MAX_CLAMP_S_SGIX = ((int)0x8369), - ZERO_EXT = ((int)0x87DD), - READ_PIXEL_DATA_RANGE_POINTER_NV = ((int)0x887D), - LINK_STATUS = ((int)0x8B82), - OBJECT_DELETE_STATUS_ARB = ((int)0x8B80), - VERTEX_ARRAY_BUFFER_BINDING = ((int)0x8896), - READ_FRAMEBUFFER_BINDING_EXT = ((int)EXT_framebuffer_object.FRAMEBUFFER_BINDING_EXT), - COMBINE_RGB_EXT = ((int)0x8571), - TEXTURE_COORD_ARRAY_SIZE_EXT = ((int)0x8088), - MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT = ((int)0x8DE3), - QUERY_RESULT_AVAILABLE = ((int)0x8867), - CONVOLUTION_FILTER_BIAS_EXT = ((int)0x8015), - MAX_DRAW_BUFFERS_ARB = ((int)0x8824), - MODELVIEW_PROJECTION_NV = ((int)0x8629), - BLEND_EQUATION_ALPHA_EXT = ((int)0x883D), - VERTEX_ARRAY_BINDING_APPLE = ((int)0x85B5), - BLEND_DST_RGB_EXT = ((int)0x80C8), - LIGHT_MODEL_COLOR_CONTROL = ((int)0x81F8), - POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D1), - PACK_RESAMPLE_SGIX = ((int)0x842C), - MAP1_GRID_SEGMENTS = ((int)0x0DD1), - RGBA8UI_EXT = ((int)0x8D7C), - CON_26_ATI = ((int)0x895B), - TEXTURE3 = ((int)0x84C3), + CULL_FACE = ((int)0x0B44), + FLOAT_MAT2 = ((int)0x8B5A), + MATRIX7_ARB = ((int)0x88C7), + POST_CONVOLUTION_GREEN_SCALE = ((int)0x801D), + UNSIGNED_INT_SAMPLER_1D_EXT = ((int)0x8DD1), + PIXEL_MAP_S_TO_S = ((int)0x0C71), + DOT3_RGBA_EXT = ((int)0x8741), + OP_FLOOR_EXT = ((int)0x878F), + LINE_WIDTH = ((int)0x0B21), + ATTRIB_ARRAY_POINTER_NV = ((int)0x8645), SUBTRACT_ARB = ((int)0x84E7), - COMBINER_SUM_OUTPUT_NV = ((int)0x854C), - POLYGON_OFFSET_LINE = ((int)0x2A02), - V2F = ((int)0x2A20), - RGB16F_ARB = ((int)0x881B), - VERTEX_ARRAY_RANGE_LENGTH_APPLE = ((int)0x851E), - DOT_PRODUCT_REFLECT_CUBE_MAP_NV = ((int)0x86F2), - SRC_ALPHA_SATURATE = ((int)0x0308), + MAX_PROGRAM_RESULT_COMPONENTS_NV = ((int)0x8909), + BUFFER_MAPPED_ARB = ((int)0x88BC), + LOWER_LEFT = ((int)0x8CA1), + MODELVIEW10_ARB = ((int)0x872A), + POINT_SIZE_MAX_ARB = ((int)0x8127), + TEXTURE3 = ((int)0x84C3), + MAX_4D_TEXTURE_SIZE_SGIS = ((int)0x8138), + SPRITE_OBJECT_ALIGNED_SGIX = ((int)0x814D), + OP_LOG_BASE_2_EXT = ((int)0x8792), + MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)0x8178), + MATRIX3_ARB = ((int)0x88C3), + SRC2_RGB = ((int)VERSION_1_3.SOURCE2_RGB), + UPPER_LEFT = ((int)0x8CA2), + INTENSITY16_EXT = ((int)0x804D), + SECONDARY_COLOR_NV = ((int)0x852D), + Y_EXT = ((int)0x87D6), + ARRAY_BUFFER_BINDING = ((int)0x8894), + MAX_PROGRAM_LOOP_DEPTH_NV = ((int)0x88F7), + EVAL_VERTEX_ATTRIB1_NV = ((int)0x86C7), + GL_4PASS_0_EXT = ((int)0x80A4), + SRGB8_ALPHA8_EXT = ((int)0x8C43), + CONSTANT_EXT = ((int)0x8576), + TEXTURE_CONSTANT_DATA_SUNX = ((int)0x81D6), + POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = ((int)0x8162), + TEXTURE0 = ((int)0x84C0), + FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT = ((int)0x8CD2), + REPLACEMENT_CODE_SUN = ((int)0x81D8), + STENCIL_INDEX = ((int)0x1901), + WRITE_ONLY = ((int)0x88B9), + DUAL_LUMINANCE_ALPHA4_SGIS = ((int)0x811C), + CLIP_NEAR_HINT_PGI = ((int)0x1A220), + MAX_PROGRAM_EXEC_INSTRUCTIONS_NV = ((int)0x88F4), + UNSIGNED_SHORT_8_8_APPLE = ((int)0x85BA), + T2F_IUI_V3F_EXT = ((int)0x81B2), + INTERLACE_OML = ((int)0x8980), + DRAW_BUFFER2_ARB = ((int)0x8827), + REG_23_ATI = ((int)0x8938), + CLAMP_TO_EDGE_SGIS = ((int)0x812F), + POINT_SIZE_MIN_ARB = ((int)0x8126), + CURRENT_INDEX = ((int)0x0B01), + POST_CONVOLUTION_BLUE_BIAS_EXT = ((int)0x8022), + TEXTURE_WRAP_Q_SGIS = ((int)0x8137), + POINT_SIZE_MAX_EXT = ((int)0x8127), + MAP1_COLOR_4 = ((int)0x0D90), + STATIC_READ = ((int)0x88E5), + PASS_THROUGH_TOKEN = ((int)0x0700), + POST_CONVOLUTION_ALPHA_SCALE = ((int)0x801F), + TEXTURE1 = ((int)0x84C1), + PERTURB_EXT = ((int)0x85AE), + DRAW_BUFFER0_ARB = ((int)0x8825), + ALPHA_TEST = ((int)0x0BC0), + STENCIL_FUNC = ((int)0x0B92), + DOT3_RGB_EXT = ((int)0x8740), + INDEX_ARRAY_TYPE_EXT = ((int)0x8085), + STENCIL_FAIL = ((int)0x0B94), + SCREEN_COORDINATES_REND = ((int)0x8490), + RGBA4 = ((int)0x8056), + MATRIX7_NV = ((int)0x8637), + POST_COLOR_MATRIX_RED_SCALE = ((int)0x80B4), + INDEX_ARRAY_TYPE = ((int)0x8085), + PIXEL_SUBSAMPLE_4242_SGIX = ((int)0x85A4), + STENCIL_CLEAR_TAG_VALUE_EXT = ((int)0x88F3), + TEXTURE_STACK_DEPTH = ((int)0x0BA5), + SOURCE0_ALPHA = ((int)0x8588), + LUMINANCE12_ALPHA12 = ((int)0x8047), + MAP2_VERTEX_ATTRIB9_4_NV = ((int)0x8679), + DEPTH_COMPONENT24_ARB = ((int)0x81A6), + ACTIVE_UNIFORMS = ((int)0x8B86), + GREEN_BITS = ((int)0x0D53), + TEXTURE6 = ((int)0x84C6), + TEXTURE_LEQUAL_R_SGIX = ((int)0x819C), ALPHA_TEST_REF = ((int)0x0BC2), - MAP1_NORMAL = ((int)0x0D92), - OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV = ((int)0x8853), + POST_CONVOLUTION_ALPHA_SCALE_EXT = ((int)0x801F), + SECONDARY_COLOR_ARRAY_LIST_IBM = ((int)103077), + STREAM_READ_ARB = ((int)0x88E1), + UNSIGNED_BYTE = ((int)0x1401), + X_EXT = ((int)0x87D5), + GREEN_BIAS = ((int)0x0D19), + UNSIGNED_SHORT_4_4_4_4 = ((int)0x8033), + MODELVIEW0_ARB = ((int)0x1700), + MODULATE_SUBTRACT_ATI = ((int)0x8746), + ARRAY_OBJECT_OFFSET_ATI = ((int)0x8767), + UNPACK_CMYK_HINT_EXT = ((int)0x800F), + EDGE_FLAG_ARRAY_EXT = ((int)0x8079), + POST_CONVOLUTION_BLUE_SCALE_EXT = ((int)0x801E), + LO_BIAS_NV = ((int)0x8715), + ALPHA_SCALE = ((int)0x0D1C), + VARIANT_ARRAY_TYPE_EXT = ((int)0x87E7), + VERTEX_PRECLIP_HINT_SGIX = ((int)0x83EF), + TEXTURE7 = ((int)0x84C7), + TEXTURE_WRAP_R_EXT = ((int)0x8072), + TEXTURE18_ARB = ((int)0x84D2), + SOURCE1_RGB_ARB = ((int)0x8581), + VARIABLE_E_NV = ((int)0x8527), + OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB = ((int)0x8B87), + MAP1_VERTEX_ATTRIB15_4_NV = ((int)0x866F), + MAX_3D_TEXTURE_SIZE = ((int)0x8073), + PROGRAM_ADDRESS_REGISTERS_ARB = ((int)0x88B0), + QUAD_INTENSITY8_SGIS = ((int)0x8123), + CURRENT_WEIGHT_ARB = ((int)0x86A8), + OP_DOT4_EXT = ((int)0x8785), + TEXTURE_RESIDENT_EXT = ((int)0x8067), + ALPHA12 = ((int)0x803D), + INSTRUMENT_MEASUREMENTS_SGIX = ((int)0x8181), + EQUAL = ((int)0x0202), + MAP2_INDEX = ((int)0x0DB1), + VERTEX_ATTRIB_ARRAY3_NV = ((int)0x8653), + PIXEL_PACK_BUFFER_BINDING_EXT = ((int)0x88ED), + FRAGMENT_PROGRAM_BINDING_NV = ((int)0x8873), + OP_SUB_EXT = ((int)0x8796), + BUMP_ROT_MATRIX_SIZE_ATI = ((int)0x8776), + UNPACK_IMAGE_HEIGHT = ((int)0x806E), + RESAMPLE_DECIMATE_SGIX = ((int)0x8430), + COLOR_TABLE = ((int)0x80D0), + DEPTH = ((int)0x1801), + SHADER_CONSISTENT_NV = ((int)0x86DD), + UNSIGNED_BYTE_2_3_3_REV = ((int)0x8362), + OFFSET_HILO_TEXTURE_2D_NV = ((int)0x8854), + FLOAT_R16_NV = ((int)0x8884), + MATRIX1_ARB = ((int)0x88C1), + POST_TEXTURE_FILTER_SCALE_RANGE_SGIX = ((int)0x817C), + VERTEX_ATTRIB_ARRAY_TYPE = ((int)0x8625), + GL_422_EXT = ((int)0x80CC), + FOG_COORDINATE_EXT = ((int)0x8451), + LINES_ADJACENCY_EXT = ((int)0x000A), + DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX = ((int)0x8311), + TEXTURE_1D_ARRAY_EXT = ((int)0x8C18), + COMBINER_INPUT_NV = ((int)0x8542), + UNSIGNED_SHORT_8_8_MESA = ((int)0x85BA), + TEXTURE_LUMINANCE_SIZE_EXT = ((int)0x8060), + DRAW_BUFFER2_ATI = ((int)0x8827), + STENCIL_BACK_FAIL = ((int)0x8801), + RGB_S3TC = ((int)0x83A0), + TEXTURE5 = ((int)0x84C5), + FLOAT_VEC4_ARB = ((int)0x8B52), + VERTEX_ARRAY = ((int)0x8074), + FUNC_SUBTRACT = ((int)0x800A), + REPLACE_OLDEST_SUN = ((int)0x0003), + MATRIX28_ARB = ((int)0x88DC), + PER_STAGE_CONSTANTS_NV = ((int)0x8535), + VERTEX_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F5), + RGBA16 = ((int)0x805B), + GL_4PASS_2_SGIS = ((int)0x80A6), + PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX = ((int)0x8187), + STORAGE_CACHED_APPLE = ((int)0x85BE), + PIXEL_TEX_GEN_Q_CEILING_SGIX = ((int)0x8184), + SRGB_ALPHA_EXT = ((int)0x8C42), + CONSTANT_COLOR0_NV = ((int)0x852A), + EVAL_VERTEX_ATTRIB0_NV = ((int)0x86C6), + COMBINE_ALPHA_ARB = ((int)0x8572), + MATRIX31_ARB = ((int)0x88DF), + LINE_STIPPLE_REPEAT = ((int)0x0B26), + ACTIVE_VERTEX_UNITS_ARB = ((int)0x86A5), + INDEX_SHIFT = ((int)0x0D12), + FOG_OFFSET_SGIX = ((int)0x8198), + GEOMETRY_VERTICES_OUT_EXT = ((int)0x8DDA), + DETAIL_TEXTURE_LEVEL_SGIS = ((int)0x809A), + SAMPLE_ALPHA_TO_ONE_EXT = ((int)0x809F), + TEXTURE13_ARB = ((int)0x84CD), + TEXTURE_3D = ((int)0x806F), + TEXTURE_2D = ((int)0x0DE1), + SIGNED_NEGATE_NV = ((int)0x853D), + DEPTH_CLAMP_NV = ((int)0x864F), + COLOR_TABLE_WIDTH_SGI = ((int)0x80D9), + RENDERBUFFER_EXT = ((int)0x8D41), + VERTEX_ATTRIB_ARRAY_STRIDE = ((int)0x8624), + TEXTURE14 = ((int)0x84CE), + TEXTURE17 = ((int)0x84D1), + TEXTURE16 = ((int)0x84D0), + TEXTURE11 = ((int)0x84CB), + TEXTURE10 = ((int)0x84CA), + R5_G6_B5_A8_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_A8_ICC_SGIX), + COMPRESSED_LUMINANCE_ALPHA_ARB = ((int)0x84EB), + RGBA16_EXT = ((int)0x805B), + MAX_MODELVIEW_STACK_DEPTH = ((int)0x0D36), + COLOR_ATTACHMENT4_EXT = ((int)0x8CE4), + TEXTURE19 = ((int)0x84D3), + TEXTURE18 = ((int)0x84D2), + PRIMITIVE_ID_NV = ((int)0x8C7C), + QUERY_RESULT = ((int)0x8866), + DRAW_BUFFER3_ARB = ((int)0x8828), + UNSIGNED_SHORT_5_6_5_REV = ((int)0x8364), + COMPRESSED_RGB_FXT1_3DFX = ((int)0x86B0), + OBJECT_POINT_SGIS = ((int)0x81F5), + TEXTURE_COLOR_WRITEMASK_SGIS = ((int)0x81EF), + COLOR_MATERIAL_PARAMETER = ((int)0x0B56), + FRAGMENT_PROGRAM_ARB = ((int)0x8804), + FOG_START = ((int)0x0B63), + COLOR_TABLE_FORMAT_SGI = ((int)0x80D8), + CLIP_PLANE3 = ((int)0x3003), + FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT = ((int)0x8CD7), + MAX_PROGRAM_NATIVE_PARAMETERS_ARB = ((int)0x88AB), + ENABLE_BIT = ((int)0x00002000), + COMPRESSED_RGBA_S3TC_DXT5_EXT = ((int)0x83F3), + VERTEX_ATTRIB_ARRAY_INTEGER_NV = ((int)0x88FD), + PIXEL_MAP_I_TO_I_SIZE = ((int)0x0CB0), + FLOAT_MAT3x2 = ((int)0x8B67), + DSDT_MAG_VIB_NV = ((int)0x86F7), + SECONDARY_COLOR_ARRAY_STRIDE = ((int)0x845C), + MAX_TRANSFORM_FEEDBACK_INTERLEAVED_ATTRIBS_NV = ((int)0x8C8A), + SRGB8_ALPHA8 = ((int)0x8C43), + COMPRESSED_RGBA_FXT1_3DFX = ((int)0x86B1), + INFO_LOG_LENGTH = ((int)0x8B84), + VECTOR_EXT = ((int)0x87BF), + UNSIGNED_INT_SAMPLER_BUFFER_EXT = ((int)0x8DD8), + FOG_COORD_SRC = ((int)VERSION_1_4.FOG_COORDINATE_SOURCE), + UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT = ((int)0x8DD6), + MAD_ATI = ((int)0x8968), + REG_26_ATI = ((int)0x893B), + FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX = ((int)0x840B), + VERTEX_ATTRIB_ARRAY_NORMALIZED = ((int)0x886A), + TEXTURE_MAG_SIZE_NV = ((int)0x871F), + DYNAMIC_READ_ARB = ((int)0x88E9), + OUTPUT_TEXTURE_COORD31_EXT = ((int)0x87BC), + DEPENDENT_GB_TEXTURE_2D_NV = ((int)0x86EA), + DRAW_BUFFER7_ARB = ((int)0x882C), + TEXTURE10_ARB = ((int)0x84CA), + PIXEL_MAP_G_TO_G = ((int)0x0C77), + VALIDATE_STATUS = ((int)0x8B83), + DOT3_RGBA_ARB = ((int)0x86AF), + PROXY_TEXTURE_CUBE_MAP = ((int)0x851B), + MAGNITUDE_BIAS_NV = ((int)0x8718), + ALPHA_MAX_SGIX = ((int)0x8321), + MATRIX19_ARB = ((int)0x88D3), + ONE_MINUS_CONSTANT_COLOR_EXT = ((int)0x8002), + DELETE_STATUS = ((int)0x8B80), + SHADER_OPERATION_NV = ((int)0x86DF), + R1UI_C4UB_V3F_SUN = ((int)0x85C5), + MAX_DRAW_BUFFERS_ARB = ((int)0x8824), + PROGRAM_TARGET_NV = ((int)0x8646), + NUM_INSTRUCTIONS_PER_PASS_ATI = ((int)0x8971), + STATIC_COPY = ((int)0x88E6), + SEPARABLE_2D = ((int)0x8012), + STENCIL_INDEX4_EXT = ((int)0x8D47), + OUTPUT_TEXTURE_COORD24_EXT = ((int)0x87B5), + BLUE_BIT_ATI = ((int)0x00000004), + BLEND_EQUATION_RGB = ((int)ARB_imaging.BLEND_EQUATION), + COLOR_TABLE_RED_SIZE = ((int)0x80DA), + LINEAR = ((int)0x2601), + MAX_VIEWPORT_DIMS = ((int)0x0D3A), + BOOL = ((int)0x8B56), + PROXY_POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D4), + MAX_ELEMENTS_VERTICES_EXT = ((int)0x80E8), + MAX_ASYNC_TEX_IMAGE_SGIX = ((int)0x835F), + DS_BIAS_NV = ((int)0x8716), + DETAIL_TEXTURE_2D_BINDING_SGIS = ((int)0x8096), + DEPENDENT_AR_TEXTURE_2D_NV = ((int)0x86E9), + FOG_COORDINATE_ARRAY_LIST_IBM = ((int)103076), + COLOR_ATTACHMENT0_EXT = ((int)0x8CE0), + PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = ((int)0x8336), + STENCIL_BACK_FUNC_ATI = ((int)0x8800), + ACCUM_GREEN_BITS = ((int)0x0D59), + VERTEX_ARRAY_EXT = ((int)0x8074), + INDEX_BITS = ((int)0x0D51), + SOURCE1_RGB = ((int)0x8581), + CURRENT_SECONDARY_COLOR = ((int)0x8459), + MAX_ELEMENTS_INDICES_EXT = ((int)0x80E9), + MIRROR_CLAMP_TO_BORDER_EXT = ((int)0x8912), + CONSTANT_COLOR1_NV = ((int)0x852B), + DUAL_LUMINANCE12_SGIS = ((int)0x8116), + MAX_CUBE_MAP_TEXTURE_SIZE = ((int)0x851C), + INTENSITY16I_EXT = ((int)0x8D8B), + BUFFER_USAGE_ARB = ((int)0x8765), + SAMPLE_BUFFERS = ((int)0x80A8), + EVAL_VERTEX_ATTRIB3_NV = ((int)0x86C9), + COMPRESSED_RGBA_S3TC_DXT1_EXT = ((int)0x83F1), + MATRIX29_ARB = ((int)0x88DD), + R11F_G11F_B10F_EXT = ((int)0x8C3A), + DRAW_BUFFER13 = ((int)0x8832), + DRAW_BUFFER12 = ((int)0x8831), + DRAW_BUFFER11 = ((int)0x8830), + DRAW_BUFFER10 = ((int)0x882F), + IUI_N3F_V3F_EXT = ((int)0x81B0), + CONSERVE_MEMORY_HINT_PGI = ((int)0x1A1FD), + DRAW_BUFFER15 = ((int)0x8834), + COLOR_MATRIX_STACK_DEPTH = ((int)0x80B2), + VIBRANCE_SCALE_NV = ((int)0x8713), + COMPRESSED_TEXTURE_FORMATS_ARB = ((int)0x86A3), + FORMAT_SUBSAMPLE_244_244_OML = ((int)0x8983), + UNPACK_SKIP_IMAGES_EXT = ((int)0x806D), + FLOAT_R32_NV = ((int)0x8885), + TEXTURE_COORD_ARRAY_EXT = ((int)0x8078), + SHADING_LANGUAGE_VERSION = ((int)0x8B8C), + SATURATE_BIT_ATI = ((int)0x00000040), + LIST_INDEX = ((int)0x0B33), + CONST_EYE_NV = ((int)0x86E5), + BLEND_SRC_ALPHA = ((int)0x80CB), + POINT_FADE_THRESHOLD_SIZE_EXT = ((int)0x8128), + TEXTURE_WRAP_R = ((int)0x8072), + OUTPUT_COLOR0_EXT = ((int)0x879B), + FUNC_REVERSE_SUBTRACT = ((int)0x800B), + INDEX_LOGIC_OP = ((int)0x0BF1), + BUFFER_ACCESS_ARB = ((int)0x88BB), + SHARED_TEXTURE_PALETTE_EXT = ((int)0x81FB), + TEXTURE_ALPHA_SIZE = ((int)0x805F), + ARRAY_OBJECT_BUFFER_ATI = ((int)0x8766), + TEXTURE_UNSIGNED_REMAP_MODE_NV = ((int)0x888F), + FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX = ((int)0x8403), + MAP2_VERTEX_ATTRIB14_4_NV = ((int)0x867E), + CON_29_ATI = ((int)0x895E), + RGBA_SIGNED_COMPONENTS_EXT = ((int)0x8C3C), + CLAMP_FRAGMENT_COLOR_ARB = ((int)0x891B), + AMBIENT = ((int)0x1200), + TEXTURE_DEFORMATION_BIT_SGIX = ((int)0x00000001), + STACK_OVERFLOW = ((int)0x0503), + CLIP_PLANE2 = ((int)0x3002), + LOAD = ((int)0x0101), + BINORMAL_ARRAY_STRIDE_EXT = ((int)0x8441), + DSDT_NV = ((int)0x86F5), + VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87D2), + SMOOTH_LINE_WIDTH_GRANULARITY = ((int)0x0B23), + COLOR_ARRAY_LIST_STRIDE_IBM = ((int)103082), + OBJECT_VALIDATE_STATUS_ARB = ((int)0x8B83), + GREEN_MIN_CLAMP_INGR = ((int)0x8561), + MAX_COLOR_ATTACHMENTS_EXT = ((int)0x8CDF), + SECONDARY_COLOR_ARRAY_TYPE = ((int)0x845B), + MAP2_TEXTURE_COORD_1 = ((int)0x0DB3), + POINT = ((int)0x1B00), + REG_16_ATI = ((int)0x8931), + GENERIC_ATTRIB_NV = ((int)0x8C7D), + EYE_PLANE_ABSOLUTE_NV = ((int)0x855C), + STREAM_DRAW = ((int)0x88E0), + ASYNC_READ_PIXELS_SGIX = ((int)0x835E), + FRAMEZOOM_FACTOR_SGIX = ((int)0x818C), + SAMPLER_2D_SHADOW = ((int)0x8B62), + T2F_V3F = ((int)0x2A27), + MAX_PROGRAM_TEX_INSTRUCTIONS_ARB = ((int)0x880C), + RGB32I_EXT = ((int)0x8D83), + WEIGHT_ARRAY_TYPE_ARB = ((int)0x86A9), + STATIC_READ_ARB = ((int)0x88E5), + VERTEX_ARRAY_RANGE_POINTER_NV = ((int)0x8521), + LINE_STIPPLE_PATTERN = ((int)0x0B25), + ARRAY_ELEMENT_LOCK_COUNT_EXT = ((int)0x81A9), + NUM_GENERAL_COMBINERS_NV = ((int)0x854E), + SAMPLE_BUFFERS_ARB = ((int)0x80A8), + PACK_IMAGE_HEIGHT_EXT = ((int)0x806C), + SPRITE_EYE_ALIGNED_SGIX = ((int)0x814E), + TEXTURE_APPLICATION_MODE_EXT = ((int)0x834F), + POINTS = ((int)0x0000), + ONE_EXT = ((int)0x87DE), + TEXTURE_BINDING_CUBE_MAP_EXT = ((int)0x8514), + TRANSFORM_BIT = ((int)0x00001000), + SRC1_ALPHA = ((int)VERSION_1_3.SOURCE1_ALPHA), + INVARIANT_VALUE_EXT = ((int)0x87EA), + FRAGMENT_NORMAL_EXT = ((int)0x834A), + SOURCE1_ALPHA = ((int)0x8589), + LINEAR_MIPMAP_LINEAR = ((int)0x2703), + DEPTH_TEXTURE_MODE_ARB = ((int)0x884B), + SAMPLE_BUFFERS_3DFX = ((int)0x86B3), + OBJECT_DELETE_STATUS_ARB = ((int)0x8B80), + GL_1PASS_EXT = ((int)0x80A1), + VERTEX_PROGRAM_ARB = ((int)0x8620), + RGBA12 = ((int)0x805A), + TEXTURE1_ARB = ((int)0x84C1), + W_EXT = ((int)0x87D8), + MODELVIEW3_ARB = ((int)0x8723), + EVAL_VERTEX_ATTRIB7_NV = ((int)0x86CD), + EDGE_FLAG_ARRAY_LIST_IBM = ((int)103075), + BUFFER_MAPPED = ((int)0x88BC), + DOMAIN = ((int)0x0A02), + FRAGMENT_DEPTH_EXT = ((int)0x8452), + LEQUAL = ((int)0x0203), + RENDERBUFFER_DEPTH_SIZE_EXT = ((int)0x8D54), + GL_4D_COLOR_TEXTURE = ((int)0x0604), + TEXTURE19_ARB = ((int)0x84D3), + FRONT_LEFT = ((int)0x0400), + COLOR4_BIT_PGI = ((int)0x00020000), + VERTEX_ATTRIB_ARRAY_STRIDE_ARB = ((int)0x8624), + SMOOTH_POINT_SIZE_GRANULARITY = ((int)0x0B13), + INTENSITY4 = ((int)0x804A), + MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV = ((int)0x8520), + MAX_TEXTURE_BUFFER_SIZE_EXT = ((int)0x8C2B), + TRANSPOSE_CURRENT_MATRIX_ARB = ((int)0x88B7), + EVAL_VERTEX_ATTRIB13_NV = ((int)0x86D3), + OP_ROUND_EXT = ((int)0x8790), + VARIANT_ARRAY_EXT = ((int)0x87E8), + VIBRANCE_BIAS_NV = ((int)0x8719), + WRITE_ONLY_ARB = ((int)0x88B9), + REFERENCE_PLANE_EQUATION_SGIX = ((int)0x817E), + MAX_SPOT_EXPONENT_NV = ((int)0x8505), + POSITION = ((int)0x1203), + DOT_PRODUCT_DEPTH_REPLACE_NV = ((int)0x86ED), + TRANSPOSE_TEXTURE_MATRIX_ARB = ((int)0x84E5), + PROGRAM_STRING_ARB = ((int)0x8628), + EVAL_VERTEX_ATTRIB2_NV = ((int)0x86C8), + PN_TRIANGLES_ATI = ((int)0x87F0), + T4F_C4F_N3F_V4F = ((int)0x2A2D), + TEXTURE_BINDING_RECTANGLE_NV = ((int)0x84F6), + VERTEX_ARRAY_SIZE_EXT = ((int)0x807A), + CLIENT_PIXEL_STORE_BIT = ((int)0x00000001), + SCALE_BY_ONE_HALF_NV = ((int)0x8540), + IUI_V3F_EXT = ((int)0x81AE), + LUMINANCE16UI_EXT = ((int)0x8D7A), + VARIANT_VALUE_EXT = ((int)0x87E4), + SRC0_RGB = ((int)VERSION_1_3.SOURCE0_RGB), + POST_CONVOLUTION_GREEN_BIAS = ((int)0x8021), + POLYGON_STIPPLE = ((int)0x0B42), + INT_VEC3_ARB = ((int)0x8B54), + TEXTURE_COORD_ARRAY_POINTER_EXT = ((int)0x8092), + PIXEL_UNPACK_BUFFER_BINDING_ARB = ((int)0x88EF), + BUFFER_SIZE = ((int)0x8764), + MAX_TEXTURE_LOD_BIAS = ((int)0x84FD), + OFFSET_TEXTURE_MATRIX_NV = ((int)0x86E1), + ALPHA_FLOAT16_ATI = ((int)0x881C), + MATRIX14_ARB = ((int)0x88CE), + POST_COLOR_MATRIX_RED_SCALE_SGI = ((int)0x80B4), + PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = ((int)0x88B2), + STATIC_ATI = ((int)0x8760), + ALPHA4_EXT = ((int)0x803B), + TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB = ((int)0x8518), + INDEX_ARRAY_POINTER = ((int)0x8091), + TEXTURE_2D_STACK_MESAX = ((int)0x875A), + EDGE_FLAG_ARRAY_BUFFER_BINDING = ((int)0x889B), + DEPTH_PASS_INSTRUMENT_MAX_SGIX = ((int)0x8312), + CND_ATI = ((int)0x896A), + FRAMEBUFFER_SRGB_CAPABLE_EXT = ((int)0x8DBA), + LIGHT_MODEL_TWO_SIDE = ((int)0x0B52), + TEXTURE_FLOAT_COMPONENTS_NV = ((int)0x888C), + NEGATIVE_W_EXT = ((int)0x87DC), + DRAW_BUFFER6_ATI = ((int)0x882B), + PIXEL_UNPACK_BUFFER_BINDING = ((int)0x88EF), + POINT_FADE_THRESHOLD_SIZE_SGIS = ((int)0x8128), + POINT_SPRITE_COORD_ORIGIN = ((int)0x8CA0), + LINE_TOKEN = ((int)0x0702), + DOT_PRODUCT_TEXTURE_RECTANGLE_NV = ((int)0x864E), + VERTEX_WEIGHT_ARRAY_SIZE_EXT = ((int)0x850D), + OP_MADD_EXT = ((int)0x8788), + SIGNED_RGB8_NV = ((int)0x86FF), + SECONDARY_COLOR_ARRAY_SIZE = ((int)0x845A), + CLIP_PLANE5 = ((int)0x3005), + MAX_ELEMENTS_INDICES = ((int)0x80E9), + LINE_STRIP_ADJACENCY_EXT = ((int)0x000B), + INT_VEC4_ARB = ((int)0x8B55), + YCBCR_422_APPLE = ((int)0x85B9), + SIGNED_HILO16_NV = ((int)0x86FA), + TEXTURE_ENV = ((int)0x2300), + RGB9_E5_EXT = ((int)0x8C3D), + UNPACK_CONSTANT_DATA_SUNX = ((int)0x81D5), + TEXTURE_PRIORITY = ((int)0x8066), + CON_16_ATI = ((int)0x8951), + INDEX_WRITEMASK = ((int)0x0C21), + SAMPLES = ((int)0x80A9), + SIGNED_LUMINANCE8_NV = ((int)0x8702), + NORMAL_ARRAY_COUNT_EXT = ((int)0x8080), + DUAL_TEXTURE_SELECT_SGIS = ((int)0x8124), + DRAW_BUFFER9 = ((int)0x882E), + OPERAND1_ALPHA_EXT = ((int)0x8599), + COLOR_CLEAR_UNCLAMPED_VALUE_ATI = ((int)0x8835), + COMPARE_R_TO_TEXTURE = ((int)0x884E), + UNSIGNED_BYTE_3_3_2 = ((int)0x8032), + DEPTH_BOUNDS_EXT = ((int)0x8891), + MAX_ASYNC_HISTOGRAM_SGIX = ((int)0x832D), + OPERAND0_RGB = ((int)0x8590), + COLOR_ARRAY_STRIDE = ((int)0x8083), + INTERLACE_SGIX = ((int)0x8094), + CONVOLUTION_FILTER_SCALE_EXT = ((int)0x8014), + REG_14_ATI = ((int)0x892F), + FLOAT_VEC4 = ((int)0x8B52), + SAMPLER_2D_RECT_SHADOW_ARB = ((int)0x8B64), + UNSIGNED_SHORT_1_5_5_5_REV_EXT = ((int)0x8366), + PROGRAM_PARAMETERS_ARB = ((int)0x88A8), + ALWAYS_SOFT_HINT_PGI = ((int)0x1A20D), + IMPLEMENTATION_COLOR_READ_FORMAT_OES = ((int)0x8B9B), + MAX_VERTEX_UNIFORM_COMPONENTS_ARB = ((int)0x8B4A), + DRAW_BUFFER8 = ((int)0x882D), + TEXTURE31_ARB = ((int)0x84DF), + SRGB_ALPHA = ((int)0x8C42), + INCR = ((int)0x1E02), + TEXTURE12_ARB = ((int)0x84CC), + DEPTH_ATTACHMENT_EXT = ((int)0x8D00), + REPLACEMENT_CODE_ARRAY_POINTER_SUN = ((int)0x85C3), + CLAMP_TO_BORDER = ((int)0x812D), + T2F_IUI_N3F_V2F_EXT = ((int)0x81B3), + PIXEL_MAP_S_TO_S_SIZE = ((int)0x0CB1), + ORDER = ((int)0x0A01), + MODELVIEW_PROJECTION_NV = ((int)0x8629), + GL_2PASS_0_SGIS = ((int)0x80A2), + R1UI_T2F_C4F_N3F_V3F_SUN = ((int)0x85CB), + RESAMPLE_ZERO_FILL_OML = ((int)0x8987), + SAMPLES_PASSED = ((int)0x8914), + LUMINANCE6_ALPHA2 = ((int)0x8044), + POST_COLOR_MATRIX_ALPHA_SCALE = ((int)0x80B7), + FRAGMENT_COLOR_MATERIAL_SGIX = ((int)0x8401), + TRANSFORM_FEEDBACK_VARYINGS_NV = ((int)0x8C83), + PROGRAM_ATTRIB_COMPONENTS_NV = ((int)0x8906), + OBJECT_ACTIVE_ATTRIBUTES_ARB = ((int)0x8B89), + MULTISAMPLE_3DFX = ((int)0x86B2), + REG_4_ATI = ((int)0x8925), + DRAW_BUFFER7 = ((int)0x882C), + EDGE_FLAG = ((int)0x0B43), + NORMAL_ARRAY_BUFFER_BINDING = ((int)0x8897), + DEPTH24_STENCIL8_EXT = ((int)0x88F0), + MULTISAMPLE_FILTER_HINT_NV = ((int)0x8534), + REG_19_ATI = ((int)0x8934), + MAX_PROGRAM_ATTRIB_COMPONENTS_NV = ((int)0x8908), + TEXTURE_DEPTH_TYPE_ARB = ((int)0x8C16), + INVALID_VALUE = ((int)0x0501), + OPERAND1_RGB = ((int)0x8591), + TEXCOORD3_BIT_PGI = ((int)0x40000000), + LUMINANCE16_ALPHA16 = ((int)0x8048), + LUMINANCE_FLOAT32_ATI = ((int)0x8818), + VERTEX_PROGRAM_TWO_SIDE = ((int)0x8643), + OR = ((int)0x1507), + ALL_COMPLETED_NV = ((int)0x84F2), + REG_5_ATI = ((int)0x8926), + COLOR_ARRAY_BUFFER_BINDING = ((int)0x8898), + NEGATE_BIT_ATI = ((int)0x00000004), + DRAW_BUFFER6 = ((int)0x882B), + EVAL_VERTEX_ATTRIB5_NV = ((int)0x86CB), + NATIVE_GRAPHICS_HANDLE_PGI = ((int)0x1A202), + TEXTURE_BINDING_BUFFER_EXT = ((int)0x8C2C), + BUFFER_SERIALIZED_MODIFY_APPLE = ((int)0x8A12), + UNSIGNED_INT_2_10_10_10_REV_EXT = ((int)0x8368), + RGB5 = ((int)0x8050), + MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = ((int)0x8337), + COMBINER_MUX_SUM_NV = ((int)0x8547), + OUTPUT_TEXTURE_COORD8_EXT = ((int)0x87A5), + CURRENT_VERTEX_ATTRIB = ((int)0x8626), + TRANSPOSE_PROJECTION_MATRIX = ((int)0x84E4), + MAT_DIFFUSE_BIT_PGI = ((int)0x00400000), DRAW_FRAMEBUFFER_BINDING_EXT = ((int)0x8CAA), PACK_RESAMPLE_OML = ((int)0x8984), - PRIMARY_COLOR = ((int)0x8577), - INDEX_CLEAR_VALUE = ((int)0x0C20), - PROXY_TEXTURE_COLOR_TABLE_SGI = ((int)0x80BD), - UNSIGNED_SHORT_5_5_5_1 = ((int)0x8034), - CLAMP = ((int)0x2900), - STENCIL_TAG_BITS_EXT = ((int)0x88F2), - MULTISAMPLE_BIT = ((int)0x20000000), - RGBA8_EXT = ((int)0x8058), - VERTEX_ARRAY_POINTER_EXT = ((int)0x808E), - TEXTURE_CUBE_MAP_POSITIVE_Z_ARB = ((int)0x8519), - DRAW_BUFFER13_ARB = ((int)0x8832), - SCALE_BY_TWO_NV = ((int)0x853E), - TEXTURE_CUBE_MAP_POSITIVE_Y_ARB = ((int)0x8517), - INVERSE_TRANSPOSE_NV = ((int)0x862D), - PIXEL_PACK_BUFFER_BINDING = ((int)0x88ED), - NORMAL_ARRAY_STRIDE = ((int)0x807F), - FOG_SCALE_VALUE_SGIX = ((int)0x81FD), - FRAGMENT_LIGHT1_SGIX = ((int)0x840D), - MAP_ATTRIB_U_ORDER_NV = ((int)0x86C3), - OFFSET_HILO_TEXTURE_2D_NV = ((int)0x8854), - Y_EXT = ((int)0x87D6), - T2F_IUI_V2F_EXT = ((int)0x81B1), - FRAGMENT_SHADER = ((int)0x8B30), - SRC1_ALPHA = ((int)VERSION_1_3.SOURCE1_ALPHA), - W_EXT = ((int)0x87D8), - FOG_COORDINATE_ARRAY_STRIDE = ((int)0x8455), - TRANSFORM_FEEDBACK_BUFFER_MODE_NV = ((int)0x8C7F), - COMPARE_R_TO_TEXTURE = ((int)0x884E), - TEXCOORD3_BIT_PGI = ((int)0x40000000), - SAMPLES_EXT = ((int)0x80A9), - FRAGMENT_PROGRAM_BINDING_NV = ((int)0x8873), - UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT = ((int)0x8DD6), - FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT = ((int)0x8CD4), - LINE_SMOOTH_HINT = ((int)0x0C52), - VALIDATE_STATUS = ((int)0x8B83), - OP_DOT3_EXT = ((int)0x8784), - PIXEL_MAP_I_TO_I = ((int)0x0C70), - FRAGMENT_COLOR_MATERIAL_FACE_SGIX = ((int)0x8402), - SAMPLE_COVERAGE_INVERT_ARB = ((int)0x80AB), - DEPTH_PASS_INSTRUMENT_SGIX = ((int)0x8310), - MODELVIEW3_ARB = ((int)0x8723), - DRAW_BUFFER1 = ((int)0x8826), - INVERT = ((int)0x150A), - TEXTURE_BORDER_VALUES_NV = ((int)0x871A), - CURRENT_RASTER_DISTANCE = ((int)0x0B09), - SIGNED_RGB_UNSIGNED_ALPHA_NV = ((int)0x870C), - ALWAYS = ((int)0x0207), - HISTOGRAM_FORMAT_EXT = ((int)0x8027), - COLOR_ARRAY_SIZE_EXT = ((int)0x8081), - VERTEX_ATTRIB_ARRAY5_NV = ((int)0x8655), - STENCIL_WRITEMASK = ((int)0x0B98), - POST_TEXTURE_FILTER_SCALE_SGIX = ((int)0x817A), - RED_BIT_ATI = ((int)0x00000001), - REFLECTION_MAP_ARB = ((int)0x8512), - INT_SAMPLER_BUFFER_EXT = ((int)0x8DD0), - PROGRAM_INSTRUCTIONS_ARB = ((int)0x88A0), - NORMALIZED_RANGE_EXT = ((int)0x87E0), - TEXTURE_COMPRESSED_IMAGE_SIZE_ARB = ((int)0x86A0), - COLOR_INDEX4_EXT = ((int)0x80E4), - DISCARD_ATI = ((int)0x8763), - FUNC_SUBTRACT = ((int)0x800A), - TEXTURE_CUBE_MAP_EXT = ((int)0x8513), - TEXTURE_ALPHA_TYPE_ARB = ((int)0x8C13), - PIXEL_MAP_I_TO_B_SIZE = ((int)0x0CB4), - PIXEL_GROUP_COLOR_SGIS = ((int)0x8356), - MAX_MODELVIEW_STACK_DEPTH = ((int)0x0D36), - OUTPUT_COLOR0_EXT = ((int)0x879B), - SINGLE_COLOR_EXT = ((int)0x81F9), - POINT_FADE_THRESHOLD_SIZE_EXT = ((int)0x8128), - TEXTURE_CUBE_MAP_NEGATIVE_Z = ((int)0x851A), - TEXTURE_CUBE_MAP_NEGATIVE_X = ((int)0x8516), - TEXTURE_CUBE_MAP_NEGATIVE_Y = ((int)0x8518), - MAX_CUBE_MAP_TEXTURE_SIZE_EXT = ((int)0x851C), - CURRENT_QUERY_ARB = ((int)0x8865), - DEPTH_COMPONENT = ((int)0x1902), - ALPHA = ((int)0x1906), - MATRIX2_NV = ((int)0x8632), - PIXEL_COUNTER_BITS_NV = ((int)0x8864), - OPERAND2_RGB_EXT = ((int)0x8592), - TANGENT_ARRAY_TYPE_EXT = ((int)0x843E), - DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV = ((int)0x86F1), - SLUMINANCE8_ALPHA8 = ((int)0x8C45), - LUMINANCE_ALPHA = ((int)0x190A), - MAX_PROGRAM_TEMPORARIES_ARB = ((int)0x88A5), - TRANSFORM_FEEDBACK_BUFFER_SIZE_NV = ((int)0x8C85), - MULTISAMPLE_COVERAGE_MODES_NV = ((int)0x8E12), - SECONDARY_COLOR_ARRAY_TYPE_EXT = ((int)0x845B), - TEXTURE_WRAP_S = ((int)0x2802), - STENCIL_PASS_DEPTH_PASS = ((int)0x0B96), - OP_MAX_EXT = ((int)0x878A), - POINT_SIZE_MAX_SGIS = ((int)0x8127), - CLIP_PLANE0 = ((int)0x3000), - COORD_REPLACE = ((int)0x8862), - DEPTH_COMPONENT16_ARB = ((int)0x81A5), - EYE_PLANE = ((int)0x2502), - MATRIX7_ARB = ((int)0x88C7), - PROXY_TEXTURE_CUBE_MAP_ARB = ((int)0x851B), - PROXY_TEXTURE_1D = ((int)0x8063), - PROXY_TEXTURE_2D = ((int)0x8064), - PROXY_TEXTURE_3D = ((int)0x8070), - COLOR_ATTACHMENT6_EXT = ((int)0x8CE6), - FRAGMENT_LIGHTING_SGIX = ((int)0x8400), - STENCIL_BACK_VALUE_MASK = ((int)0x8CA4), - TEXTURE2_ARB = ((int)0x84C2), - TEXTURE2 = ((int)0x84C2), - PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB = ((int)0x8808), - DELETE_STATUS = ((int)0x8B80), - CURRENT_ATTRIB_NV = ((int)0x8626), - ATTRIB_ARRAY_SIZE_NV = ((int)0x8623), - SHADOW_ATTENUATION_EXT = ((int)0x834E), - MAX_ACTIVE_LIGHTS_SGIX = ((int)0x8405), - GL_4PASS_1_SGIS = ((int)0x80A5), - COMBINE_RGB_ARB = ((int)0x8571), - PRIMITIVES_GENERATED_NV = ((int)0x8C87), - TEXTURE_BLUE_TYPE_ARB = ((int)0x8C12), - CONVOLUTION_FILTER_BIAS = ((int)0x8015), - SAMPLER_3D = ((int)0x8B5F), - COLOR_MATERIAL_PARAMETER = ((int)0x0B56), - SAMPLER_1D = ((int)0x8B5D), - UNPACK_LSB_FIRST = ((int)0x0CF1), - UNSIGNED_INT_10_10_10_2_EXT = ((int)0x8036), - PROXY_TEXTURE_1D_ARRAY_EXT = ((int)0x8C19), - POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)0x80D2), - TEXTURE_MIN_LOD_SGIS = ((int)0x813A), - SPARE1_NV = ((int)0x852F), - BLEND_EQUATION_RGB = ((int)ARB_imaging.BLEND_EQUATION), - OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV = ((int)0x8856), - MATERIAL_SIDE_HINT_PGI = ((int)0x1A22C), - FIXED_ONLY_ARB = ((int)0x891D), - STENCIL_CLEAR_VALUE = ((int)0x0B91), - ALLOW_DRAW_FRG_HINT_PGI = ((int)0x1A210), - PROGRAM_STRING_ARB = ((int)0x8628), - FLOAT_R_NV = ((int)0x8880), - REGISTER_COMBINERS_NV = ((int)0x8522), - VERTEX_ARRAY_EXT = ((int)0x8074), - LIGHT3 = ((int)0x4003), - RENDERBUFFER_SAMPLES_EXT = ((int)0x8CAB), - MAX_VERTEX_VARYING_COMPONENTS_EXT = ((int)0x8DDE), - REG_4_ATI = ((int)0x8925), - READ_WRITE_ARB = ((int)0x88BA), - COMPRESSED_SLUMINANCE_ALPHA = ((int)0x8C4B), - SAMPLES_SGIS = ((int)0x80A9), - R5_G6_B5_A8_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_A8_ICC_SGIX), - FRAGMENT_LIGHT4_SGIX = ((int)0x8410), - STRICT_DEPTHFUNC_HINT_PGI = ((int)0x1A216), - VERTEX_ARRAY_TYPE = ((int)0x807B), - LUMINANCE16UI_EXT = ((int)0x8D7A), - EXTENSIONS = ((int)0x1F03), - CURRENT_OCCLUSION_QUERY_ID_NV = ((int)0x8865), - PROXY_HISTOGRAM = ((int)0x8025), - COLOR_INDEX16_EXT = ((int)0x80E7), - LUMINANCE_ALPHA_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE_ALPHA_ICC_SGIX), - OPERAND1_ALPHA = ((int)0x8599), - FRONT_AND_BACK = ((int)0x0408), - MATRIX6_NV = ((int)0x8636), - SRC1_RGB = ((int)VERSION_1_3.SOURCE1_RGB), - REPLACEMENT_CODE_ARRAY_SUN = ((int)0x85C0), - VERTEX_ATTRIB_ARRAY3_NV = ((int)0x8653), - OUTPUT_TEXTURE_COORD31_EXT = ((int)0x87BC), - POST_CONVOLUTION_BLUE_SCALE_EXT = ((int)0x801E), - LIGHT_MODEL_COLOR_CONTROL_EXT = ((int)0x81F8), - VERTEX_ATTRIB_ARRAY_TYPE_ARB = ((int)0x8625), - OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB = ((int)0x8B87), - RENDERBUFFER_COLOR_SAMPLES_NV = ((int)0x8E10), - TRANSPOSE_PROJECTION_MATRIX_ARB = ((int)0x84E4), - COMPILE_STATUS = ((int)0x8B81), - MATRIX2_ARB = ((int)0x88C2), - TEXTURE_COLOR_TABLE_SGI = ((int)0x80BC), - DYNAMIC_READ = ((int)0x88E9), - MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV = ((int)0x8DA1), - OP_POWER_EXT = ((int)0x8793), - PROGRAM_RESIDENT_NV = ((int)0x8647), - STENCIL_VALUE_MASK = ((int)0x0B93), - VERTEX_SHADER_EXT = ((int)0x8780), - POINT_FADE_THRESHOLD_SIZE = ((int)0x8128), - DEPTH_COMPONENT16 = ((int)0x81A5), - COLOR_SUM = ((int)0x8458), - VERTEX_PRECLIP_SGIX = ((int)0x83EE), - TEXTURE_LOD_BIAS_EXT = ((int)0x8501), - HISTOGRAM_BLUE_SIZE = ((int)0x802A), - WRAP_BORDER_SUN = ((int)0x81D4), - DUAL_INTENSITY12_SGIS = ((int)0x811A), - ORDER = ((int)0x0A01), - MAX_PROGRAM_GENERIC_ATTRIBS_NV = ((int)0x8DA5), - MAX_PROGRAM_INSTRUCTIONS_ARB = ((int)0x88A1), - RGB_FLOAT32_ATI = ((int)0x8815), - MODELVIEW17_ARB = ((int)0x8731), - IMAGE_TRANSLATE_X_HP = ((int)0x8157), - OPERAND2_ALPHA_EXT = ((int)0x859A), - UNSIGNED_SHORT_8_8_REV_MESA = ((int)0x85BB), - MAT_AMBIENT_BIT_PGI = ((int)0x00100000), - MATRIX18_ARB = ((int)0x88D2), - REG_11_ATI = ((int)0x892C), - COLOR_ARRAY_POINTER_EXT = ((int)0x8090), - TEXTURE_MAX_CLAMP_R_SGIX = ((int)0x836B), - TRANSPOSE_COLOR_MATRIX_ARB = ((int)0x84E6), - MIN_EXT = ((int)0x8007), - FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT = ((int)0x8CD7), - POLYGON_BIT = ((int)0x00000008), - NOTEQUAL = ((int)0x0205), - MAX_SAMPLES_EXT = ((int)0x8D57), - POINT_SIZE_RANGE = ((int)0x0B12), - LINEAR_SHARPEN_ALPHA_SGIS = ((int)0x80AE), - OP_RECIP_EXT = ((int)0x8794), - VERTEX_PROGRAM_TWO_SIDE = ((int)0x8643), - DOT3_ATI = ((int)0x8966), - TRANSPOSE_TEXTURE_MATRIX_ARB = ((int)0x84E5), - TABLE_TOO_LARGE_EXT = ((int)0x8031), - MAP1_VERTEX_ATTRIB9_4_NV = ((int)0x8669), - FOG_COORDINATE_ARRAY_BUFFER_BINDING = ((int)0x889D), - COLOR_TABLE_GREEN_SIZE_SGI = ((int)0x80DB), - OBJECT_DISTANCE_TO_LINE_SGIS = ((int)0x81F3), - PROGRAM_ERROR_STRING_NV = ((int)0x8874), - TEXTURE6_ARB = ((int)0x84C6), - MATRIX12_ARB = ((int)0x88CC), - COMPRESSED_RED_GREEN_RGTC2_EXT = ((int)0x8DBD), - R1UI_T2F_C4F_N3F_V3F_SUN = ((int)0x85CB), - TEXTURE5 = ((int)0x84C5), - SAMPLER_1D_SHADOW = ((int)0x8B61), - POST_COLOR_MATRIX_ALPHA_BIAS = ((int)0x80BB), - RENDERBUFFER_STENCIL_SIZE_EXT = ((int)0x8D55), - PIXEL_TRANSFORM_2D_MATRIX_EXT = ((int)0x8338), - SHADER_SOURCE_LENGTH = ((int)0x8B88), - MAX_MULTISAMPLE_COVERAGE_MODES_NV = ((int)0x8E11), - STENCIL_BACK_FAIL_ATI = ((int)0x8801), - MAP2_GRID_DOMAIN = ((int)0x0DD2), - ELEMENT_ARRAY_POINTER_APPLE = ((int)0x876A), - SECONDARY_COLOR_ARRAY_SIZE_EXT = ((int)0x845A), - MAX_TEXTURE_IMAGE_UNITS = ((int)0x8872), - PACK_SKIP_PIXELS = ((int)0x0D04), - VIEWPORT_BIT = ((int)0x00000800), - QUAD_MESH_SUN = ((int)0x8614), - COPY_INVERTED = ((int)0x150C), - COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = ((int)0x8C4D), - MATRIX1_NV = ((int)0x8631), - TEXTURE_CUBE_MAP_POSITIVE_X = ((int)0x8515), - TEXTURE_CUBE_MAP_POSITIVE_Y = ((int)0x8517), - TEXTURE_CUBE_MAP_POSITIVE_Z = ((int)0x8519), - LOCAL_EXT = ((int)0x87C4), - RGB10_A2_EXT = ((int)0x8059), - OUTPUT_COLOR1_EXT = ((int)0x879C), - CND_ATI = ((int)0x896A), - SRGB_ALPHA = ((int)0x8C42), - SAMPLER_2D_RECT_ARB = ((int)0x8B63), - INVERSE_NV = ((int)0x862B), - SMOOTH_POINT_SIZE_RANGE = ((int)0x0B12), - UNSIGNED_BYTE_2_3_3_REV = ((int)0x8362), - SPARE0_PLUS_SECONDARY_COLOR_NV = ((int)0x8532), - CULL_MODES_NV = ((int)0x86E0), - MAX_PROGRAM_OUTPUT_VERTICES_NV = ((int)0x8C27), - OBJECT_LINE_SGIS = ((int)0x81F7), - TEXTURE_3D_EXT = ((int)0x806F), - TEXTURE_COORD_ARRAY_STRIDE_EXT = ((int)0x808A), - LIGHT2 = ((int)0x4002), - QUAD_INTENSITY4_SGIS = ((int)0x8122), - TEXTURE_FILTER4_SIZE_SGIS = ((int)0x8147), - SAMPLE_BUFFERS = ((int)0x80A8), - TEXTURE_RECTANGLE_NV = ((int)0x84F5), - ATTENUATION_EXT = ((int)0x834D), - DRAW_BUFFER0_ARB = ((int)0x8825), - SPRITE_TRANSLATION_SGIX = ((int)0x814B), - TEXTURE_FLOAT_COMPONENTS_NV = ((int)0x888C), - PRIMARY_COLOR_EXT = ((int)0x8577), - IMAGE_ROTATE_ORIGIN_X_HP = ((int)0x815A), - TEXTURE_BIT = ((int)0x00040000), - IMAGE_ROTATE_ORIGIN_Y_HP = ((int)0x815B), - DST_ALPHA = ((int)0x0304), - SRGB8_EXT = ((int)0x8C41), - UNSIGNED_SHORT_5_6_5_EXT = ((int)0x8363), - TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT = ((int)0x8518), - TEXTURE_CLIPMAP_FRAME_SGIX = ((int)0x8172), - UNSIGNED_INT_SAMPLER_CUBE_EXT = ((int)0x8DD4), - DSDT_NV = ((int)0x86F5), - FENCE_STATUS_NV = ((int)0x84F3), - MULTISAMPLE_FILTER_HINT_NV = ((int)0x8534), - CURRENT_INDEX = ((int)0x0B01), - HISTOGRAM_RED_SIZE_EXT = ((int)0x8028), - DOUBLEBUFFER = ((int)0x0C32), - PROGRAM_ERROR_POSITION_NV = ((int)0x864B), - FLOAT_RGB_NV = ((int)0x8882), - CULL_VERTEX_EXT = ((int)0x81AA), - MATRIX3_NV = ((int)0x8633), - PREVIOUS_EXT = ((int)0x8578), - PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)0x80D5), - PIXEL_UNPACK_BUFFER_EXT = ((int)0x88EC), - OP_CROSS_PRODUCT_EXT = ((int)0x8797), - RGB10_A2 = ((int)0x8059), - TEXTURE22_ARB = ((int)0x84D6), - CONSERVE_MEMORY_HINT_PGI = ((int)0x1A1FD), - INTENSITY_EXT = ((int)0x8049), - RESAMPLE_DECIMATE_SGIX = ((int)0x8430), - ASYNC_MARKER_SGIX = ((int)0x8329), - EMISSION = ((int)0x1600), - INTENSITY8I_EXT = ((int)0x8D91), - TEXTURE9 = ((int)0x84C9), - OBJECT_SHADER_SOURCE_LENGTH_ARB = ((int)0x8B88), - DEPTH_WRITEMASK = ((int)0x0B72), - UNSIGNED_SHORT_5_6_5_REV = ((int)0x8364), - CON_25_ATI = ((int)0x895A), - MATRIX0_NV = ((int)0x8630), - COPY = ((int)0x1503), - DUAL_INTENSITY16_SGIS = ((int)0x811B), - MAGNITUDE_BIAS_NV = ((int)0x8718), - ACTIVE_ATTRIBUTES = ((int)0x8B89), - TEXTURE_COORD_ARRAY_TYPE = ((int)0x8089), - SRGB8_ALPHA8 = ((int)0x8C43), - REG_15_ATI = ((int)0x8930), - PACK_ROW_LENGTH = ((int)0x0D02), - DETAIL_TEXTURE_FUNC_POINTS_SGIS = ((int)0x809C), - CON_20_ATI = ((int)0x8955), - GL_2PASS_1_EXT = ((int)0x80A3), - NUM_PASSES_ATI = ((int)0x8970), - INTENSITY16_ICC_SGIX = ((int)SGIX_icc_texture.INTENSITY16_ICC_SGIX), - MAT_SPECULAR_BIT_PGI = ((int)0x04000000), - MAX_DEFORMATION_ORDER_SGIX = ((int)0x8197), - MATRIX5_NV = ((int)0x8635), - MAX_PALETTE_MATRICES_ARB = ((int)0x8842), - EXP = ((int)0x0800), - EMBOSS_CONSTANT_NV = ((int)0x855E), - REPLACEMENT_CODE_SUN = ((int)0x81D8), - NEAREST_CLIPMAP_LINEAR_SGIX = ((int)0x844E), - TEXTURE_PRIORITY_EXT = ((int)0x8066), - STREAM_READ = ((int)0x88E1), - TEXTURE_COMPARE_FUNC_ARB = ((int)0x884D), - INSTRUMENT_BUFFER_POINTER_SGIX = ((int)0x8180), - TRANSPOSE_PROJECTION_MATRIX = ((int)0x84E4), - VERTEX_STREAM2_ATI = ((int)0x876E), - MULTISAMPLE_BIT_3DFX = ((int)0x20000000), - FRAGMENT_LIGHT6_SGIX = ((int)0x8412), - MAX_FRAGMENT_LIGHTS_SGIX = ((int)0x8404), - TEXTURE_2D_STACK_BINDING_MESAX = ((int)0x875E), - MATRIX16_ARB = ((int)0x88D0), - SAMPLE_MASK_INVERT_SGIS = ((int)0x80AB), - UNSIGNED_INT_SAMPLER_3D_EXT = ((int)0x8DD3), - COLOR_MATRIX_STACK_DEPTH = ((int)0x80B2), - EMBOSS_LIGHT_NV = ((int)0x855D), - COLOR_TABLE_LUMINANCE_SIZE = ((int)0x80DE), - DOMAIN = ((int)0x0A02), - VECTOR_EXT = ((int)0x87BF), - EVAL_VERTEX_ATTRIB10_NV = ((int)0x86D0), - POINT_SIZE_MIN_EXT = ((int)0x8126), - CCW = ((int)0x0901), - INT_VEC2 = ((int)0x8B53), - UNIFORM_BUFFER_EXT = ((int)0x8DEE), - C4F_N3F_V3F = ((int)0x2A26), - ZOOM_X = ((int)0x0D16), - AMBIENT_AND_DIFFUSE = ((int)0x1602), - MATRIX_INDEX_ARRAY_TYPE_ARB = ((int)0x8847), - OUTPUT_TEXTURE_COORD5_EXT = ((int)0x87A2), - MAX_ELEMENTS_VERTICES_EXT = ((int)0x80E8), - UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT = ((int)0x8DD7), - TEXTURE_COORD_ARRAY_COUNT_EXT = ((int)0x808B), - RGB_SCALE = ((int)0x8573), - IUI_V3F_EXT = ((int)0x81AE), - CONVOLUTION_BORDER_MODE_EXT = ((int)0x8013), - VARIANT_ARRAY_EXT = ((int)0x87E8), - POST_TEXTURE_FILTER_BIAS_SGIX = ((int)0x8179), - MATRIX7_NV = ((int)0x8637), - MAP2_TANGENT_EXT = ((int)0x8445), - SRC_ALPHA = ((int)0x0302), - VERTEX_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F5), - FRAGMENT_NORMAL_EXT = ((int)0x834A), - VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB = ((int)0x889F), - NUM_INSTRUCTIONS_PER_PASS_ATI = ((int)0x8971), - R5_G6_B5_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_ICC_SGIX), - RENDERBUFFER_COVERAGE_SAMPLES_NV = ((int)0x8CAB), - FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM = ((int)103086), - PROGRAM_LENGTH_ARB = ((int)0x8627), - CON_29_ATI = ((int)0x895E), - SAMPLER_2D_ARRAY_EXT = ((int)0x8DC1), - LUMINANCE8 = ((int)0x8040), - TRANSFORM_FEEDBACK_VARYINGS_NV = ((int)0x8C83), - PIXEL_MAP_G_TO_G_SIZE = ((int)0x0CB7), - PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI = ((int)0x87F7), - T2F_IUI_V3F_EXT = ((int)0x81B2), - COMPRESSED_RGBA_FXT1_3DFX = ((int)0x86B1), - PIXEL_TEX_GEN_Q_ROUND_SGIX = ((int)0x8185), - OP_SUB_EXT = ((int)0x8796), - SAMPLER_CUBE_SHADOW_EXT = ((int)0x8DC5), - MATRIX4_NV = ((int)0x8634), - OP_ADD_EXT = ((int)0x8787), - DEPTH_TEST = ((int)0x0B71), - UNSIGNED_INVERT_NV = ((int)0x8537), - DRAW_BUFFER = ((int)0x0C01), - VERTEX_ID_NV = ((int)0x8C7B), - RGBA16 = ((int)0x805B), - ALPHA8UI_EXT = ((int)0x8D7E), - BLEND_DST = ((int)0x0BE0), - UNSIGNED_SHORT_8_8_MESA = ((int)0x85BA), - VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87D1), - FALSE = ((int)0), - LIGHTING = ((int)0x0B50), - EDGE_FLAG = ((int)0x0B43), - CON_6_ATI = ((int)0x8947), - VERTEX_PROGRAM_POINT_SIZE = ((int)0x8642), - INTENSITY32F_ARB = ((int)0x8817), - MAP1_VERTEX_ATTRIB11_4_NV = ((int)0x866B), - TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = ((int)0x8175), - MAX_RATIONAL_EVAL_ORDER_NV = ((int)0x86D7), - FRAGMENT_SHADER_ATI = ((int)0x8920), - SAMPLE_COVERAGE_VALUE_ARB = ((int)0x80AA), - TEXTURE_CUBE_MAP_NEGATIVE_X_ARB = ((int)0x8516), - CON_8_ATI = ((int)0x8949), - CON_1_ATI = ((int)0x8942), - MAX_VARYING_COMPONENTS_EXT = ((int)0x8B4B), - VERTEX_DATA_HINT_PGI = ((int)0x1A22A), - PACK_SWAP_BYTES = ((int)0x0D00), - CONVOLUTION_2D_EXT = ((int)0x8011), - OUT_OF_MEMORY = ((int)0x0505), - UNSIGNED_INT_8_8_S8_S8_REV_NV = ((int)0x86DB), - MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV = ((int)0x8C8B), - TEXTURE_BORDER = ((int)0x1005), - FLOAT = ((int)0x1406), - MATRIX3_ARB = ((int)0x88C3), - REFLECTION_MAP_NV = ((int)0x8512), - MODELVIEW31_ARB = ((int)0x873F), - GL_4X_BIT_ATI = ((int)0x00000002), - MINMAX_FORMAT_EXT = ((int)0x802F), - VIEWPORT = ((int)0x0BA2), - SRGB_EXT = ((int)0x8C40), - CLAMP_TO_EDGE = ((int)0x812F), - QUADS = ((int)0x0007), - CONSTANT_ARB = ((int)0x8576), - POLYGON_MODE = ((int)0x0B40), - R1UI_T2F_V3F_SUN = ((int)0x85C9), - CON_11_ATI = ((int)0x894C), - GL_4PASS_3_EXT = ((int)0x80A7), - VERTEX_WEIGHT_ARRAY_STRIDE_EXT = ((int)0x850F), - MAP2_VERTEX_ATTRIB0_4_NV = ((int)0x8670), - SECONDARY_COLOR_NV = ((int)0x852D), - FOG_INDEX = ((int)0x0B61), - R = ((int)0x2002), - S = ((int)0x2000), - TEXTURE_DEFORMATION_SGIX = ((int)0x8195), - SHININESS = ((int)0x1601), - T = ((int)0x2001), - RGB4_S3TC = ((int)0x83A1), - FRAGMENT_PROGRAM_NV = ((int)0x8870), - MAX_CONVOLUTION_WIDTH = ((int)0x801A), - COLOR_TABLE_SGI = ((int)0x80D0), - HALF_FLOAT_NV = ((int)0x140B), - DUAL_ALPHA8_SGIS = ((int)0x8111), - BUFFER_ACCESS_ARB = ((int)0x88BB), - NORMAL_ARRAY_BUFFER_BINDING = ((int)0x8897), - RGB16I_EXT = ((int)0x8D89), - MODELVIEW1_ARB = ((int)0x850A), - LUMINANCE4 = ((int)0x803F), - ASYNC_DRAW_PIXELS_SGIX = ((int)0x835D), - COLOR = ((int)0x1800), - CONVOLUTION_BORDER_COLOR_HP = ((int)0x8154), - GL_422_EXT = ((int)0x80CC), - BLEND_DST_ALPHA = ((int)0x80CA), - SECONDARY_COLOR_ARRAY_LIST_IBM = ((int)103077), - PIXEL_MAP_I_TO_B = ((int)0x0C74), - HISTOGRAM_BLUE_SIZE_EXT = ((int)0x802A), - OP_RECIP_SQRT_EXT = ((int)0x8795), - MAP1_INDEX = ((int)0x0D91), - DEPTH_TEXTURE_MODE = ((int)0x884B), - REG_24_ATI = ((int)0x8939), - IMAGE_MAG_FILTER_HP = ((int)0x815C), - MODELVIEW10_ARB = ((int)0x872A), - CURRENT_MATRIX_STACK_DEPTH_NV = ((int)0x8640), - VERTEX_ARRAY_BUFFER_BINDING_ARB = ((int)0x8896), - MAX_VIEWPORT_DIMS = ((int)0x0D3A), - CON_24_ATI = ((int)0x8959), - MAX_DRAW_BUFFERS_ATI = ((int)0x8824), - EDGE_FLAG_ARRAY_COUNT_EXT = ((int)0x808D), - LIST_PRIORITY_SGIX = ((int)0x8182), - MAP2_VERTEX_ATTRIB13_4_NV = ((int)0x867D), - REG_8_ATI = ((int)0x8929), - PIXEL_TILE_GRID_DEPTH_SGIX = ((int)0x8144), - ACCUM = ((int)0x0100), - POINTS = ((int)0x0000), - INT_VEC3 = ((int)0x8B54), - DRAW_BUFFER10_ARB = ((int)0x882F), - DEPTH_CLAMP_NV = ((int)0x864F), - ZOOM_Y = ((int)0x0D17), - COLOR_MATERIAL_FACE = ((int)0x0B55), - RGBA12_EXT = ((int)0x805A), - TEXTURE_BASE_LEVEL = ((int)0x813C), - RGBA8 = ((int)0x8058), - INDEX_MATERIAL_EXT = ((int)0x81B8), - DEPTH_TEXTURE_MODE_ARB = ((int)0x884B), - RGBA2 = ((int)0x8055), - MAX_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8872), - MIRROR_CLAMP_EXT = ((int)0x8742), - COLOR_INDEXES = ((int)0x1603), - RGBA4 = ((int)0x8056), - MAX_VARYING_FLOATS_ARB = ((int)0x8B4B), - E_TIMES_F_NV = ((int)0x8531), - FOG_COORDINATE_ARRAY_POINTER_EXT = ((int)0x8456), - MODELVIEW = ((int)0x1700), - TEXTURE30 = ((int)0x84DE), - INT_SAMPLER_CUBE_EXT = ((int)0x8DCC), - PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX = ((int)0x8188), - TEXTURE_COMPRESSION_HINT_ARB = ((int)0x84EF), - SAMPLER_2D_SHADOW_ARB = ((int)0x8B62), - PIXEL_PACK_BUFFER = ((int)0x88EB), - LUMINANCE_ALPHA32I_EXT = ((int)0x8D87), - MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV = ((int)0x8DA0), - CULL_FACE_MODE = ((int)0x0B45), - VERTEX_ATTRIB_ARRAY7_NV = ((int)0x8657), - SIGNED_ALPHA_NV = ((int)0x8705), - MODELVIEW20_ARB = ((int)0x8734), - MAX_RECTANGLE_TEXTURE_SIZE_ARB = ((int)0x84F8), - COMPRESSED_SIGNED_RED_RGTC1_EXT = ((int)0x8DBC), - SAMPLE_PATTERN_SGIS = ((int)0x80AC), - CON_28_ATI = ((int)0x895D), - CURRENT_MATRIX_NV = ((int)0x8641), - UNSIGNED_INT_S8_S8_8_8_NV = ((int)0x86DA), - HISTOGRAM_SINK_EXT = ((int)0x802D), - R1UI_C4F_N3F_V3F_SUN = ((int)0x85C8), - NEAREST_MIPMAP_NEAREST = ((int)0x2700), - PER_STAGE_CONSTANTS_NV = ((int)0x8535), - POST_CONVOLUTION_ALPHA_BIAS_EXT = ((int)0x8023), - MAP2_VERTEX_ATTRIB6_4_NV = ((int)0x8676), - BUFFER_SIZE_ARB = ((int)0x8764), - TEXCOORD2_BIT_PGI = ((int)0x20000000), - FRAGMENT_MATERIAL_EXT = ((int)0x8349), - BUFFER_ACCESS = ((int)0x88BB), - INTENSITY16_EXT = ((int)0x804D), - FRAMEZOOM_FACTOR_SGIX = ((int)0x818C), - NATIVE_GRAPHICS_BEGIN_HINT_PGI = ((int)0x1A203), - VERTEX_PROGRAM_BINDING_NV = ((int)0x864A), - INTENSITY4_EXT = ((int)0x804A), - VERTEX_ATTRIB_ARRAY_POINTER_ARB = ((int)0x8645), - OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV = ((int)0x8857), - SHADE_MODEL = ((int)0x0B54), - POLYGON_OFFSET_FACTOR = ((int)0x8038), - BLEND_DST_ALPHA_EXT = ((int)0x80CA), - UNSIGNED_IDENTITY_NV = ((int)0x8536), - DOT4_ATI = ((int)0x8967), - LINEAR_CLIPMAP_NEAREST_SGIX = ((int)0x844F), - ALPHA_SCALE = ((int)0x0D1C), - MAX_COMBINED_TEXTURE_IMAGE_UNITS = ((int)0x8B4D), - COLOR_TABLE_LUMINANCE_SIZE_SGI = ((int)0x80DE), - COLOR_TABLE_BLUE_SIZE = ((int)0x80DC), - COMPRESSED_RGBA_S3TC_DXT3_EXT = ((int)0x83F2), - OBJECT_LINEAR = ((int)0x2401), - FLOAT_VEC4 = ((int)0x8B52), - LUMINANCE12_ALPHA12_EXT = ((int)0x8047), - TEXTURE23_ARB = ((int)0x84D7), - TANGENT_ARRAY_POINTER_EXT = ((int)0x8442), - BUMP_ROT_MATRIX_SIZE_ATI = ((int)0x8776), - MAX_COLOR_MATRIX_STACK_DEPTH = ((int)0x80B3), - TEXTURE12_ARB = ((int)0x84CC), - MAX_PROGRAM_TEX_INDIRECTIONS_ARB = ((int)0x880D), - YCBCR_MESA = ((int)0x8757), - REPLACEMENT_CODE_ARRAY_POINTER_SUN = ((int)0x85C3), - CON_15_ATI = ((int)0x8950), - OPERAND2_RGB = ((int)0x8592), - RGB_ICC_SGIX = ((int)SGIX_icc_texture.RGB_ICC_SGIX), - DETAIL_TEXTURE_2D_SGIS = ((int)0x8095), - EVAL_VERTEX_ATTRIB9_NV = ((int)0x86CF), - NORMALIZE = ((int)0x0BA1), - COMPRESSED_INTENSITY_ARB = ((int)0x84EC), - STENCIL_BITS = ((int)0x0D57), - REPLACE_EXT = ((int)0x8062), - MAX_VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87C7), - UNSIGNED_INT_2_10_10_10_REV_EXT = ((int)0x8368), - CON_10_ATI = ((int)0x894B), - UNPACK_SKIP_PIXELS = ((int)0x0CF4), - COLOR_ARRAY_TYPE_EXT = ((int)0x8082), - DOT3_RGBA_EXT = ((int)0x8741), - MODELVIEW5_ARB = ((int)0x8725), - POINT_FADE_THRESHOLD_SIZE_ARB = ((int)0x8128), - TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB = ((int)0x851A), - COLOR_SUM_CLAMP_NV = ((int)0x854F), - READ_FRAMEBUFFER_EXT = ((int)0x8CA8), - SPRITE_SGIX = ((int)0x8148), - LEFT = ((int)0x0406), - LIGHT_MODEL_LOCAL_VIEWER = ((int)0x0B51), - LUMINANCE6_ALPHA2 = ((int)0x8044), - DSDT8_MAG8_NV = ((int)0x870A), - UNSIGNED_INT_SAMPLER_2D_RECT_EXT = ((int)0x8DD5), - TEXTURE_2D_BINDING_EXT = ((int)0x8069), - DRAW_BUFFER6 = ((int)0x882B), - FLOAT_CLEAR_COLOR_VALUE_NV = ((int)0x888D), - MAX_PROGRAM_PARAMETERS_ARB = ((int)0x88A9), - FLOAT_VEC3_ARB = ((int)0x8B51), - TEXTURE_MAX_LOD_SGIS = ((int)0x813B), - MAX_PROGRAM_NATIVE_PARAMETERS_ARB = ((int)0x88AB), - RGBA = ((int)0x1908), - TEXTURE_COORD_ARRAY = ((int)0x8078), - ACCUM_BLUE_BITS = ((int)0x0D5A), - FOG_COORDINATE_ARRAY_LIST_IBM = ((int)103076), - LOGIC_OP = ((int)0x0BF1), - TEXTURE_CUBE_MAP_POSITIVE_X_EXT = ((int)0x8515), - SOURCE3_RGB_NV = ((int)0x8583), - WEIGHT_ARRAY_STRIDE_ARB = ((int)0x86AA), - CLIP_DISTANCE_NV = ((int)0x8C7A), - RGB_SCALE_ARB = ((int)0x8573), - ACCUM_RED_BITS = ((int)0x0D58), - VERTEX_STATE_PROGRAM_NV = ((int)0x8621), - VIBRANCE_BIAS_NV = ((int)0x8719), - CLAMP_TO_BORDER_ARB = ((int)0x812D), - DEPTH_STENCIL_EXT = ((int)0x84F9), - FLOAT_RGBA_NV = ((int)0x8883), - R1UI_C3F_V3F_SUN = ((int)0x85C6), - ALPHA_BIAS = ((int)0x0D1D), - ALPHA_FLOAT32_ATI = ((int)0x8816), - GEOMETRY_OUTPUT_TYPE_EXT = ((int)0x8DDC), + ALPHA_MIN_CLAMP_INGR = ((int)0x8563), DOUBLE_EXT = ((int)0x140A), - OP_FRAC_EXT = ((int)0x8789), - DST_COLOR = ((int)0x0306), - PACK_IMAGE_DEPTH_SGIS = ((int)0x8131), - VERTEX_SHADER_VARIANTS_EXT = ((int)0x87D0), - TEXTURE_MAX_LEVEL_SGIS = ((int)0x813D), - SIGNED_LUMINANCE8_ALPHA8_NV = ((int)0x8704), - POINT_BIT = ((int)0x00000002), - TEXTURE26_ARB = ((int)0x84DA), - MAP2_VERTEX_ATTRIB3_4_NV = ((int)0x8673), - ALPHA_BITS = ((int)0x0D55), - RED_BIAS = ((int)0x0D15), - OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV = ((int)0x8852), - CON_19_ATI = ((int)0x8954), - COMPRESSED_LUMINANCE_ALPHA_ARB = ((int)0x84EB), - PIXEL_MAP_B_TO_B = ((int)0x0C78), - FOG_SCALE_SGIX = ((int)0x81FC), - STENCIL_INDEX4_EXT = ((int)0x8D47), - VARIANT_ARRAY_POINTER_EXT = ((int)0x87E9), - RED_BITS = ((int)0x0D52), - TEXTURE_GEQUAL_R_SGIX = ((int)0x819D), - UNSIGNED_SHORT_5_5_5_1_EXT = ((int)0x8034), - TEXTURE28_ARB = ((int)0x84DC), - COMBINE_ALPHA = ((int)0x8572), - TEXTURE_MAX_LEVEL = ((int)0x813D), - POSITION = ((int)0x1203), - MAX_VERTEX_SHADER_LOCALS_EXT = ((int)0x87C9), - YCBCR_422_APPLE = ((int)0x85B9), - MOV_ATI = ((int)0x8961), - RASTERIZER_DISCARD_NV = ((int)0x8C89), - LOWER_LEFT = ((int)0x8CA1), - COLOR_INDEX12_EXT = ((int)0x80E6), - SECONDARY_COLOR_ARRAY = ((int)0x845E), - INDEX_BITS = ((int)0x0D51), - UNSIGNED_SHORT_5_6_5 = ((int)0x8363), - PACK_IMAGE_HEIGHT_EXT = ((int)0x806C), - OP_MULTIPLY_MATRIX_EXT = ((int)0x8798), - TRANSFORM_BIT = ((int)0x00001000), - NORMAL_ARRAY_TYPE_EXT = ((int)0x807E), - MAX = ((int)0x8008), - NICEST = ((int)0x1102), - PROJECTION_MATRIX = ((int)0x0BA7), - ONE_MINUS_CONSTANT_ALPHA_EXT = ((int)0x8004), - MVP_MATRIX_EXT = ((int)0x87E3), - CONVOLUTION_FILTER_SCALE = ((int)0x8014), - DRAW_BUFFER12_ARB = ((int)0x8831), - T2F_N3F_V3F = ((int)0x2A2B), - REFERENCE_PLANE_EQUATION_SGIX = ((int)0x817E), - DUAL_TEXTURE_SELECT_SGIS = ((int)0x8124), - VERTEX_ATTRIB_ARRAY8_NV = ((int)0x8658), - COMBINE_EXT = ((int)0x8570), - RGBA2_EXT = ((int)0x8055), - FRAGMENT_LIGHT2_SGIX = ((int)0x840E), - MAP1_VERTEX_ATTRIB14_4_NV = ((int)0x866E), - UNSIGNED_SHORT = ((int)0x1403), - UNSIGNED_SHORT_4_4_4_4_EXT = ((int)0x8033), - UNPACK_IMAGE_HEIGHT_EXT = ((int)0x806E), - LUMINANCE_ALPHA8I_EXT = ((int)0x8D93), - FOG_COORDINATE_EXT = ((int)0x8451), - COLOR_ARRAY_SIZE = ((int)0x8081), - MAP1_GRID_DOMAIN = ((int)0x0DD0), - OUTPUT_TEXTURE_COORD23_EXT = ((int)0x87B4), - POST_CONVOLUTION_GREEN_BIAS = ((int)0x8021), - UNPACK_SKIP_VOLUMES_SGIS = ((int)0x8132), - SAMPLE_COVERAGE_VALUE = ((int)0x80AA), - RGBA16F_ARB = ((int)0x881A), - PIXEL_UNPACK_BUFFER_BINDING_EXT = ((int)0x88EF), - TEXTURE_HI_SIZE_NV = ((int)0x871B), - UNSIGNED_SHORT_4_4_4_4_REV_EXT = ((int)0x8365), - CON_9_ATI = ((int)0x894A), - GREEN_SCALE = ((int)0x0D18), - HISTOGRAM_LUMINANCE_SIZE_EXT = ((int)0x802C), - MAP2_VERTEX_ATTRIB10_4_NV = ((int)0x867A), - FLOAT_MAT3 = ((int)0x8B5B), - ACTIVE_UNIFORMS = ((int)0x8B86), - AVERAGE_EXT = ((int)0x8335), - COLOR_WRITEMASK = ((int)0x0C23), - FOG_FACTOR_TO_ALPHA_SGIX = ((int)0x836F), - ACTIVE_TEXTURE_ARB = ((int)0x84E0), - PIXEL_UNPACK_BUFFER_ARB = ((int)0x88EC), - INTERLACE_READ_INGR = ((int)0x8568), - STREAM_DRAW_ARB = ((int)0x88E0), - DEPTH_BOUNDS_TEST_EXT = ((int)0x8890), - EDGE_FLAG_ARRAY = ((int)0x8079), - GL_422_AVERAGE_EXT = ((int)0x80CE), - MAP2_VERTEX_ATTRIB14_4_NV = ((int)0x867E), - TEXTURE_LIGHT_EXT = ((int)0x8350), - LESS = ((int)0x0201), - CURRENT_RASTER_NORMAL_SGIX = ((int)0x8406), - ONE_MINUS_SRC_ALPHA = ((int)0x0303), - COMPRESSED_SRGB_ALPHA_EXT = ((int)0x8C49), - ALPHA16F_ARB = ((int)0x881C), - TEXTURE_BINDING_BUFFER_EXT = ((int)0x8C2C), - RGBA16I_EXT = ((int)0x8D88), - OBJECT_ACTIVE_UNIFORMS_ARB = ((int)0x8B86), - POST_COLOR_MATRIX_ALPHA_SCALE_SGI = ((int)0x80B7), - BACK_RIGHT = ((int)0x0403), - DRAW_BUFFER12 = ((int)0x8831), - DRAW_BUFFER14 = ((int)0x8833), - COLOR_CLEAR_VALUE = ((int)0x0C22), - QUERY_RESULT = ((int)0x8866), - STENCIL_BACK_PASS_DEPTH_FAIL_ATI = ((int)0x8802), - TEXTURE_INTERNAL_FORMAT = ((int)0x1003), - INT_VEC4 = ((int)0x8B55), - COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT = ((int)0x8C71), - GEOMETRY_DEFORMATION_SGIX = ((int)0x8194), - NUM_GENERAL_COMBINERS_NV = ((int)0x854E), - OP_MADD_EXT = ((int)0x8788), - COLOR_MATERIAL = ((int)0x0B57), - INDEX_ARRAY_POINTER = ((int)0x8091), - YCRCBA_SGIX = ((int)0x8319), - PROGRAM_FORMAT_ARB = ((int)0x8876), - GL_422_REV_AVERAGE_EXT = ((int)0x80CF), - FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT = ((int)0x8DA9), - FOG_COORD_ARRAY = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY), - BUMP_NUM_TEX_UNITS_ATI = ((int)0x8777), - VARIANT_ARRAY_TYPE_EXT = ((int)0x87E7), - ARRAY_BUFFER_BINDING = ((int)0x8894), - FLOAT_R32_NV = ((int)0x8885), - COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = ((int)0x8C4F), - NAND = ((int)0x150E), - TEXTURE_LUMINANCE_SIZE = ((int)0x8060), - RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV = ((int)0x86D9), - MAX_PROGRAM_ADDRESS_REGISTERS_ARB = ((int)0x88B1), - FOG_HINT = ((int)0x0C54), - LEQUAL = ((int)0x0203), - MATRIX_EXT = ((int)0x87C0), - PROGRAM_ERROR_STRING_ARB = ((int)0x8874), - TEXTURE_BINDING_2D_ARRAY_EXT = ((int)0x8C1D), - ELEMENT_ARRAY_BUFFER_BINDING = ((int)0x8895), - LINE_WIDTH = ((int)0x0B21), - TEXTURE_COLOR_WRITEMASK_SGIS = ((int)0x81EF), - RGB_SCALE_EXT = ((int)0x8573), - POST_COLOR_MATRIX_RED_BIAS = ((int)0x80B8), - TEXTURE_2D = ((int)0x0DE1), - TEXTURE_3D = ((int)0x806F), - DEPTH_BUFFER_BIT = ((int)0x00000100), - TEXTURE_1D = ((int)0x0DE0), - DRAW_BUFFER15 = ((int)0x8834), - SHORT = ((int)0x1402), - POST_CONVOLUTION_RED_BIAS = ((int)0x8020), - TEXTURE31_ARB = ((int)0x84DF), - MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87CA), - LIGHTING_BIT = ((int)0x00000040), - VERTEX_ATTRIB_ARRAY_ENABLED_ARB = ((int)0x8622), - COLOR_ATTACHMENT7_EXT = ((int)0x8CE7), - EYE_POINT_SGIS = ((int)0x81F4), - MODELVIEW26_ARB = ((int)0x873A), - CON_18_ATI = ((int)0x8953), - COLOR_TABLE = ((int)0x80D0), - UNPACK_SKIP_ROWS = ((int)0x0CF3), - DYNAMIC_COPY = ((int)0x88EA), - VERTEX_ATTRIB_ARRAY0_NV = ((int)0x8650), - R11F_G11F_B10F_EXT = ((int)0x8C3A), - CULL_FACE = ((int)0x0B44), - BLUE_MIN_CLAMP_INGR = ((int)0x8562), - CON_23_ATI = ((int)0x8958), - BUFFER_USAGE_ARB = ((int)0x8765), - STORAGE_CACHED_APPLE = ((int)0x85BE), - SLICE_ACCUM_SUN = ((int)0x85CC), - REG_2_ATI = ((int)0x8923), - UNPACK_SWAP_BYTES = ((int)0x0CF0), - LUMINANCE8I_EXT = ((int)0x8D92), - PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB = ((int)0x8809), - LUMINANCE_INTEGER_EXT = ((int)0x8D9C), - CURRENT_VERTEX_WEIGHT_EXT = ((int)0x850B), - PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = ((int)0x88B2), - DRAW_BUFFER0_ATI = ((int)0x8825), - MAX_COLOR_ATTACHMENTS_EXT = ((int)0x8CDF), - TANGENT_ARRAY_EXT = ((int)0x8439), - QUAD_ALPHA8_SGIS = ((int)0x811F), - STENCIL_BUFFER_BIT = ((int)0x00000400), - HI_SCALE_NV = ((int)0x870E), - GL_8X_BIT_ATI = ((int)0x00000004), - MAX_ATTRIB_STACK_DEPTH = ((int)0x0D35), - SIGNED_INTENSITY_NV = ((int)0x8707), - VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87CF), - CURRENT_RASTER_TEXTURE_COORDS = ((int)0x0B06), - PASS_THROUGH_TOKEN = ((int)0x0700), - CONSTANT_ALPHA_EXT = ((int)0x8003), - FLAT = ((int)0x1D00), - POINT_SPRITE_ARB = ((int)0x8861), - OPERAND0_ALPHA_EXT = ((int)0x8598), - CULL_VERTEX_OBJECT_POSITION_EXT = ((int)0x81AC), - GL_4PASS_0_EXT = ((int)0x80A4), - FEEDBACK_BUFFER_SIZE = ((int)0x0DF1), - RGB5_EXT = ((int)0x8050), + LIGHT_MODEL_COLOR_CONTROL_EXT = ((int)0x81F8), + FOG_COORDINATE_ARRAY_STRIDE_EXT = ((int)0x8455), EDGE_FLAG_ARRAY_LIST_STRIDE_IBM = ((int)103085), - COLOR_TABLE_WIDTH_SGI = ((int)0x80D9), - CONVOLUTION_BORDER_COLOR = ((int)0x8154), - EVAL_FRACTIONAL_TESSELLATION_NV = ((int)0x86C5), - FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT = ((int)0x8CDC), - INT_SAMPLER_2D_RECT_EXT = ((int)0x8DCD), - RESAMPLE_ZERO_FILL_SGIX = ((int)0x842F), - UNPACK_CMYK_HINT_EXT = ((int)0x800F), - TEXTURE_GREEN_SIZE_EXT = ((int)0x805D), - MUL_ATI = ((int)0x8964), - RGB5_A1_EXT = ((int)0x8057), - CONVOLUTION_2D = ((int)0x8011), - CONVOLUTION_1D = ((int)0x8010), - SAMPLES_PASSED_ARB = ((int)0x8914), - PIXEL_MAP_I_TO_G_SIZE = ((int)0x0CB3), - NEAREST_MIPMAP_LINEAR = ((int)0x2702), - MODELVIEW12_ARB = ((int)0x872C), - EDGE_FLAG_ARRAY_STRIDE = ((int)0x808C), - FOG_OFFSET_VALUE_SGIX = ((int)0x8199), - PROXY_TEXTURE_1D_EXT = ((int)0x8063), - COLOR_TABLE_ALPHA_SIZE = ((int)0x80DD), - DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV = ((int)0x86F3), - PROGRAM_NATIVE_INSTRUCTIONS_ARB = ((int)0x88A2), - SOURCE2_ALPHA = ((int)0x858A), - SAMPLER_BUFFER_EXT = ((int)0x8DC2), - CLIP_NEAR_HINT_PGI = ((int)0x1A220), - QUARTER_BIT_ATI = ((int)0x00000010), - MAP1_VERTEX_ATTRIB8_4_NV = ((int)0x8668), - VARIABLE_A_NV = ((int)0x8523), - POINT_SPRITE_COORD_ORIGIN = ((int)0x8CA0), - MAX_TEXTURE_COORDS_NV = ((int)0x8871), - OPERAND0_RGB = ((int)0x8590), - OUTPUT_TEXTURE_COORD16_EXT = ((int)0x87AD), - SAMPLE_ALPHA_TO_ONE_EXT = ((int)0x809F), - MATRIX4_ARB = ((int)0x88C4), - PROGRAM_PARAMETER_NV = ((int)0x8644), - SRC0_ALPHA = ((int)VERSION_1_3.SOURCE0_ALPHA), - COLOR_ARRAY_BUFFER_BINDING_ARB = ((int)0x8898), - MAT_SHININESS_BIT_PGI = ((int)0x02000000), - MODELVIEW1_STACK_DEPTH_EXT = ((int)0x8502), - RGB5 = ((int)0x8050), - COLOR_MATRIX = ((int)0x80B1), - SOURCE0_RGB = ((int)0x8580), - MAP2_VERTEX_ATTRIB4_4_NV = ((int)0x8674), - EDGEFLAG_BIT_PGI = ((int)0x00040000), - BLUE_BIT_ATI = ((int)0x00000004), - LUMINANCE_ALPHA32F_ARB = ((int)0x8819), - TEXTURE_ENV_MODE = ((int)0x2200), - OUTPUT_TEXTURE_COORD1_EXT = ((int)0x879E), - COMBINE4_NV = ((int)0x8503), - TEXTURE_COORD_ARRAY_LIST_IBM = ((int)103074), - COMPRESSED_TEXTURE_FORMATS = ((int)0x86A3), - TEXTURE_COMPARE_SGIX = ((int)0x819A), - DRAW_BUFFER5_ATI = ((int)0x882A), - PN_TRIANGLES_POINT_MODE_ATI = ((int)0x87F2), - TEXTURE_COORD_ARRAY_BUFFER_BINDING = ((int)0x889A), - INDEX_ARRAY_STRIDE = ((int)0x8086), - SAMPLE_ALPHA_TO_COVERAGE = ((int)0x809E), - COMPARE_R_TO_TEXTURE_ARB = ((int)0x884E), - REPEAT = ((int)0x2901), - TEXTURE4 = ((int)0x84C4), - LIGHT_MODEL_AMBIENT = ((int)0x0B53), - TEXTURE27_ARB = ((int)0x84DB), - TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB = ((int)0x889A), - SIGNED_NEGATE_NV = ((int)0x853D), - PROXY_COLOR_TABLE = ((int)0x80D3), - TEXTURE_LEQUAL_R_SGIX = ((int)0x819C), - BLEND_SRC_ALPHA_EXT = ((int)0x80CB), - FRAGMENT_DEPTH = ((int)0x8452), - GENERATE_MIPMAP_SGIS = ((int)0x8191), - LUMINANCE16_ALPHA16_EXT = ((int)0x8048), - PIXEL_MAP_I_TO_R_SIZE = ((int)0x0CB2), - BUMP_ENVMAP_ATI = ((int)0x877B), - REPLICATE_BORDER_HP = ((int)0x8153), - REG_3_ATI = ((int)0x8924), - TEXTURE_BUFFER_FORMAT_EXT = ((int)0x8C2E), - LINE_TOKEN = ((int)0x0702), - PROXY_TEXTURE_2D_STACK_MESAX = ((int)0x875C), - POLYGON_OFFSET_FILL = ((int)0x8037), - R1UI_T2F_N3F_V3F_SUN = ((int)0x85CA), + NORMAL_ARRAY = ((int)0x8075), SOURCE3_ALPHA_NV = ((int)0x858B), - SPOT_EXPONENT = ((int)0x1205), - LUMINANCE16_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ICC_SGIX), - SIGNED_HILO8_NV = ((int)0x885F), - GEOMETRY_DEFORMATION_BIT_SGIX = ((int)0x00000002), - POST_CONVOLUTION_RED_SCALE_EXT = ((int)0x801C), - BINORMAL_ARRAY_TYPE_EXT = ((int)0x8440), - ALPHA16I_EXT = ((int)0x8D8A), - SINGLE_COLOR = ((int)0x81F9), - HISTOGRAM_GREEN_SIZE = ((int)0x8029), - VARIABLE_C_NV = ((int)0x8525), - STREAM_READ_ARB = ((int)0x88E1), - MATRIX10_ARB = ((int)0x88CA), - LIGHT1 = ((int)0x4001), - DEPTH_BOUNDS_EXT = ((int)0x8891), - LUMINANCE_ALPHA16I_EXT = ((int)0x8D8D), - TRIANGLE_FAN = ((int)0x0006), - OUTPUT_TEXTURE_COORD28_EXT = ((int)0x87B9), - INTENSITY = ((int)0x8049), - BGRA_INTEGER_EXT = ((int)0x8D9B), - PRIMARY_COLOR_NV = ((int)0x852C), - STREAM_COPY = ((int)0x88E2), - CLIENT_ALL_ATTRIB_BITS = unchecked((int)0xFFFFFFFF), - POST_CONVOLUTION_RED_SCALE = ((int)0x801C), - MAX_TEXTURE_IMAGE_UNITS_NV = ((int)0x8872), - OUTPUT_TEXTURE_COORD10_EXT = ((int)0x87A7), - MAP_COLOR = ((int)0x0D10), - ALPHA16_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA16_ICC_SGIX), - COLOR_MATRIX_STACK_DEPTH_SGI = ((int)0x80B2), - BUFFER_SERIALIZED_MODIFY_APPLE = ((int)0x8A12), - ASYNC_READ_PIXELS_SGIX = ((int)0x835E), - OPERAND3_RGB_NV = ((int)0x8593), - OBJECT_INFO_LOG_LENGTH_ARB = ((int)0x8B84), - TEXTURE8 = ((int)0x84C8), - DEPTH_BIAS = ((int)0x0D1F), - PRIMITIVE_RESTART_NV = ((int)0x8558), - BGRA = ((int)0x80E1), - DYNAMIC_DRAW_ARB = ((int)0x88E8), - FRONT_RIGHT = ((int)0x0401), - MODELVIEW27_ARB = ((int)0x873B), - POLYGON_OFFSET_FACTOR_EXT = ((int)0x8038), - BIAS_BY_NEGATIVE_ONE_HALF_NV = ((int)0x8541), - ATTRIB_ARRAY_POINTER_NV = ((int)0x8645), - INDEX_ARRAY_TYPE = ((int)0x8085), - LUMINANCE = ((int)0x1909), - MODELVIEW14_ARB = ((int)0x872E), - WEIGHT_ARRAY_BUFFER_BINDING = ((int)0x889E), - MATRIX11_ARB = ((int)0x88CB), - REG_10_ATI = ((int)0x892B), - RGBA_SIGNED_COMPONENTS_EXT = ((int)0x8C3C), - MAT_EMISSION_BIT_PGI = ((int)0x00800000), - PACK_INVERT_MESA = ((int)0x8758), - GLOBAL_ALPHA_SUN = ((int)0x81D9), - MAX_CONVOLUTION_WIDTH_EXT = ((int)0x801A), - LUMINANCE16I_EXT = ((int)0x8D8C), - TRANSPOSE_MODELVIEW_MATRIX_ARB = ((int)0x84E3), - MAX_VERTEX_ATTRIBS_ARB = ((int)0x8869), - COMP_BIT_ATI = ((int)0x00000002), - DSDT8_NV = ((int)0x8709), - DEPTH_SCALE = ((int)0x0D1E), - TEXTURE_COMPARE_FUNC = ((int)0x884D), - MAP2_TEXTURE_COORD_1 = ((int)0x0DB3), - FOG_COORD_ARRAY_STRIDE = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_STRIDE), - TYPE_RGBA_FLOAT_ATI = ((int)0x8820), - DISCARD_NV = ((int)0x8530), - MAP1_VERTEX_ATTRIB3_4_NV = ((int)0x8663), - COMPRESSED_RGBA = ((int)0x84EE), - CURRENT_FOG_COORDINATE_EXT = ((int)0x8453), - CON_14_ATI = ((int)0x894F), - LINE_WIDTH_GRANULARITY = ((int)0x0B23), - GL_4D_COLOR_TEXTURE = ((int)0x0604), - VENDOR = ((int)0x1F00), - PIXEL_MAP_R_TO_R_SIZE = ((int)0x0CB6), - IUI_N3F_V2F_EXT = ((int)0x81AF), - INTERLACE_READ_OML = ((int)0x8981), - DRAW_BUFFER13_ATI = ((int)0x8832), - COMBINE_ARB = ((int)0x8570), - SAMPLER_1D_ARRAY_EXT = ((int)0x8DC0), - INVARIANT_EXT = ((int)0x87C2), - INDEX_ARRAY_BUFFER_BINDING_ARB = ((int)0x8899), - SMOOTH_POINT_SIZE_GRANULARITY = ((int)0x0B13), - INTENSITY8UI_EXT = ((int)0x8D7F), - TEXTURE_LOD_BIAS_T_SGIX = ((int)0x818F), - ALL_ATTRIB_BITS = unchecked((int)0xFFFFFFFF), - LINEAR_DETAIL_SGIS = ((int)0x8097), - READ_ONLY_ARB = ((int)0x88B8), - COMPRESSED_LUMINANCE_ARB = ((int)0x84EA), - TEXTURE_1D_STACK_BINDING_MESAX = ((int)0x875D), - LO_BIAS_NV = ((int)0x8715), - MAX_PROGRAM_IF_DEPTH_NV = ((int)0x88F6), - MAX_VERTEX_TEXTURE_IMAGE_UNITS = ((int)0x8B4C), - DOT_PRODUCT_DEPTH_REPLACE_NV = ((int)0x86ED), - VERTEX_ARRAY_STORAGE_HINT_APPLE = ((int)0x851F), - REG_18_ATI = ((int)0x8933), - ARRAY_OBJECT_BUFFER_ATI = ((int)0x8766), - NATIVE_GRAPHICS_END_HINT_PGI = ((int)0x1A204), - AUX_BUFFERS = ((int)0x0C00), - INVALID_VALUE = ((int)0x0501), - LINE_SMOOTH = ((int)0x0B20), - CON_12_ATI = ((int)0x894D), - DRAW_BUFFER15_ARB = ((int)0x8834), - MULTISAMPLE_BIT_EXT = ((int)0x20000000), - DEPENDENT_AR_TEXTURE_2D_NV = ((int)0x86E9), - TRANSFORM_HINT_APPLE = ((int)0x85B1), - EIGHTH_BIT_ATI = ((int)0x00000020), - VERTEX_ATTRIB_ARRAY_NORMALIZED = ((int)0x886A), - MAX_CLIENT_ATTRIB_STACK_DEPTH = ((int)0x0D3B), - MAX_CUBE_MAP_TEXTURE_SIZE_ARB = ((int)0x851C), - CLIENT_ACTIVE_TEXTURE_ARB = ((int)0x84E1), - FOG_DISTANCE_MODE_NV = ((int)0x855A), - LIST_BIT = ((int)0x00020000), - RGB9_E5_EXT = ((int)0x8C3D), - TEXTURE_HEIGHT = ((int)0x1001), - TRANSPOSE_NV = ((int)0x862C), - DECR = ((int)0x1E03), - MAX_VERTEX_ATTRIBS = ((int)0x8869), - ONE_MINUS_CONSTANT_COLOR = ((int)0x8002), - CUBIC_HP = ((int)0x815F), - BUFFER_FLUSHING_UNMAP_APPLE = ((int)0x8A13), - REG_6_ATI = ((int)0x8927), - ALPHA_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA_ICC_SGIX), - RGBA_FLOAT16_ATI = ((int)0x881A), - POST_COLOR_MATRIX_RED_SCALE = ((int)0x80B4), - TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F8), - EVAL_2D_NV = ((int)0x86C0), - MAX_TEXTURE_COORDS_ARB = ((int)0x8871), - COLOR_INDEX = ((int)0x1900), - UNSIGNED_SHORT_4_4_4_4 = ((int)0x8033), - ELEMENT_ARRAY_APPLE = ((int)0x8768), - REFERENCE_PLANE_SGIX = ((int)0x817D), - SAMPLE_BUFFERS_ARB = ((int)0x80A8), - UNSIGNED_SHORT_5_6_5_REV_EXT = ((int)0x8364), - PIXEL_MAP_S_TO_S_SIZE = ((int)0x0CB1), - OUTPUT_VERTEX_EXT = ((int)0x879A), - BOOL = ((int)0x8B56), - PIXEL_TILE_GRID_HEIGHT_SGIX = ((int)0x8143), - HALF_FLOAT_ARB = ((int)0x140B), - OR_INVERTED = ((int)0x150D), - FUNC_ADD = ((int)0x8006), - TEXTURE_GEN_MODE = ((int)0x2500), - TEXTURE_INTENSITY_TYPE_ARB = ((int)0x8C15), - NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI = ((int)0x8973), - SRGB8_ALPHA8_EXT = ((int)0x8C43), - EYE_DISTANCE_TO_LINE_SGIS = ((int)0x81F2), - SECONDARY_COLOR_ARRAY_POINTER = ((int)0x845D), - SAMPLE_MASK_VALUE_EXT = ((int)0x80AA), - FOG_COORDINATE_ARRAY_EXT = ((int)0x8457), - SIGNED_RGB8_NV = ((int)0x86FF), - RENDERBUFFER_RED_SIZE_EXT = ((int)0x8D50), - FILL = ((int)0x1B02), - PHONG_WIN = ((int)0x80EA), - PROXY_TEXTURE_RECTANGLE_NV = ((int)0x84F7), - R1UI_N3F_V3F_SUN = ((int)0x85C7), - SRC0_RGB = ((int)VERSION_1_3.SOURCE0_RGB), - WEIGHT_ARRAY_SIZE_ARB = ((int)0x86AB), - COMPRESSED_RGB_FXT1_3DFX = ((int)0x86B0), - DSDT_MAG_NV = ((int)0x86F6), - FRAMEBUFFER_BINDING_EXT = ((int)0x8CA6), - TEXTURE_ENV = ((int)0x2300), - OPERAND0_ALPHA = ((int)0x8598), - CONVOLUTION_FILTER_SCALE_EXT = ((int)0x8014), - SHARPEN_TEXTURE_FUNC_POINTS_SGIS = ((int)0x80B0), - MIRROR_CLAMP_TO_EDGE_EXT = ((int)0x8743), - CON_0_ATI = ((int)0x8941), - WEIGHT_SUM_UNITY_ARB = ((int)0x86A6), - UNSIGNED_INT_2_10_10_10_REV = ((int)0x8368), - TEXTURE_1D_BINDING_EXT = ((int)0x8068), - TEXTURE_BINDING_CUBE_MAP_ARB = ((int)0x8514), - FLOAT_RG_NV = ((int)0x8881), - UNSIGNED_SHORT_1_5_5_5_REV = ((int)0x8366), - COLOR_SUM_ARB = ((int)0x8458), - SPRITE_EYE_ALIGNED_SGIX = ((int)0x814E), - TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV = ((int)0x8C88), - MAX_RECTANGLE_TEXTURE_SIZE_NV = ((int)0x84F8), - DEPTH_STENCIL_TO_RGBA_NV = ((int)0x886E), - TEXTURE3_ARB = ((int)0x84C3), - Z_EXT = ((int)0x87D7), - PROXY_TEXTURE_1D_STACK_MESAX = ((int)0x875B), - DISTANCE_ATTENUATION_SGIS = ((int)0x8129), - OUTPUT_TEXTURE_COORD0_EXT = ((int)0x879D), - ACCUM_GREEN_BITS = ((int)0x0D59), - REDUCE_EXT = ((int)0x8016), - UNSIGNED_BYTE_2_3_3_REV_EXT = ((int)0x8362), - MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = ((int)0x88B3), - OBJECT_COMPILE_STATUS_ARB = ((int)0x8B81), + SIGNED_RGB8_UNSIGNED_ALPHA8_NV = ((int)0x870D), + HISTOGRAM_LUMINANCE_SIZE = ((int)0x802C), + SIGNED_RGBA8_NV = ((int)0x86FC), + VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV = ((int)0x8533), + UNPACK_SKIP_ROWS = ((int)0x0CF3), + POLYGON_OFFSET_FACTOR = ((int)0x8038), + HISTOGRAM_WIDTH_EXT = ((int)0x8026), + DEPTH_COMPONENT32F_NV = ((int)0x8DAB), + MAP_ATTRIB_U_ORDER_NV = ((int)0x86C3), + OUTPUT_TEXTURE_COORD15_EXT = ((int)0x87AC), + COLOR_TABLE_BLUE_SIZE = ((int)0x80DC), + INTENSITY32UI_EXT = ((int)0x8D73), + CON_4_ATI = ((int)0x8945), + CLAMP = ((int)0x2900), + STENCIL_TEST = ((int)0x0B90), + MAP2_VERTEX_ATTRIB3_4_NV = ((int)0x8673), + DETAIL_TEXTURE_FUNC_POINTS_SGIS = ((int)0x809C), + TEXTURE_COMPONENTS = ((int)0x1003), + VERTEX4_BIT_PGI = ((int)0x00000008), + NORMAL_MAP_NV = ((int)0x8511), INT_SAMPLER_1D_ARRAY_EXT = ((int)0x8DCE), - PIXEL_TEXTURE_SGIS = ((int)0x8353), - REPLACEMENT_CODE_ARRAY_TYPE_SUN = ((int)0x85C1), - COLOR_ATTACHMENT14_EXT = ((int)0x8CEE), + DRAW_BUFFER4 = ((int)0x8829), + VERTEX_WEIGHT_ARRAY_POINTER_EXT = ((int)0x8510), + REG_24_ATI = ((int)0x8939), + FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT = ((int)0x8CD1), + DUAL_LUMINANCE16_SGIS = ((int)0x8117), + MODELVIEW30_ARB = ((int)0x873E), + COLOR_INDEX16_EXT = ((int)0x80E7), + RGBA_S3TC = ((int)0x83A2), + INTENSITY_FLOAT32_ATI = ((int)0x8817), + BLEND_COLOR = ((int)0x8005), + COMPRESSED_LUMINANCE = ((int)0x84EA), + TABLE_TOO_LARGE = ((int)0x8031), + MAP2_VERTEX_ATTRIB8_4_NV = ((int)0x8678), + UNIFORM_BUFFER_EXT = ((int)0x8DEE), + FLOAT_MAT3_ARB = ((int)0x8B5B), + HALF_BIT_ATI = ((int)0x00000008), + LINEAR_MIPMAP_NEAREST = ((int)0x2701), + MAP1_GRID_SEGMENTS = ((int)0x0DD1), + MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV = ((int)0x8DA0), + OBJECT_INFO_LOG_LENGTH_ARB = ((int)0x8B84), + PIXEL_CUBIC_WEIGHT_EXT = ((int)0x8333), + COMBINER0_NV = ((int)0x8550), + COMBINER1_NV = ((int)0x8551), + DRAW_BUFFER3 = ((int)0x8828), + MODELVIEW11_ARB = ((int)0x872B), + CURRENT_PROGRAM = ((int)0x8B8D), + COMPRESSED_RGBA = ((int)0x84EE), + PREVIOUS_TEXTURE_INPUT_NV = ((int)0x86E4), + TEXTURE_CUBE_MAP = ((int)0x8513), + MATRIX2_ARB = ((int)0x88C2), + TEXTURE4_ARB = ((int)0x84C4), + INDEX_ARRAY_LIST_STRIDE_IBM = ((int)103083), + UNSIGNED_SHORT_1_5_5_5_REV = ((int)0x8366), + GEQUAL = ((int)0x0206), + MULT = ((int)0x0103), + RED_BIAS = ((int)0x0D15), + INTENSITY8 = ((int)0x804B), + REG_1_ATI = ((int)0x8922), + INT = ((int)0x1404), + TEXTURE28_ARB = ((int)0x84DC), + INDEX_ARRAY_STRIDE_EXT = ((int)0x8086), + HISTOGRAM_ALPHA_SIZE = ((int)0x802B), + PACK_LSB_FIRST = ((int)0x0D01), + COLOR_ARRAY_POINTER = ((int)0x8090), + MAX_ELEMENTS_VERTICES = ((int)0x80E8), + COMBINER_CD_OUTPUT_NV = ((int)0x854B), + UNPACK_SKIP_VOLUMES_SGIS = ((int)0x8132), + DYNAMIC_DRAW = ((int)0x88E8), + INSTRUMENT_BUFFER_POINTER_SGIX = ((int)0x8180), + SIGNED_RGBA_NV = ((int)0x86FB), + OUTPUT_TEXTURE_COORD27_EXT = ((int)0x87B8), + VERTEX_ARRAY_RANGE_LENGTH_APPLE = ((int)0x851E), + PROGRAM_UNDER_NATIVE_LIMITS_ARB = ((int)0x88B6), + TEXTURE_CUBE_MAP_POSITIVE_X_ARB = ((int)0x8515), + OUTPUT_TEXTURE_COORD4_EXT = ((int)0x87A1), + LUMINANCE_FLOAT16_ATI = ((int)0x881E), + FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT = ((int)0x8CD9), + FOG_COORD = ((int)VERSION_1_4.FOG_COORDINATE), + REG_6_ATI = ((int)0x8927), + EDGE_FLAG_ARRAY_POINTER_EXT = ((int)0x8093), + SLUMINANCE8_ALPHA8 = ((int)0x8C45), + TABLE_TOO_LARGE_EXT = ((int)0x8031), + MULTISAMPLE_BIT_ARB = ((int)0x20000000), + RED_INTEGER_EXT = ((int)0x8D94), + POLYGON = ((int)0x0009), + TEXTURE_WRAP_T = ((int)0x2803), + TEXTURE_LOD_BIAS = ((int)0x8501), + PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB = ((int)0x880A), + POST_CONVOLUTION_RED_BIAS = ((int)0x8020), + OBJECT_COMPILE_STATUS_ARB = ((int)0x8B81), + SIGNED_ALPHA_NV = ((int)0x8705), + PROXY_TEXTURE_3D_EXT = ((int)0x8070), + LINEAR_ATTENUATION = ((int)0x1208), + OUTPUT_TEXTURE_COORD3_EXT = ((int)0x87A0), + VERTEX_SHADER_BINDING_EXT = ((int)0x8781), + FLOAT_RG16_NV = ((int)0x8886), + MAT_AMBIENT_AND_DIFFUSE_BIT_PGI = ((int)0x00200000), + BLEND_DST_RGB_EXT = ((int)0x80C8), + COLOR_INDEX12_EXT = ((int)0x80E6), + PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB = ((int)0x8809), + VERTEX_ARRAY_RANGE_NV = ((int)0x851D), + TEXTURE_INTENSITY_SIZE = ((int)0x8061), + FUNC_SUBTRACT_EXT = ((int)0x800A), + LOGIC_OP = ((int)0x0BF1), + BLUE_MIN_CLAMP_INGR = ((int)0x8562), + CURRENT_RASTER_SECONDARY_COLOR = ((int)0x845F), + TEXTURE_COMPARE_SGIX = ((int)0x819A), + EVAL_VERTEX_ATTRIB14_NV = ((int)0x86D4), + MODELVIEW2_ARB = ((int)0x8722), + OUTPUT_TEXTURE_COORD6_EXT = ((int)0x87A3), + MAX_PROGRAM_MATRICES_ARB = ((int)0x862F), + ELEMENT_ARRAY_BUFFER_ARB = ((int)0x8893), + DRAW_BUFFER11_ARB = ((int)0x8830), + RGB32F_ARB = ((int)0x8815), + RGB10_EXT = ((int)0x8052), + TEXTURE_POST_SPECULAR_HP = ((int)0x8168), + ALIASED_POINT_SIZE_RANGE = ((int)0x846D), + TEXTURE_CUBE_MAP_NEGATIVE_X = ((int)0x8516), + OUTPUT_TEXTURE_COORD25_EXT = ((int)0x87B6), + DS_SCALE_NV = ((int)0x8710), + TEXTURE_ALPHA_SIZE_EXT = ((int)0x805F), + POINT_SPRITE_ARB = ((int)0x8861), + SAMPLER_2D_SHADOW_ARB = ((int)0x8B62), + POST_TEXTURE_FILTER_SCALE_SGIX = ((int)0x817A), + FLOAT_VEC3 = ((int)0x8B51), + NEGATIVE_Z_EXT = ((int)0x87DB), + DUDV_ATI = ((int)0x8779), + OUTPUT_TEXTURE_COORD5_EXT = ((int)0x87A2), + OP_MUL_EXT = ((int)0x8786), + MODELVIEW13_ARB = ((int)0x872D), + PN_TRIANGLES_NORMAL_MODE_ATI = ((int)0x87F3), + FOG_COORDINATE_ARRAY_STRIDE = ((int)0x8455), + DRAW_BUFFER10_ARB = ((int)0x882F), + MATRIX4_NV = ((int)0x8634), + SAMPLE_COVERAGE_VALUE = ((int)0x80AA), + READ_PIXEL_DATA_RANGE_NV = ((int)0x8879), + FOG_COORDINATE_ARRAY = ((int)0x8457), + VERTEX_STATE_PROGRAM_NV = ((int)0x8621), + MATRIX5_NV = ((int)0x8635), + LESS = ((int)0x0201), + TEXTURE5_ARB = ((int)0x84C5), + TRANSFORM_FEEDBACK_BUFFER_NV = ((int)0x8C8E), + POLYGON_OFFSET_FACTOR_EXT = ((int)0x8038), + MAX_BINDABLE_UNIFORM_SIZE_EXT = ((int)0x8DED), + PREFER_DOUBLEBUFFER_HINT_PGI = ((int)0x1A1F8), + SAMPLES_SGIS = ((int)0x80A9), + DRAW_BUFFER13_ARB = ((int)0x8832), + MODELVIEW14_ARB = ((int)0x872E), + REG_2_ATI = ((int)0x8923), + FASTEST = ((int)0x1101), + MAX_ARRAY_TEXTURE_LAYERS_EXT = ((int)0x88FF), + RGB16_EXT = ((int)0x8054), + MAX_MATRIX_PALETTE_STACK_DEPTH_ARB = ((int)0x8841), + BUFFER_SIZE_ARB = ((int)0x8764), + IMPLEMENTATION_COLOR_READ_TYPE_OES = ((int)0x8B9A), + CON_27_ATI = ((int)0x895C), + TRANSFORM_FEEDBACK_BUFFER_START_NV = ((int)0x8C84), + UNPACK_RESAMPLE_SGIX = ((int)0x842D), + CONVOLUTION_FILTER_SCALE = ((int)0x8014), + FRAMEZOOM_SGIX = ((int)0x818B), + MATRIX9_ARB = ((int)0x88C9), + DRAW_BUFFER12_ARB = ((int)0x8831), + COMPRESSED_LUMINANCE_ALPHA = ((int)0x84EB), + CLIENT_VERTEX_ARRAY_BIT = ((int)0x00000002), + MAX_LIST_NESTING = ((int)0x0B31), + NORMAL_MAP = ((int)0x8511), + VERTEX_ATTRIB_ARRAY8_NV = ((int)0x8658), + FEEDBACK_BUFFER_POINTER = ((int)0x0DF0), + CONSTANT_BORDER_HP = ((int)0x8151), + COLOR_TABLE_GREEN_SIZE = ((int)0x80DB), + DEPTH_COMPONENT16_SGIX = ((int)0x81A5), + MAX_VERTEX_SHADER_LOCALS_EXT = ((int)0x87C9), + STENCIL_BACK_PASS_DEPTH_PASS = ((int)0x8803), + TEXTURE14_ARB = ((int)0x84CE), + MAX_PROGRAM_TEMPORARIES_ARB = ((int)0x88A5), + IDENTITY_NV = ((int)0x862A), + INTENSITY16 = ((int)0x804D), + TRANSFORM_HINT_APPLE = ((int)0x85B1), + CONSTANT_ATTENUATION = ((int)0x1207), + DUAL_INTENSITY4_SGIS = ((int)0x8118), + FIXED_ONLY_ARB = ((int)0x891D), + TEXTURE_DEFORMATION_SGIX = ((int)0x8195), + REG_8_ATI = ((int)0x8929), + DRAW_BUFFER15_ARB = ((int)0x8834), + BLEND_DST_ALPHA_EXT = ((int)0x80CA), + FOG_COORDINATE_ARRAY_BUFFER_BINDING = ((int)0x889D), + MATRIX30_ARB = ((int)0x88DE), + MATRIX25_ARB = ((int)0x88D9), + DRAW_PIXELS_APPLE = ((int)0x8A0A), + STENCIL = ((int)0x1802), + SPRITE_AXIAL_SGIX = ((int)0x814C), + RGBA16F_ARB = ((int)0x881A), + DRAW_BUFFER12_ATI = ((int)0x8831), + MAX_PROGRAM_LOOP_COUNT_NV = ((int)0x88F8), + COLOR_ARRAY_SIZE = ((int)0x8081), + PROGRAM_ERROR_POSITION_ARB = ((int)0x864B), + BGRA_EXT = ((int)0x80E1), + REG_9_ATI = ((int)0x892A), + DRAW_BUFFER14_ARB = ((int)0x8833), + OUTPUT_TEXTURE_COORD1_EXT = ((int)0x879E), + CURRENT_RASTER_DISTANCE = ((int)0x0B09), + INVERT = ((int)0x150A), + PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)0x80D4), + MINMAX = ((int)0x802E), + INDEX_MATERIAL_PARAMETER_EXT = ((int)0x81B9), + INT_SAMPLER_CUBE_EXT = ((int)0x8DCC), + REPLICATE_BORDER = ((int)0x8153), + GREEN = ((int)0x1904), + MIRROR_CLAMP_ATI = ((int)0x8742), + VERTEX_ARRAY_RANGE_VALID_NV = ((int)0x851F), + FUNC_REVERSE_SUBTRACT_EXT = ((int)0x800B), + SAMPLE_ALPHA_TO_ONE_ARB = ((int)0x809F), + GL_4_BYTES = ((int)0x1409), + STREAM_COPY_ARB = ((int)0x88E2), + COMBINE_ALPHA_EXT = ((int)0x8572), + MODELVIEW16_ARB = ((int)0x8730), + EQUIV = ((int)0x1509), + COLOR_SUM_CLAMP_NV = ((int)0x854F), + VARIANT_EXT = ((int)0x87C1), + GREEN_MAX_CLAMP_INGR = ((int)0x8565), + HILO_NV = ((int)0x86F4), + TEXTURE_RED_SIZE = ((int)0x805C), + NEGATIVE_Y_EXT = ((int)0x87DA), + RGB12_EXT = ((int)0x8053), + MULTISAMPLE_BIT = ((int)0x20000000), + MAX_CUBE_MAP_TEXTURE_SIZE_ARB = ((int)0x851C), + DRAW_BUFFER15_ATI = ((int)0x8834), + PIXEL_MAP_B_TO_B = ((int)0x0C78), + VERTEX_SHADER_OPTIMIZED_EXT = ((int)0x87D4), + POLYGON_OFFSET_POINT = ((int)0x2A01), + DYNAMIC_COPY_ARB = ((int)0x88EA), + INTERPOLATE_ARB = ((int)0x8575), + COMPRESSED_RED_RGTC1_EXT = ((int)0x8DBB), + PIXEL_MODE_BIT = ((int)0x00000020), + DRAW_BUFFER5_ARB = ((int)0x882A), + GENERATE_MIPMAP_SGIS = ((int)0x8191), + STENCIL_BACK_FUNC = ((int)0x8800), + MAGNITUDE_SCALE_NV = ((int)0x8712), + COMPRESSED_ALPHA = ((int)0x84E9), + CON_8_ATI = ((int)0x8949), + PROGRAM_LENGTH_ARB = ((int)0x8627), + DSDT8_NV = ((int)0x8709), + OPERAND2_ALPHA_ARB = ((int)0x859A), + PIXEL_COUNT_AVAILABLE_NV = ((int)0x8867), + DRAW_BUFFER14_ATI = ((int)0x8833), + MATERIAL_SIDE_HINT_PGI = ((int)0x1A22C), + ALPHA_FLOAT32_ATI = ((int)0x8816), + TRIANGLE_STRIP_ADJACENCY_EXT = ((int)0x000D), + MIRROR_CLAMP_TO_EDGE_EXT = ((int)0x8743), + DYNAMIC_ATI = ((int)0x8761), + UNSIGNED_INT_8_8_8_8_EXT = ((int)0x8035), + PIXEL_GROUP_COLOR_SGIS = ((int)0x8356), + MODULATE_SIGNED_ADD_ATI = ((int)0x8745), + COMPRESSED_RGBA_ARB = ((int)0x84EE), + POST_CONVOLUTION_ALPHA_BIAS_EXT = ((int)0x8023), + OPERAND0_RGB_EXT = ((int)0x8590), + TEXTURE_RED_TYPE_ARB = ((int)0x8C10), + DT_SCALE_NV = ((int)0x8711), + FOG = ((int)0x0B60), + MAX_VERTEX_ATTRIBS_ARB = ((int)0x8869), + EXP = ((int)0x0800), + FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT = ((int)0x8CD3), + TEXTURE_COMPRESSED_ARB = ((int)0x86A1), + E_TIMES_F_NV = ((int)0x8531), + DT_BIAS_NV = ((int)0x8717), + CURRENT_OCCLUSION_QUERY_ID_NV = ((int)0x8865), + WEIGHT_ARRAY_STRIDE_ARB = ((int)0x86AA), + MAP2_VERTEX_ATTRIB6_4_NV = ((int)0x8676), + BLEND_COLOR_EXT = ((int)0x8005), + TEXTURE_RECTANGLE_ARB = ((int)0x84F5), + ALPHA32UI_EXT = ((int)0x8D72), + DRAW_BUFFER4_ARB = ((int)0x8829), + PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB = ((int)0x8808), + CURRENT_RASTER_POSITION_VALID = ((int)0x0B08), + GEOMETRY_DEFORMATION_BIT_SGIX = ((int)0x00000002), + NATIVE_GRAPHICS_BEGIN_HINT_PGI = ((int)0x1A203), + DSDT8_MAG8_INTENSITY8_NV = ((int)0x870B), + SOURCE1_RGB_EXT = ((int)0x8581), + POINT_SPRITE = ((int)0x8861), + ALLOW_DRAW_OBJ_HINT_PGI = ((int)0x1A20E), + COLOR_TABLE_INTENSITY_SIZE_SGI = ((int)0x80DF), + COLOR_SUM = ((int)0x8458), + TEXTURE_LOD_BIAS_EXT = ((int)0x8501), + FRAGMENT_SHADER_DERIVATIVE_HINT = ((int)0x8B8B), + OBJECT_DISTANCE_TO_POINT_SGIS = ((int)0x81F1), + COMPRESSED_SLUMINANCE = ((int)0x8C4A), + UNPACK_SWAP_BYTES = ((int)0x0CF0), + MODELVIEW20_ARB = ((int)0x8734), + COPY = ((int)0x1503), + LUMINANCE32F_ARB = ((int)0x8818), + OP_RECIP_EXT = ((int)0x8794), + ONE_MINUS_DST_COLOR = ((int)0x0307), + MAP2_TEXTURE_COORD_3 = ((int)0x0DB5), + PIXEL_MAG_FILTER_EXT = ((int)0x8331), + BLEND = ((int)0x0BE2), + SHININESS = ((int)0x1601), + TEXTURE = ((int)0x1702), + EYE_DISTANCE_TO_LINE_SGIS = ((int)0x81F2), + INTENSITY16F_ARB = ((int)0x881D), + TEXTURE_MATERIAL_FACE_EXT = ((int)0x8351), + TEXTURE_INTENSITY_TYPE_ARB = ((int)0x8C15), + MATRIX1_NV = ((int)0x8631), + COLOR_TABLE_SGI = ((int)0x80D0), + DEPENDENT_HILO_TEXTURE_2D_NV = ((int)0x8858), + MAX_VARYING_FLOATS_ARB = ((int)0x8B4B), + TEXTURE_FILTER_CONTROL_EXT = ((int)0x8500), + CON_26_ATI = ((int)0x895B), + MINMAX_SINK_EXT = ((int)0x8030), + LIGHT5 = ((int)0x4005), + RGBA12_EXT = ((int)0x805A), + UNSIGNED_NORMALIZED_ARB = ((int)0x8C17), + ALLOW_DRAW_FRG_HINT_PGI = ((int)0x1A210), + MAP2_TEXTURE_COORD_2 = ((int)0x0DB4), + MAX_PROGRAM_NATIVE_TEMPORARIES_ARB = ((int)0x88A7), + OPERAND1_ALPHA = ((int)0x8599), + IUI_V2F_EXT = ((int)0x81AD), + MAX_PROGRAM_INSTRUCTIONS_ARB = ((int)0x88A1), + BLEND_EQUATION = ((int)0x8009), + RGBA16I_EXT = ((int)0x8D88), + BGR = ((int)0x80E0), + GL_4PASS_1_EXT = ((int)0x80A5), + TEXTURE0_ARB = ((int)0x84C0), + RESCALE_NORMAL = ((int)0x803A), + ELEMENT_ARRAY_BUFFER_BINDING = ((int)0x8895), + PROGRAM_STRING_NV = ((int)0x8628), + MIRROR_CLAMP_EXT = ((int)0x8742), CON_13_ATI = ((int)0x894E), - PROGRAM_RESULT_COMPONENTS_NV = ((int)0x8907), + ASYNC_TEX_IMAGE_SGIX = ((int)0x835C), + CONSTANT = ((int)0x8576), + VARIANT_ARRAY_STRIDE_EXT = ((int)0x87E6), + NUM_PASSES_ATI = ((int)0x8970), + MAP2_VERTEX_ATTRIB15_4_NV = ((int)0x867F), + MATRIX12_ARB = ((int)0x88CC), + CMYKA_EXT = ((int)0x800D), + SEPARATE_SPECULAR_COLOR = ((int)0x81FA), + BLUE_INTEGER_EXT = ((int)0x8D96), + INTENSITY8I_EXT = ((int)0x8D91), + SIGNED_IDENTITY_NV = ((int)0x853C), + MAP2_VERTEX_ATTRIB0_4_NV = ((int)0x8670), + LUMINANCE16F_ARB = ((int)0x881E), + MAP2_NORMAL = ((int)0x0DB2), + LIGHT_MODEL_AMBIENT = ((int)0x0B53), + RGB5_A1 = ((int)0x8057), + OFFSET_TEXTURE_2D_SCALE_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_SCALE_NV), + OPERAND2_RGB = ((int)0x8592), + MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB = ((int)0x8B49), + WRAP_BORDER_SUN = ((int)0x81D4), + MATRIX2_NV = ((int)0x8632), + SAMPLES_PASSED_ARB = ((int)0x8914), + RGB16 = ((int)0x8054), + HISTOGRAM_BLUE_SIZE_EXT = ((int)0x802A), + RGB10 = ((int)0x8052), + RGB12 = ((int)0x8053), + INTERPOLATE = ((int)0x8575), + MIN_EXT = ((int)0x8007), + RGBA2 = ((int)0x8055), + DUAL_INTENSITY8_SGIS = ((int)0x8119), + TEXTURE_FILTER4_SIZE_SGIS = ((int)0x8147), + RGBA8 = ((int)0x8058), + SIGNED_RGB_UNSIGNED_ALPHA_NV = ((int)0x870C), + DYNAMIC_READ = ((int)0x88E9), + INT_VEC2 = ((int)0x8B53), + COMPRESSED_RGBA_S3TC_DXT3_EXT = ((int)0x83F2), + SOURCE0_RGB_ARB = ((int)0x8580), + SOURCE2_ALPHA = ((int)0x858A), + TEXTURE_GREEN_SIZE = ((int)0x805D), + SAMPLE_MASK_VALUE_SGIS = ((int)0x80AA), + INTENSITY4_EXT = ((int)0x804A), + MODELVIEW22_ARB = ((int)0x8736), + COMPRESSED_LUMINANCE_ARB = ((int)0x84EA), + OP_INDEX_EXT = ((int)0x8782), + DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV = ((int)0x86F3), + LINEAR_DETAIL_COLOR_SGIS = ((int)0x8099), + MATRIX23_ARB = ((int)0x88D7), + TEXTURE_BINDING_3D = ((int)0x806A), + TEXTURE_BINDING_2D = ((int)0x8069), + TEXTURE_BINDING_1D = ((int)0x8068), + NORMAL_ARRAY_TYPE_EXT = ((int)0x807E), + COLOR_ARRAY_SIZE_EXT = ((int)0x8081), + VARIABLE_F_NV = ((int)0x8528), + REPLACE_EXT = ((int)0x8062), + MODULATE = ((int)0x2100), + COLOR_MATRIX_SGI = ((int)0x80B1), + PIXEL_TILE_WIDTH_SGIX = ((int)0x8140), MAX_PROGRAM_ENV_PARAMETERS_ARB = ((int)0x88B5), - ATTRIB_STACK_DEPTH = ((int)0x0BB0), + BYTE = ((int)0x1400), + QUAD_MESH_SUN = ((int)0x8614), + FLOAT_RGBA_NV = ((int)0x8883), + ALPHA_MAX_CLAMP_INGR = ((int)0x8567), + CULL_FACE_MODE = ((int)0x0B45), + DOT4_ATI = ((int)0x8967), + INDEX_ARRAY_EXT = ((int)0x8077), + SAMPLE_COVERAGE_VALUE_ARB = ((int)0x80AA), + SOURCE2_RGB_EXT = ((int)0x8582), + POINT_DISTANCE_ATTENUATION = ((int)0x8129), + ELEMENT_ARRAY_BUFFER = ((int)0x8893), + ARRAY_ELEMENT_LOCK_FIRST_EXT = ((int)0x81A8), + OUTPUT_TEXTURE_COORD26_EXT = ((int)0x87B7), + OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV = ((int)0x8852), + R5_G6_B5_ICC_SGIX = ((int)SGIX_icc_texture.R5_G6_B5_ICC_SGIX), + GENERATE_MIPMAP_HINT_SGIS = ((int)0x8192), + MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT = ((int)0x8DE4), + HISTOGRAM_LUMINANCE_SIZE_EXT = ((int)0x802C), + MAP2_VERTEX_ATTRIB5_4_NV = ((int)0x8675), + YCRCB_444_SGIX = ((int)0x81BC), + RGBA_MODE = ((int)0x0C31), + RED_SCALE = ((int)0x0D14), + SAMPLE_BUFFERS_SGIS = ((int)0x80A8), + LIST_MODE = ((int)0x0B30), + PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = ((int)0x8163), + OBJECT_LINEAR = ((int)0x2401), + CON_19_ATI = ((int)0x8954), + LIGHT7 = ((int)0x4007), + ALPHA16_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA16_ICC_SGIX), + STENCIL_PASS_DEPTH_PASS = ((int)0x0B96), + OUTPUT_TEXTURE_COORD16_EXT = ((int)0x87AD), + MAX_PROJECTION_STACK_DEPTH = ((int)0x0D38), + SAMPLE_COVERAGE_INVERT = ((int)0x80AB), + CURRENT_RASTER_POSITION = ((int)0x0B07), + VERTEX_WEIGHT_ARRAY_TYPE_EXT = ((int)0x850E), + FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT = ((int)0x8D56), + MAP1_VERTEX_ATTRIB2_4_NV = ((int)0x8662), + COLOR_TABLE_BIAS = ((int)0x80D7), + IGNORE_BORDER_HP = ((int)0x8150), + VERTEX_ARRAY_BUFFER_BINDING_ARB = ((int)0x8896), + NOOP = ((int)0x1505), + SCISSOR_TEST = ((int)0x0C11), + RGBA = ((int)0x1908), + RGB8_EXT = ((int)0x8051), + TEXTURE_CUBE_MAP_NEGATIVE_X_ARB = ((int)0x8516), + SAMPLER_3D = ((int)0x8B5F), + SAMPLER_2D = ((int)0x8B5E), + YCRCBA_SGIX = ((int)0x8319), + STENCIL_BUFFER_BIT = ((int)0x00000400), + BUFFER_USAGE = ((int)0x8765), + PROXY_TEXTURE_RECTANGLE_ARB = ((int)0x84F7), + BUFFER_MAP_POINTER_ARB = ((int)0x88BD), + SINGLE_COLOR_EXT = ((int)0x81F9), + SIGNED_LUMINANCE8_ALPHA8_NV = ((int)0x8704), + LUMINANCE4_ALPHA4 = ((int)0x8043), + VERTEX_STREAM0_ATI = ((int)0x876C), + NORMAL_MAP_ARB = ((int)0x8511), + RGB_SCALE_ARB = ((int)0x8573), + T2F_C3F_V3F = ((int)0x2A2A), + BITMAP_TOKEN = ((int)0x0704), + ASYNC_HISTOGRAM_SGIX = ((int)0x832C), + COLOR_ARRAY_TYPE_EXT = ((int)0x8082), + BINORMAL_ARRAY_TYPE_EXT = ((int)0x8440), + MODELVIEW9_ARB = ((int)0x8729), + PIXEL_FRAGMENT_RGB_SOURCE_SGIS = ((int)0x8354), + VERTEX_ARRAY_RANGE_LENGTH_NV = ((int)0x851E), + MULTISAMPLE_SGIS = ((int)0x809D), + UNSIGNED_INT_10_10_10_2_EXT = ((int)0x8036), + UNSIGNED_INT = ((int)0x1405), + INDEX_TEST_EXT = ((int)0x81B5), + ONE_MINUS_SRC_COLOR = ((int)0x0301), + MAX_TEXTURE_STACK_DEPTH = ((int)0x0D39), + PROGRAM_ERROR_POSITION_NV = ((int)0x864B), + INTENSITY = ((int)0x8049), + MODELVIEW12_ARB = ((int)0x872C), + VERTEX_CONSISTENT_HINT_PGI = ((int)0x1A22B), + COMBINE_EXT = ((int)0x8570), + MAP1_VERTEX_4 = ((int)0x0D98), + UNSIGNED_INT_24_8_NV = ((int)0x84FA), + OBJECT_SUBTYPE_ARB = ((int)0x8B4F), + OUTPUT_TEXTURE_COORD23_EXT = ((int)0x87B4), + MAP1_VERTEX_3 = ((int)0x0D97), + RETURN = ((int)0x0102), + TANGENT_ARRAY_EXT = ((int)0x8439), + FLOAT_MAT3x4 = ((int)0x8B68), + DEPENDENT_RGB_TEXTURE_3D_NV = ((int)0x8859), + SHARPEN_TEXTURE_FUNC_POINTS_SGIS = ((int)0x80B0), + TRANSFORM_FEEDBACK_BUFFER_SIZE_NV = ((int)0x8C85), + INDEX_MODE = ((int)0x0C30), + OUTPUT_TEXTURE_COORD12_EXT = ((int)0x87A9), + INTENSITY16_ICC_SGIX = ((int)SGIX_icc_texture.INTENSITY16_ICC_SGIX), + REG_28_ATI = ((int)0x893D), + RED_MAX_CLAMP_INGR = ((int)0x8564), + POINT_SMOOTH_HINT = ((int)0x0C51), + COLOR_ARRAY_EXT = ((int)0x8076), + CLIP_PLANE4 = ((int)0x3004), + HALF_FLOAT_NV = ((int)0x140B), + TEXTURE_COMPRESSED = ((int)0x86A1), + LINE = ((int)0x1B01), + BINORMAL_ARRAY_EXT = ((int)0x843A), + PROGRAM_LENGTH_NV = ((int)0x8627), + MAX_PROGRAM_NATIVE_ATTRIBS_ARB = ((int)0x88AF), + TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT = ((int)0x8518), + TRACK_MATRIX_TRANSFORM_NV = ((int)0x8649), + SELECTION_BUFFER_POINTER = ((int)0x0DF3), + DRAW_FRAMEBUFFER_EXT = ((int)0x8CA9), + OUTPUT_TEXTURE_COORD13_EXT = ((int)0x87AA), + TEXTURE_INDEX_SIZE_EXT = ((int)0x80ED), + MAP2_VERTEX_ATTRIB2_4_NV = ((int)0x8672), + RECLAIM_MEMORY_HINT_PGI = ((int)0x1A1FE), + RENDERBUFFER_WIDTH_EXT = ((int)0x8D42), + DEPTH_BIAS = ((int)0x0D1F), + FOG_COORDINATE_ARRAY_POINTER = ((int)0x8456), + SAMPLE_ALPHA_TO_ONE = ((int)0x809F), + VARIABLE_D_NV = ((int)0x8526), + AUX_BUFFERS = ((int)0x0C00), + TANGENT_ARRAY_POINTER_EXT = ((int)0x8442), + CON_12_ATI = ((int)0x894D), + MODELVIEW1_EXT = ((int)0x850A), + HISTOGRAM_GREEN_SIZE_EXT = ((int)0x8029), + T2F_N3F_V3F = ((int)0x2A2B), + ZOOM_Y = ((int)0x0D17), + FOG_COORD_ARRAY_STRIDE = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_STRIDE), + MAX_PROGRAM_CALL_DEPTH_NV = ((int)0x88F5), + TEXTURE_MAX_CLAMP_S_SGIX = ((int)0x8369), + COLOR = ((int)0x1800), + TEXTURE_PRIORITY_EXT = ((int)0x8066), + INCR_WRAP_EXT = ((int)0x8507), + LUMINANCE16 = ((int)0x8042), + MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8B4D), + CONVOLUTION_BORDER_MODE = ((int)0x8013), + LUMINANCE_ALPHA16UI_EXT = ((int)0x8D7B), + FLOAT_MAT4x2 = ((int)0x8B69), + TEXTURE30_ARB = ((int)0x84DE), + TEXTURE_MATERIAL_PARAMETER_EXT = ((int)0x8352), + BUMP_TARGET_ATI = ((int)0x877C), + FRAGMENT_SHADER_ARB = ((int)0x8B30), + LIGHT1 = ((int)0x4001), + POST_CONVOLUTION_GREEN_BIAS_EXT = ((int)0x8021), + UNPACK_IMAGE_HEIGHT_EXT = ((int)0x806E), + FRAGMENT_SHADER = ((int)0x8B30), + POLYGON_STIPPLE_BIT = ((int)0x00000010), + TEXTURE_CUBE_MAP_EXT = ((int)0x8513), + DRAW_BUFFER2 = ((int)0x8827), + STREAM_DRAW_ARB = ((int)0x88E0), + DEPTH_STENCIL_TO_BGRA_NV = ((int)0x886F), + UNPACK_SUBSAMPLE_RATE_SGIX = ((int)0x85A1), + TRANSFORM_FEEDBACK_BUFFER_BINDING_NV = ((int)0x8C8F), + TEXCOORD2_BIT_PGI = ((int)0x20000000), + MAX_VARYING_COMPONENTS_EXT = ((int)0x8B4B), + MATRIX_INDEX_ARRAY_STRIDE_ARB = ((int)0x8848), + OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV = ((int)0x8853), + CLIP_VOLUME_CLIPPING_HINT_EXT = ((int)0x80F0), + DECAL = ((int)0x2101), + CONVOLUTION_1D = ((int)0x8010), + CONVOLUTION_2D = ((int)0x8011), + UNSIGNED_SHORT_5_5_5_1 = ((int)0x8034), + PRIMARY_COLOR = ((int)0x8577), + LUMINANCE_ALPHA8UI_EXT = ((int)0x8D81), + CONVOLUTION_WIDTH_EXT = ((int)0x8018), + MAP_TESSELLATION_NV = ((int)0x86C2), + EVAL_VERTEX_ATTRIB10_NV = ((int)0x86D0), + COLOR_ARRAY_LIST_IBM = ((int)103072), + MAT_SPECULAR_BIT_PGI = ((int)0x04000000), + LIGHT_MODEL_LOCAL_VIEWER = ((int)0x0B51), + DRAW_BUFFER1 = ((int)0x8826), + DEPTH_BITS = ((int)0x0D56), + OPERAND0_ALPHA_EXT = ((int)0x8598), + PIXEL_UNPACK_BUFFER_ARB = ((int)0x88EC), + HINT_BIT = ((int)0x00008000), + ONE_MINUS_SRC_ALPHA = ((int)0x0303), + NORMAL_ARRAY_TYPE = ((int)0x807E), + PRIMITIVE_RESTART_INDEX_NV = ((int)0x8559), + EVAL_2D_NV = ((int)0x86C0), + VIEWPORT_BIT = ((int)0x00000800), + OUTPUT_TEXTURE_COORD17_EXT = ((int)0x87AE), + PIXEL_PACK_BUFFER_ARB = ((int)0x88EB), + SRGB8 = ((int)0x8C41), + LOCAL_EXT = ((int)0x87C4), + EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB = ((int)0x889B), + REFLECTION_MAP = ((int)0x8512), + EVAL_VERTEX_ATTRIB4_NV = ((int)0x86CA), + MATRIX26_ARB = ((int)0x88DA), + FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM = ((int)103086), + FOG_COORD_ARRAY_TYPE = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_TYPE), + ONE_MINUS_CONSTANT_COLOR = ((int)0x8002), + NORMAL_ARRAY_LIST_STRIDE_IBM = ((int)103081), + DRAW_BUFFER8_ARB = ((int)0x882D), + GL_2PASS_0_EXT = ((int)0x80A2), + DRAW_BUFFER0 = ((int)0x8825), + MAP2_VERTEX_ATTRIB13_4_NV = ((int)0x867D), + GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA3), + TRANSFORM_FEEDBACK_RECORD_NV = ((int)0x8C86), + BACK = ((int)0x0405), + PACK_RESAMPLE_SGIX = ((int)0x842C), + MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT = ((int)0x8DE1), + CURRENT_FOG_COORDINATE = ((int)0x8453), + FOG_SCALE_SGIX = ((int)0x81FC), + MATRIX20_ARB = ((int)0x88D4), + BLEND_SRC_RGB = ((int)0x80C9), + CURRENT_TANGENT_EXT = ((int)0x843B), + PROGRAM_TEX_INSTRUCTIONS_ARB = ((int)0x8806), + MODELVIEW31_ARB = ((int)0x873F), + TEXTURE_3D_BINDING_EXT = ((int)0x806A), + RGBA4_EXT = ((int)0x8056), + GREEN_SCALE = ((int)0x0D18), + FRAGMENT_SHADER_DERIVATIVE_HINT_ARB = ((int)0x8B8B), + POINT_SIZE_MIN_EXT = ((int)0x8126), + CON_18_ATI = ((int)0x8953), + ALPHA32I_EXT = ((int)0x8D84), + LINE_BIT = ((int)0x00000004), + SAMPLE_ALPHA_TO_COVERAGE_ARB = ((int)0x809E), + DEPTH_TEST = ((int)0x0B71), + HISTOGRAM_FORMAT = ((int)0x8027), + FLOAT_VEC3_ARB = ((int)0x8B51), + COORD_REPLACE = ((int)0x8862), + STENCIL_REF = ((int)0x0B97), + TEXTURE_COORD_ARRAY_STRIDE_EXT = ((int)0x808A), + POST_COLOR_MATRIX_GREEN_SCALE_SGI = ((int)0x80B5), + RGBA32UI_EXT = ((int)0x8D70), + STEREO = ((int)0x0C33), + DOT3_ATI = ((int)0x8966), + REG_18_ATI = ((int)0x8933), + LIGHT2 = ((int)0x4002), + UNSIGNED_BYTE_3_3_2_EXT = ((int)0x8032), + SRC2_ALPHA = ((int)VERSION_1_3.SOURCE2_ALPHA), + MODELVIEW1_MATRIX_EXT = ((int)0x8506), + LUMINANCE32UI_EXT = ((int)0x8D74), + ALPHA12_EXT = ((int)0x803D), + TEXTURE15 = ((int)0x84CF), + LUMINANCE = ((int)0x1909), + MAP2_VERTEX_ATTRIB7_4_NV = ((int)0x8677), + COLOR_SUM_EXT = ((int)0x8458), + ADD = ((int)0x0104), + TEXTURE13 = ((int)0x84CD), + TEXTURE12 = ((int)0x84CC), + FOG_COORDINATE_ARRAY_EXT = ((int)0x8457), + COMPRESSED_RGB = ((int)0x84ED), + TRANSPOSE_NV = ((int)0x862C), + RENDERBUFFER_RED_SIZE_EXT = ((int)0x8D50), + TANGENT_ARRAY_STRIDE_EXT = ((int)0x843F), + SECONDARY_COLOR_ARRAY_POINTER = ((int)0x845D), + LIGHT3 = ((int)0x4003), + CULL_VERTEX_EXT = ((int)0x81AA), + SOURCE2_RGB_ARB = ((int)0x8582), + FRAGMENT_LIGHT7_SGIX = ((int)0x8413), + VERTEX_ARRAY_TYPE_EXT = ((int)0x807B), + TEXTURE_LOD_BIAS_T_SGIX = ((int)0x818F), + MAP2_VERTEX_ATTRIB11_4_NV = ((int)0x867B), + TRANSPOSE_MODELVIEW_MATRIX = ((int)0x84E3), + PROXY_HISTOGRAM = ((int)0x8025), + DSDT_MAG_INTENSITY_NV = ((int)0x86DC), + COPY_PIXEL_TOKEN = ((int)0x0706), + POINT_SPRITE_NV = ((int)0x8861), + IMAGE_TRANSLATE_Y_HP = ((int)0x8158), + PROGRAM_BINDING_ARB = ((int)0x8677), + LUMINANCE_ALPHA_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE_ALPHA_ICC_SGIX), + CON_15_ATI = ((int)0x8950), + REDUCE = ((int)0x8016), + RESAMPLE_ZERO_FILL_SGIX = ((int)0x842F), + SPRITE_MODE_SGIX = ((int)0x8149), + OFFSET_HILO_TEXTURE_RECTANGLE_NV = ((int)0x8855), + INTENSITY_EXT = ((int)0x8049), + GL_4PASS_3_SGIS = ((int)0x80A7), + RGB16UI_EXT = ((int)0x8D77), + INTENSITY12 = ((int)0x804C), + COMPRESSED_TEXTURE_FORMATS = ((int)0x86A3), + ALLOW_DRAW_WIN_HINT_PGI = ((int)0x1A20F), + MAX_EXT = ((int)0x8008), + MAX_VERTEX_STREAMS_ATI = ((int)0x876B), + HI_BIAS_NV = ((int)0x8714), + POLYGON_OFFSET_LINE = ((int)0x2A02), + GL_2PASS_1_SGIS = ((int)0x80A3), + LUMINANCE_ALPHA32F_ARB = ((int)0x8819), + TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT = ((int)0x851A), + READ_BUFFER = ((int)0x0C02), + PIXEL_MAP_A_TO_A_SIZE = ((int)0x0CB9), + TRANSFORM_FEEDBACK_BUFFER_MODE_NV = ((int)0x8C7F), + BITMAP = ((int)0x1A00), + UNSIGNED_SHORT_5_6_5 = ((int)0x8363), + LUMINANCE8_ALPHA8_EXT = ((int)0x8045), + CURRENT_MATRIX_NV = ((int)0x8641), + POST_COLOR_MATRIX_ALPHA_BIAS_SGI = ((int)0x80BB), + CONVOLUTION_FILTER_BIAS = ((int)0x8015), + MAX_PROGRAM_IF_DEPTH_NV = ((int)0x88F6), + COMBINE_RGB = ((int)0x8571), + OPERAND3_ALPHA_NV = ((int)0x859B), + SOURCE1_ALPHA_EXT = ((int)0x8589), + ALPHA_TEST_FUNC = ((int)0x0BC1), + FLOAT_RGB32_NV = ((int)0x8889), + BLEND_DST = ((int)0x0BE0), + READ_ONLY_ARB = ((int)0x88B8), + MODELVIEW18_ARB = ((int)0x8732), + LIGHT_MODEL_COLOR_CONTROL = ((int)0x81F8), + MAP2_VERTEX_ATTRIB12_4_NV = ((int)0x867C), + DEPTH_SCALE = ((int)0x0D1E), + TEXTURE_BASE_LEVEL = ((int)0x813C), + BLEND_EQUATION_RGB_EXT = ((int)ARB_imaging.BLEND_EQUATION), + CLAMP_TO_BORDER_ARB = ((int)0x812D), + MATRIX_MODE = ((int)0x0BA0), + MAX_RATIONAL_EVAL_ORDER_NV = ((int)0x86D7), + TEXTURE_RESIDENT = ((int)0x8067), + MAX_DRAW_BUFFERS_ATI = ((int)0x8824), + PIXEL_TILE_GRID_DEPTH_SGIX = ((int)0x8144), + CURRENT_VERTEX_EXT = ((int)0x87E2), + SRGB = ((int)0x8C40), + MODELVIEW15_ARB = ((int)0x872F), + VERTEX_ATTRIB_ARRAY7_NV = ((int)0x8657), + FOG_COORDINATE_SOURCE = ((int)0x8450), + COMPRESSED_LUMINANCE_LATC1_EXT = ((int)0x8C70), + DRAW_BUFFER8_ATI = ((int)0x882D), + LUMINANCE4_EXT = ((int)0x803F), + TEXTURE_MAX_ANISOTROPY_EXT = ((int)0x84FE), + COLOR_TABLE_BIAS_SGI = ((int)0x80D7), + AUX3 = ((int)0x040C), + BUMP_NUM_TEX_UNITS_ATI = ((int)0x8777), + FRAGMENT_COLOR_MATERIAL_FACE_SGIX = ((int)0x8402), + RGBA8I_EXT = ((int)0x8D8E), + OUTPUT_FOG_EXT = ((int)0x87BD), + GENERATE_MIPMAP = ((int)0x8191), + INVERTED_SCREEN_W_REND = ((int)0x8491), + CON_25_ATI = ((int)0x895A), + PIXEL_TEXTURE_SGIS = ((int)0x8353), + UNSIGNED_INT_8_8_8_8_REV_EXT = ((int)0x8367), + RGBA8UI_EXT = ((int)0x8D7C), + TEXTURE21 = ((int)0x84D5), + TANGENT_ARRAY_TYPE_EXT = ((int)0x843E), + SECONDARY_COLOR_ARRAY_TYPE_EXT = ((int)0x845B), + STENCIL_BACK_PASS_DEPTH_FAIL_ATI = ((int)0x8802), + INVALID_FRAMEBUFFER_OPERATION_EXT = ((int)0x0506), + RASTER_POSITION_UNCLIPPED_IBM = ((int)0x19262), + AUX2 = ((int)0x040B), + NOTEQUAL = ((int)0x0205), + POST_CONVOLUTION_BLUE_SCALE = ((int)0x801E), + MAX_GEOMETRY_OUTPUT_VERTICES_EXT = ((int)0x8DE0), + MATRIX_INDEX_ARRAY_TYPE_ARB = ((int)0x8847), + ATTRIB_ARRAY_TYPE_NV = ((int)0x8625), + COLOR_ARRAY_TYPE = ((int)0x8082), + XOR = ((int)0x1506), + TEXTURE_ENV_COLOR = ((int)0x2201), + ZERO_EXT = ((int)0x87DD), + POST_COLOR_MATRIX_RED_BIAS_SGI = ((int)0x80B8), + TEXTURE_COORD_ARRAY_TYPE_EXT = ((int)0x8089), + BACK_LEFT = ((int)0x0402), + VERTEX_ATTRIB_ARRAY0_NV = ((int)0x8650), + COLOR_MATERIAL = ((int)0x0B57), + POLYGON_OFFSET_BIAS_EXT = ((int)0x8039), + TEXTURE_COMPARE_FUNC = ((int)0x884D), + MAT_EMISSION_BIT_PGI = ((int)0x00800000), + DRAW_BUFFER5 = ((int)0x882A), + DRAW_BUFFER6_ARB = ((int)0x882B), + DEPTH_BUFFER_BIT = ((int)0x00000100), + NOR = ((int)0x1508), + MAP1_VERTEX_ATTRIB14_4_NV = ((int)0x866E), + DSDT8_MAG8_NV = ((int)0x870A), + AUX1 = ((int)0x040A), + MAX_TRACK_MATRICES_NV = ((int)0x862F), + QUERY_RESULT_ARB = ((int)0x8866), + OPERAND0_ALPHA = ((int)0x8598), + FOG_SCALE_VALUE_SGIX = ((int)0x81FD), + TEXTURE_MAX_LEVEL = ((int)0x813D), + LINE_WIDTH_GRANULARITY = ((int)0x0B23), + MODELVIEW7_ARB = ((int)0x8727), + LINE_STIPPLE = ((int)0x0B24), + PROGRAM_ERROR_STRING_ARB = ((int)0x8874), + T4F_V4F = ((int)0x2A28), + CONVOLUTION_HINT_SGIX = ((int)0x8316), + CURRENT_RASTER_INDEX = ((int)0x0B05), + ALPHA16UI_EXT = ((int)0x8D78), + TEXTURE_BIT = ((int)0x00040000), + VERTEX_WEIGHTING_EXT = ((int)0x8509), + SAMPLER_2D_ARRAY_SHADOW_EXT = ((int)0x8DC4), + RGB2_EXT = ((int)0x804E), + BLUE_BITS = ((int)0x0D54), + GEOMETRY_INPUT_TYPE_EXT = ((int)0x8DDB), + ABGR_EXT = ((int)0x8000), + GL_3D_COLOR = ((int)0x0602), + UNPACK_ROW_LENGTH = ((int)0x0CF2), + MAX_VERTEX_TEXTURE_IMAGE_UNITS = ((int)0x8B4C), + MAX_PROGRAM_TEXEL_OFFSET_NV = ((int)0x8905), + AUX0 = ((int)0x0409), + FOG_DENSITY = ((int)0x0B62), + C4F_N3F_V3F = ((int)0x2A26), + PN_TRIANGLES_POINT_MODE_LINEAR_ATI = ((int)0x87F5), + POST_COLOR_MATRIX_BLUE_SCALE = ((int)0x80B6), + MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT = ((int)0x87CE), + CONVOLUTION_BORDER_MODE_EXT = ((int)0x8013), + ELEMENT_ARRAY_TYPE_APPLE = ((int)0x8769), + MATRIX_INDEX_ARRAY_POINTER_ARB = ((int)0x8849), + PIXEL_TEX_GEN_ALPHA_LS_SGIX = ((int)0x8189), + CLAMP_TO_BORDER_SGIS = ((int)0x812D), + SAMPLE_MASK_INVERT_EXT = ((int)0x80AB), + TEXT_FRAGMENT_SHADER_ATI = ((int)0x8200), + MODELVIEW17_ARB = ((int)0x8731), + CMYK_EXT = ((int)0x800C), + RGBA2_EXT = ((int)0x8055), + MODELVIEW0_EXT = ((int)All.MODELVIEW), + PERSPECTIVE_CORRECTION_HINT = ((int)0x0C50), + UNPACK_CLIENT_STORAGE_APPLE = ((int)0x85B2), + SPARE0_PLUS_SECONDARY_COLOR_NV = ((int)0x8532), + LINEAR_SHARPEN_COLOR_SGIS = ((int)0x80AF), + COPY_INVERTED = ((int)0x150C), + PROGRAM_NATIVE_TEMPORARIES_ARB = ((int)0x88A6), + FRAGMENT_LIGHT5_SGIX = ((int)0x8411), + FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA4), + COMPARE_REF_DEPTH_TO_TEXTURE_EXT = ((int)0x884E), + COMPRESSED_SRGB = ((int)0x8C48), + PROXY_TEXTURE_2D_EXT = ((int)0x8064), + TEXTURE_1D = ((int)0x0DE0), + PACK_INVERT_MESA = ((int)0x8758), + COMPRESSED_RED_GREEN_RGTC2_EXT = ((int)0x8DBD), + UNPACK_SKIP_PIXELS = ((int)0x0CF4), + VERTEX_PRECLIP_SGIX = ((int)0x83EE), + UNPACK_IMAGE_DEPTH_SGIS = ((int)0x8133), + EDGE_FLAG_ARRAY = ((int)0x8079), + FRAGMENT_SHADER_ATI = ((int)0x8920), + EVAL_VERTEX_ATTRIB6_NV = ((int)0x86CC), + SELECTION_BUFFER_SIZE = ((int)0x0DF4), + TEXTURE_COORD_ARRAY_SIZE_EXT = ((int)0x8088), + PN_TRIANGLES_POINT_MODE_CUBIC_ATI = ((int)0x87F6), + BUMP_TEX_UNITS_ATI = ((int)0x8778), + MAX_ACTIVE_LIGHTS_SGIX = ((int)0x8405), + DEPTH_TEXTURE_MODE = ((int)0x884B), + FULL_STIPPLE_HINT_PGI = ((int)0x1A219), + POINT_SIZE_GRANULARITY = ((int)0x0B13), + CONSTANT_ALPHA = ((int)0x8003), + LUMINANCE16I_EXT = ((int)0x8D8C), + QUAD_ALPHA4_SGIS = ((int)0x811E), + CURRENT_RASTER_NORMAL_SGIX = ((int)0x8406), + PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)0x80D5), + MAX_EVAL_ORDER = ((int)0x0D30), + UNIFORM_BUFFER_BINDING_EXT = ((int)0x8DEF), + RGBA8_EXT = ((int)0x8058), + INDEX_BIT_PGI = ((int)0x00080000), + SHADER_OBJECT_ARB = ((int)0x8B48), + VARIANT_ARRAY_POINTER_EXT = ((int)0x87E9), + TEXTURE_CLIPMAP_FRAME_SGIX = ((int)0x8172), + STENCIL_BACK_FAIL_ATI = ((int)0x8801), + MAX_ASYNC_READ_PIXELS_SGIX = ((int)0x8361), + TEXTURE25 = ((int)0x84D9), + MIRRORED_REPEAT_IBM = ((int)0x8370), + LUMINANCE16_ALPHA16_EXT = ((int)0x8048), + TEXTURE26 = ((int)0x84DA), + TEXTURE_MULTI_BUFFER_HINT_SGIX = ((int)0x812E), + ALPHA8I_EXT = ((int)0x8D90), + TEXTURE22 = ((int)0x84D6), + TEXTURE_CLIPMAP_LOD_OFFSET_SGIX = ((int)0x8175), + OP_NEGATE_EXT = ((int)0x8783), + NORMAL_ARRAY_STRIDE_EXT = ((int)0x807F), + CURRENT_BINORMAL_EXT = ((int)0x843C), + TEXTURE29 = ((int)0x84DD), + SAMPLE_COVERAGE_INVERT_ARB = ((int)0x80AB), + PIXEL_TEX_GEN_SGIX = ((int)0x8139), + SCALE_BY_FOUR_NV = ((int)0x853F), + PIXEL_MAP_R_TO_R = ((int)0x0C76), + VERTEX_ARRAY_LIST_IBM = ((int)103070), + GL_422_AVERAGE_EXT = ((int)0x80CE), + TEXTURE_CUBE_MAP_POSITIVE_Y_EXT = ((int)0x8517), + RESAMPLE_REPLICATE_SGIX = ((int)0x842E), + ALIASED_LINE_WIDTH_RANGE = ((int)0x846E), + FRAGMENT_LIGHT3_SGIX = ((int)0x840F), + TEXTURE_COMPARE_MODE_ARB = ((int)0x884C), + TEXTURE7_ARB = ((int)0x84C7), + CON_14_ATI = ((int)0x894F), + REPLACEMENT_CODE_ARRAY_STRIDE_SUN = ((int)0x85C2), + TEXTURE22_ARB = ((int)0x84D6), + SAMPLER_CUBE_SHADOW_EXT = ((int)0x8DC5), + QUADS = ((int)0x0007), + TEXTURE_BLUE_SIZE_EXT = ((int)0x805E), + OUT_OF_MEMORY = ((int)0x0505), + MAT_SHININESS_BIT_PGI = ((int)0x02000000), + MAP1_VERTEX_ATTRIB9_4_NV = ((int)0x8669), + VIEWPORT = ((int)0x0BA2), + PIXEL_TILE_BEST_ALIGNMENT_SGIX = ((int)0x813E), + MODELVIEW25_ARB = ((int)0x8739), + OBJECT_PLANE = ((int)0x2501), + FOG_COORDINATE_SOURCE_EXT = ((int)0x8450), + MODELVIEW28_ARB = ((int)0x873C), + ALPHA8UI_EXT = ((int)0x8D7E), + TEXTURE_CUBE_MAP_POSITIVE_Z = ((int)0x8519), + MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV = ((int)0x8C8B), + FLOAT_MAT3 = ((int)0x8B5B), + READ_FRAMEBUFFER_BINDING_EXT = ((int)EXT_framebuffer_object.FRAMEBUFFER_BINDING_EXT), + IMAGE_ROTATE_ORIGIN_Y_HP = ((int)0x815B), + VERTEX_WEIGHT_ARRAY_STRIDE_EXT = ((int)0x850F), + INDEX_ARRAY_BUFFER_BINDING = ((int)0x8899), + OPERAND2_ALPHA = ((int)0x859A), + REFERENCE_PLANE_SGIX = ((int)0x817D), + POINT_SIZE_RANGE = ((int)0x0B12), + STACK_UNDERFLOW = ((int)0x0504), + BOOL_VEC3_ARB = ((int)0x8B58), + SIGNED_RGB_NV = ((int)0x86FE), + CLEAR = ((int)0x1500), + TEXTURE9_ARB = ((int)0x84C9), + GL_4X_BIT_ATI = ((int)0x00000002), + TEXTURE_COMPRESSED_IMAGE_SIZE = ((int)0x86A0), + OFFSET_TEXTURE_RECTANGLE_SCALE_NV = ((int)0x864D), + WRITE_PIXEL_DATA_RANGE_LENGTH_NV = ((int)0x887A), + AND_INVERTED = ((int)0x1504), + CONSTANT_ALPHA_EXT = ((int)0x8003), + MAX_GEOMETRY_VARYING_COMPONENTS_EXT = ((int)0x8DDD), + BLEND_EQUATION_ALPHA_EXT = ((int)0x883D), + PIXEL_MAP_A_TO_A = ((int)0x0C79), + RGB10_A2_EXT = ((int)0x8059), + CURRENT_PALETTE_MATRIX_ARB = ((int)0x8843), + TEXCOORD1_BIT_PGI = ((int)0x10000000), + LUMINANCE_ALPHA8I_EXT = ((int)0x8D93), + MODELVIEW19_ARB = ((int)0x8733), + T2F_IUI_N3F_V3F_EXT = ((int)0x81B4), + SEPARATE_ATTRIBS_NV = ((int)0x8C8D), + INT_SAMPLER_2D_EXT = ((int)0x8DCA), + EYE_RADIAL_NV = ((int)0x855B), + RGB5_EXT = ((int)0x8050), + ACTIVE_ATTRIBUTES = ((int)0x8B89), + PIXEL_TEX_GEN_MODE_SGIX = ((int)0x832B), + UNSIGNED_SHORT_4_4_4_4_REV = ((int)0x8365), + OFFSET_TEXTURE_2D_MATRIX_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_MATRIX_NV), + COORD_REPLACE_NV = ((int)0x8862), + COLOR_ATTACHMENT11_EXT = ((int)0x8CEB), + SECONDARY_COLOR_ARRAY_BUFFER_BINDING = ((int)0x889C), + LINEAR_DETAIL_SGIS = ((int)0x8097), + AVERAGE_HP = ((int)0x8160), + TEXTURE_LOD_BIAS_S_SGIX = ((int)0x818E), + TRIANGLE_MESH_SUN = ((int)0x8615), + CLIP_DISTANCE_NV = ((int)0x8C7A), + ALL_ATTRIB_BITS = unchecked((int)0xFFFFFFFF), + MAX_VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87C5), + TEXTURE4 = ((int)0x84C4), + ELEMENT_ARRAY_POINTER_ATI = ((int)0x876A), + MAX_DEFORMATION_ORDER_SGIX = ((int)0x8197), + FILTER4_SGIS = ((int)0x8146), + INT_SAMPLER_1D_EXT = ((int)0x8DC9), + TEXTURE8_ARB = ((int)0x84C8), + FEEDBACK_BUFFER_SIZE = ((int)0x0DF1), + CURRENT_SECONDARY_COLOR_EXT = ((int)0x8459), + CON_22_ATI = ((int)0x8957), + ACCUM_BLUE_BITS = ((int)0x0D5A), + STRICT_DEPTHFUNC_HINT_PGI = ((int)0x1A216), + ACCUM_ALPHA_BITS = ((int)0x0D5B), + LERP_ATI = ((int)0x8969), + EVAL_VERTEX_ATTRIB9_NV = ((int)0x86CF), + PROXY_TEXTURE_1D_EXT = ((int)0x8063), + CLIENT_ATTRIB_STACK_DEPTH = ((int)0x0BB1), + CURRENT_MATRIX_STACK_DEPTH_NV = ((int)0x8640), + DUAL_INTENSITY12_SGIS = ((int)0x811A), + IMAGE_TRANSFORM_2D_HP = ((int)0x8161), + GL_4PASS_2_EXT = ((int)0x80A6), + TEXTURE_WIDTH = ((int)0x1000), + INT_VEC4 = ((int)0x8B55), + MAX_PROGRAM_GENERIC_ATTRIBS_NV = ((int)0x8DA5), + MAP1_BINORMAL_EXT = ((int)0x8446), + MIRROR_CLAMP_TO_EDGE_ATI = ((int)0x8743), + LUMINANCE_ALPHA = ((int)0x190A), + AND = ((int)0x1501), + FLOAT_MAT4 = ((int)0x8B5C), + TEXTURE_CUBE_MAP_NEGATIVE_Z = ((int)0x851A), + TEXTURE_CUBE_MAP_POSITIVE_Z_ARB = ((int)0x8519), + MODELVIEW23_ARB = ((int)0x8737), + TRIANGLE_LIST_SUN = ((int)0x81D7), + PASS_THROUGH_NV = ((int)0x86E6), + UNSIGNED_SHORT_5_6_5_REV_EXT = ((int)0x8364), + STENCIL_BACK_PASS_DEPTH_PASS_ATI = ((int)0x8803), + OP_POWER_EXT = ((int)0x8793), + DRAW_BUFFER1_ATI = ((int)0x8826), + RESAMPLE_REPLICATE_OML = ((int)0x8986), + UNPACK_ALIGNMENT = ((int)0x0CF5), + TEXTURE_BINDING_CUBE_MAP = ((int)0x8514), + INT_SAMPLER_3D_EXT = ((int)0x8DCB), + PROGRAM_NATIVE_PARAMETERS_ARB = ((int)0x88AA), + TEXTURE_DEPTH_EXT = ((int)0x8071), + INT_VEC3 = ((int)0x8B54), + MATRIX3_NV = ((int)0x8633), + PROXY_TEXTURE_1D_STACK_MESAX = ((int)0x875B), + MAX_SAMPLES_EXT = ((int)0x8D57), + COMBINE4_NV = ((int)0x8503), + EYE_POINT_SGIS = ((int)0x81F4), + MODELVIEW = ((int)0x1700), + TEXTURE_COMPRESSION_HINT_ARB = ((int)0x84EF), + MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB = ((int)0x8810), + GL_4PASS_3_EXT = ((int)0x80A7), + SOURCE0_ALPHA_ARB = ((int)0x8588), + VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB = ((int)0x889F), + VERTEX_ATTRIB_ARRAY9_NV = ((int)0x8659), + VERTEX_ATTRIB_ARRAY_POINTER = ((int)0x8645), + CLIP_FAR_HINT_PGI = ((int)0x1A221), + DUAL_ALPHA8_SGIS = ((int)0x8111), + PIXEL_MAP_I_TO_G_SIZE = ((int)0x0CB3), + FUNC_ADD_EXT = ((int)0x8006), + QUAD_INTENSITY4_SGIS = ((int)0x8122), + MATRIX27_ARB = ((int)0x88DB), + LINE_RESET_TOKEN = ((int)0x0707), + FOG_INDEX = ((int)0x0B61), + MODELVIEW0_STACK_DEPTH_EXT = ((int)All.MODELVIEW_STACK_DEPTH), + RENDERBUFFER_COVERAGE_SAMPLES_NV = ((int)0x8CAB), + VERTEX_ATTRIB_ARRAY14_NV = ((int)0x865E), + SRGB8_EXT = ((int)0x8C41), + PIXEL_SUBSAMPLE_4444_SGIX = ((int)0x85A2), + VERTEX_ATTRIB_ARRAY13_NV = ((int)0x865D), + VERTEX_ATTRIB_ARRAY10_NV = ((int)0x865A), + LINE_LOOP = ((int)0x0002), + UNSIGNED_INT_SAMPLER_2D_RECT_EXT = ((int)0x8DD5), + VERTEX_ATTRIB_ARRAY5_NV = ((int)0x8655), + REPLACEMENT_CODE_ARRAY_SUN = ((int)0x85C0), + OPERAND1_ALPHA_ARB = ((int)0x8599), + PROGRAM_TEX_INDIRECTIONS_ARB = ((int)0x8807), + FLOAT_MAT2_ARB = ((int)0x8B5A), + ASYNC_MARKER_SGIX = ((int)0x8329), + COMBINER_BIAS_NV = ((int)0x8549), + SPARE0_NV = ((int)0x852E), + UNSIGNED_INT_VEC2_EXT = ((int)0x8DC6), + RGBA_FLOAT_MODE_ARB = ((int)0x8820), + TEXTURE_COMPARE_FUNC_ARB = ((int)0x884D), + TEXTURE_INTERNAL_FORMAT = ((int)0x1003), + MAP1_VERTEX_ATTRIB4_4_NV = ((int)0x8664), + NICEST = ((int)0x1102), + MAX_TRACK_MATRIX_STACK_DEPTH_NV = ((int)0x862E), + MAX_FRAMEZOOM_FACTOR_SGIX = ((int)0x818D), + IMAGE_MAG_FILTER_HP = ((int)0x815C), + COMBINER_SUM_OUTPUT_NV = ((int)0x854C), + R1UI_T2F_V3F_SUN = ((int)0x85C9), + FOG_COORDINATE_ARRAY_POINTER_EXT = ((int)0x8456), + RGB_FLOAT32_ATI = ((int)0x8815), + CURRENT_RASTER_TEXTURE_COORDS = ((int)0x0B06), + MAX_TEXTURE_IMAGE_UNITS_NV = ((int)0x8872), + ASYNC_DRAW_PIXELS_SGIX = ((int)0x835D), + EMISSION = ((int)0x1600), + COLOR_ATTACHMENT3_EXT = ((int)0x8CE3), + TEXTURE_LIGHT_EXT = ((int)0x8350), + VERTEX_ATTRIB_ARRAY15_NV = ((int)0x865F), + PROGRAM_INSTRUCTIONS_ARB = ((int)0x88A0), + LUMINANCE_ALPHA16F_ARB = ((int)0x881F), + OP_SET_GE_EXT = ((int)0x878C), + VERTEX_ATTRIB_ARRAY11_NV = ((int)0x865B), + TEXTURE_2D_BINDING_EXT = ((int)0x8069), + RENDERBUFFER_COLOR_SAMPLES_NV = ((int)0x8E10), MAX_FRAGMENT_UNIFORM_COMPONENTS = ((int)0x8B49), - TEXTURE_PRIORITY = ((int)0x8066), - MAX_ELEMENTS_INDICES_EXT = ((int)0x80E9), + DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV = ((int)0x885D), + OBJECT_BUFFER_USAGE_ATI = ((int)0x8765), + TEXCOORD4_BIT_PGI = unchecked((int)0x80000000), + REFLECTION_MAP_ARB = ((int)0x8512), + LUMINANCE_ALPHA32I_EXT = ((int)0x8D87), + TRACK_MATRIX_NV = ((int)0x8648), + MATRIX10_ARB = ((int)0x88CA), + BIAS_BY_NEGATIVE_ONE_HALF_NV = ((int)0x8541), + GLOBAL_ALPHA_FACTOR_SUN = ((int)0x81DA), + RGBA16UI_EXT = ((int)0x8D76), + PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS = ((int)0x8355), + COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = ((int)0x8C4F), + TEXTURE_CUBE_MAP_POSITIVE_Z_EXT = ((int)0x8519), + OUTPUT_TEXTURE_COORD7_EXT = ((int)0x87A4), + COLOR_ARRAY_BUFFER_BINDING_ARB = ((int)0x8898), + MODELVIEW1_STACK_DEPTH_EXT = ((int)0x8502), + MAP1_GRID_DOMAIN = ((int)0x0DD0), + ELEMENT_ARRAY_BUFFER_BINDING_ARB = ((int)0x8895), + ALPHA_BITS = ((int)0x0D55), + PIXEL_TILE_GRID_WIDTH_SGIX = ((int)0x8142), + LUMINANCE16_EXT = ((int)0x8042), + COMPILE_AND_EXECUTE = ((int)0x1301), + YCRCB_422_SGIX = ((int)0x81BB), + TEXTURE_CLIPMAP_CENTER_SGIX = ((int)0x8171), + SAMPLER_1D_ARRAY_SHADOW_EXT = ((int)0x8DC3), + MATRIX0_ARB = ((int)0x88C0), + PIXEL_TEX_GEN_Q_FLOOR_SGIX = ((int)0x8186), + RGB8 = ((int)0x8051), + PACK_SKIP_IMAGES_EXT = ((int)0x806B), + FORCE_BLUE_TO_ONE_NV = ((int)0x8860), + VERTEX_PROGRAM_POINT_SIZE_ARB = ((int)0x8642), + PACK_SKIP_PIXELS = ((int)0x0D04), + VERTEX_ARRAY_RANGE_APPLE = ((int)0x851D), + ALPHA_BIAS = ((int)0x0D1D), + MODELVIEW26_ARB = ((int)0x873A), + GENERATE_MIPMAP_HINT = ((int)0x8192), + EYE_DISTANCE_TO_POINT_SGIS = ((int)0x81F0), + MAX_VERTEX_VARYING_COMPONENTS_EXT = ((int)0x8DDE), TEXTURE_CLIPMAP_OFFSET_SGIX = ((int)0x8173), - RGB = ((int)0x1907), + EXTENSIONS = ((int)0x1F03), + WRITE_PIXEL_DATA_RANGE_POINTER_NV = ((int)0x887C), + OFFSET_TEXTURE_2D_BIAS_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_BIAS_NV), + PROGRAM_NATIVE_ATTRIBS_ARB = ((int)0x88AE), + PREVIOUS_EXT = ((int)0x8578), + DEPTH_BOUNDS_TEST_EXT = ((int)0x8890), + BOOL_VEC4_ARB = ((int)0x8B59), + DEPTH32F_STENCIL8_NV = ((int)0x8DAC), + TEXTURE_BINDING_1D_ARRAY_EXT = ((int)0x8C1C), + VERTEX_WEIGHT_ARRAY_EXT = ((int)0x850C), + TEXTURE_COORD_NV = ((int)0x8C79), + VERTEX_ATTRIB_ARRAY12_NV = ((int)0x865C), + OBJECT_ACTIVE_UNIFORMS_ARB = ((int)0x8B86), + COLOR_TABLE_LUMINANCE_SIZE = ((int)0x80DE), + RGBA_INTEGER_EXT = ((int)0x8D99), + MAX_TEXTURE_UNITS = ((int)0x84E2), + MIRRORED_REPEAT_ARB = ((int)0x8370), + PACK_IMAGE_HEIGHT = ((int)0x806C), + SHADER_SOURCE_LENGTH = ((int)0x8B88), + MAX_SHININESS_NV = ((int)0x8504), + OUTPUT_TEXTURE_COORD9_EXT = ((int)0x87A6), + NEAREST_MIPMAP_NEAREST = ((int)0x2700), + TEXTURE_BUFFER_EXT = ((int)0x8C2A), + HISTOGRAM_RED_SIZE = ((int)0x8028), + MATRIX0_NV = ((int)0x8630), + SLUMINANCE8_ALPHA8_EXT = ((int)0x8C45), + TEXTURE_LOD_BIAS_R_SGIX = ((int)0x8190), + ONE_MINUS_CONSTANT_ALPHA_EXT = ((int)0x8004), + R1UI_N3F_V3F_SUN = ((int)0x85C7), + SIGNED_HILO_NV = ((int)0x86F9), + SRC0_ALPHA = ((int)VERSION_1_3.SOURCE0_ALPHA), + POST_TEXTURE_FILTER_BIAS_SGIX = ((int)0x8179), + COLOR_MATERIAL_FACE = ((int)0x0B55), + INTENSITY32F_ARB = ((int)0x8817), + OCCLUSION_TEST_HP = ((int)0x8165), + VERTEX_ATTRIB_ARRAY_ENABLED = ((int)0x8622), + RGBA_FLOAT32_ATI = ((int)0x8814), + LINEAR_CLIPMAP_LINEAR_SGIX = ((int)0x8170), + LUMINANCE_ALPHA32UI_EXT = ((int)0x8D75), + TEXTURE_COMPARE_OPERATOR_SGIX = ((int)0x819B), + RGBA_INTEGER_MODE_EXT = ((int)0x8D9E), + ALPHA16F_ARB = ((int)0x881C), + OBJECT_LINK_STATUS_ARB = ((int)0x8B82), + MAX_ATTRIB_STACK_DEPTH = ((int)0x0D35), + MULTISAMPLE_EXT = ((int)0x809D), + PROXY_TEXTURE_2D_STACK_MESAX = ((int)0x875C), + SPECULAR = ((int)0x1202), + GL_4PASS_0_SGIS = ((int)0x80A4), + PARALLEL_ARRAYS_INTEL = ((int)0x83F4), + OUTPUT_COLOR1_EXT = ((int)0x879C), + BGRA_INTEGER_EXT = ((int)0x8D9B), + VERTEX_ARRAY_POINTER = ((int)0x808E), + SAMPLES_3DFX = ((int)0x86B4), + LINE_SMOOTH = ((int)0x0B20), + LINE_SMOOTH_HINT = ((int)0x0C52), + CONVOLUTION_HEIGHT_EXT = ((int)0x8019), + EYE_LINEAR = ((int)0x2400), + TEXTURE_CUBE_MAP_POSITIVE_X = ((int)0x8515), + RED_MIN_CLAMP_INGR = ((int)0x8560), + MAP1_TANGENT_EXT = ((int)0x8444), + MATRIX16_ARB = ((int)0x88D0), + QUAD_ALPHA8_SGIS = ((int)0x811F), + MINMAX_EXT = ((int)0x802E), + MAX_PROGRAM_GENERIC_RESULTS_NV = ((int)0x8DA6), + FRAGMENT_MATERIAL_EXT = ((int)0x8349), + DRAW_BUFFER9_ATI = ((int)0x882E), + READ_PIXEL_DATA_RANGE_LENGTH_NV = ((int)0x887B), + MAX_FRAGMENT_LIGHTS_SGIX = ((int)0x8404), + TEXTURE_DT_SIZE_NV = ((int)0x871E), + PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI = ((int)0x87F7), + POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)0x80D1), + TEXTURE_CUBE_MAP_ARB = ((int)0x8513), + VERTEX_PROGRAM_TWO_SIDE_ARB = ((int)0x8643), + MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT = ((int)0x8DE3), + COMPRESSED_ALPHA_ARB = ((int)0x84E9), + REPEAT = ((int)0x2901), + CONVOLUTION_FORMAT_EXT = ((int)0x8017), + HISTOGRAM_WIDTH = ((int)0x8026), + TEXTURE29_ARB = ((int)0x84DD), + MULTISAMPLE = ((int)0x809D), + POINT_SIZE_MIN = ((int)0x8126), + OUTPUT_TEXTURE_COORD30_EXT = ((int)0x87BB), + IR_INSTRUMENT1_SGIX = ((int)0x817F), + DRAW_BUFFER10_ATI = ((int)0x882F), + DEPTH_STENCIL_NV = ((int)0x84F9), + TEXTURE3_ARB = ((int)0x84C3), + FRAMEBUFFER_UNSUPPORTED_EXT = ((int)0x8CDD), + SET = ((int)0x150F), + COMPRESSED_SLUMINANCE_EXT = ((int)0x8C4A), + MAX_CUBE_MAP_TEXTURE_SIZE_EXT = ((int)0x851C), + R3_G3_B2 = ((int)0x2A10), + NORMAL_ARRAY_EXT = ((int)0x8075), + HISTOGRAM_EXT = ((int)0x8024), + CURRENT_MATRIX_ARB = ((int)0x8641), + COMPILE = ((int)0x1300), + DOT_PRODUCT_NV = ((int)0x86EC), + POINT_SIZE_MIN_SGIS = ((int)0x8126), + SHADING_LANGUAGE_VERSION_ARB = ((int)0x8B8C), + SELECT = ((int)0x1C02), + READ_FRAMEBUFFER_EXT = ((int)0x8CA8), + CUBIC_EXT = ((int)0x8334), + COMBINER7_NV = ((int)0x8557), + COMBINER4_NV = ((int)0x8554), + COLOR_ARRAY_STRIDE_EXT = ((int)0x8083), + SOURCE0_RGB_EXT = ((int)0x8580), + OBJECT_LINE_SGIS = ((int)0x81F7), + CONSTANT_BORDER = ((int)0x8151), + FRONT_RIGHT = ((int)0x0401), + POST_CONVOLUTION_BLUE_BIAS = ((int)0x8022), + COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT = ((int)0x8C73), + MODELVIEW_MATRIX = ((int)0x0BA6), + IMAGE_ROTATE_ORIGIN_X_HP = ((int)0x815A), + CW = ((int)0x0900), + OUTPUT_TEXTURE_COORD0_EXT = ((int)0x879D), + STENCIL_VALUE_MASK = ((int)0x0B93), + SRC_ALPHA = ((int)0x0302), + DUAL_LUMINANCE4_SGIS = ((int)0x8114), + ALPHA_ICC_SGIX = ((int)SGIX_icc_texture.ALPHA_ICC_SGIX), + UNPACK_SKIP_IMAGES = ((int)0x806D), + TEXTURE_PRE_SPECULAR_HP = ((int)0x8169), + LIGHT_ENV_MODE_SGIX = ((int)0x8407), + HALF_FLOAT_ARB = ((int)0x140B), + FRAGMENT_PROGRAM_NV = ((int)0x8870), + FRAMEBUFFER_COMPLETE_EXT = ((int)0x8CD5), + OFFSET_TEXTURE_SCALE_NV = ((int)0x86E2), + RGB5_A1_EXT = ((int)0x8057), + CURRENT_VERTEX_WEIGHT_EXT = ((int)0x850B), + C4UB_V3F = ((int)0x2A23), + REG_27_ATI = ((int)0x893C), + TRIANGLES = ((int)0x0004), + BLUE_MAX_CLAMP_INGR = ((int)0x8566), + CUBIC_HP = ((int)0x815F), + PROGRAM_PARAMETER_NV = ((int)0x8644), + TEXTURE_CUBE_MAP_NEGATIVE_X_EXT = ((int)0x8516), + DUAL_ALPHA12_SGIS = ((int)0x8112), + INDEX_TEST_FUNC_EXT = ((int)0x81B6), + GL_2PASS_1_EXT = ((int)0x80A3), + EIGHTH_BIT_ATI = ((int)0x00000020), + GL_422_REV_EXT = ((int)0x80CD), + RGB_SCALE_EXT = ((int)0x8573), + MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87CD), + TEXTURE_4D_BINDING_SGIS = ((int)0x814F), + PROXY_TEXTURE_COLOR_TABLE_SGI = ((int)0x80BD), + MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT = ((int)0x8C29), + HISTOGRAM_FORMAT_EXT = ((int)0x8027), + LUMINANCE8UI_EXT = ((int)0x8D80), + CURRENT_QUERY = ((int)0x8865), + VERTEX_ARRAY_POINTER_EXT = ((int)0x808E), + R1UI_C4F_N3F_V3F_SUN = ((int)0x85C8), + QUAD_LUMINANCE4_SGIS = ((int)0x8120), + PIXEL_PACK_BUFFER_BINDING_ARB = ((int)0x88ED), + ELEMENT_ARRAY_TYPE_ATI = ((int)0x8769), + FOG_COORD_ARRAY_POINTER = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_POINTER), + PRIMARY_COLOR_EXT = ((int)0x8577), + CULL_VERTEX_IBM = ((int)103050), + OCCLUSION_TEST_RESULT_HP = ((int)0x8166), + TEXTURE_BUFFER_DATA_STORE_BINDING_EXT = ((int)0x8C2D), + CURRENT_MATRIX_INDEX_ARB = ((int)0x8845), + MAX_MULTISAMPLE_COVERAGE_MODES_NV = ((int)0x8E11), + ONE_MINUS_DST_ALPHA = ((int)0x0305), + VERTEX_ARRAY_RANGE_POINTER_APPLE = ((int)0x8521), + NEGATIVE_X_EXT = ((int)0x87D9), + CLIENT_ALL_ATTRIB_BITS = unchecked((int)0xFFFFFFFF), + COMBINE_ALPHA = ((int)0x8572), + INCR_WRAP = ((int)0x8507), + SAMPLER_2D_ARRAY_EXT = ((int)0x8DC1), + PIXEL_UNPACK_BUFFER_EXT = ((int)0x88EC), + OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB = ((int)0x8B8A), + SHADER_TYPE = ((int)0x8B4F), + VERTEX_ATTRIB_ARRAY_SIZE = ((int)0x8623), + MUL_ATI = ((int)0x8964), + GREEN_BIT_ATI = ((int)0x00000002), + PIXEL_MAP_I_TO_B_SIZE = ((int)0x0CB4), + LUMINANCE_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE_ICC_SGIX), + REPLACE_MIDDLE_SUN = ((int)0x0002), + TEXTURE_CUBE_MAP_POSITIVE_Y = ((int)0x8517), + FALSE = ((int)0), + OFFSET_TEXTURE_RECTANGLE_NV = ((int)0x864C), + POST_COLOR_MATRIX_BLUE_SCALE_SGI = ((int)0x80B6), + PACK_SKIP_ROWS = ((int)0x0D03), + VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = ((int)0x889F), + BLEND_SRC_RGB_EXT = ((int)0x80C9), + PREVIOUS_ARB = ((int)0x8578), + PROXY_POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D5), + LIGHT_MODEL_SPECULAR_VECTOR_APPLE = ((int)0x85B0), + LUMINANCE_ALPHA_FLOAT16_ATI = ((int)0x881F), + MATRIX_INDEX_ARRAY_SIZE_ARB = ((int)0x8846), + NUM_LOOPBACK_COMPONENTS_ATI = ((int)0x8974), + ALLOW_DRAW_MEM_HINT_PGI = ((int)0x1A211), + POST_COLOR_MATRIX_GREEN_SCALE = ((int)0x80B5), + TEXTURE_GEN_MODE = ((int)0x2500), + CONVOLUTION_FILTER_BIAS_EXT = ((int)0x8015), + PIXEL_PACK_BUFFER_BINDING = ((int)0x88ED), + RASTERIZER_DISCARD_NV = ((int)0x8C89), + COLOR_INDEXES = ((int)0x1603), + POST_COLOR_MATRIX_RED_BIAS = ((int)0x80B8), + PIXEL_UNPACK_BUFFER = ((int)0x88EC), + SAMPLER_2D_RECT_ARB = ((int)0x8B63), + LUMINANCE8_ALPHA8 = ((int)0x8045), + PIXEL_MAP_I_TO_R = ((int)0x0C72), + COLOR_CLEAR_VALUE = ((int)0x0C22), + BOOL_VEC2_ARB = ((int)0x8B57), + RGB16I_EXT = ((int)0x8D89), + LUMINANCE4 = ((int)0x803F), + T2F_C4UB_V3F = ((int)0x2A29), + SAMPLER_1D = ((int)0x8B5D), + INDEX_ARRAY_LIST_IBM = ((int)103073), + FRAGMENT_LIGHT2_SGIX = ((int)0x840E), + V2F = ((int)0x2A20), + ACCUM_BUFFER_BIT = ((int)0x00000200), + DSDT_MAG_NV = ((int)0x86F6), + TEXTURE_BORDER = ((int)0x1005), + MAX_TEXTURE_MAX_ANISOTROPY_EXT = ((int)0x84FF), + SPARE1_NV = ((int)0x852F), + OP_DOT3_EXT = ((int)0x8784), + MAX_RECTANGLE_TEXTURE_SIZE_NV = ((int)0x84F8), + RENDERBUFFER_BINDING_EXT = ((int)0x8CA7), + FRAMEBUFFER_INCOMPLETE_FORMATS_EXT = ((int)0x8CDA), + OBJECT_BUFFER_SIZE_ATI = ((int)0x8764), + UNSIGNED_SHORT_8_8_REV_MESA = ((int)0x85BB), + POLYGON_BIT = ((int)0x00000008), + TEXTURE_4D_SGIS = ((int)0x8134), + TEXTURE_3D_EXT = ((int)0x806F), + TEXTURE_COMPARE_MODE = ((int)0x884C), + PN_TRIANGLES_POINT_MODE_ATI = ((int)0x87F2), + OP_ADD_EXT = ((int)0x8787), + MAX_TEXTURE_COORDS_ARB = ((int)0x8871), + TEXTURE_COORD_ARRAY_POINTER = ((int)0x8092), + TEXTURE_HEIGHT = ((int)0x1001), + TEXTURE_BINDING_RECTANGLE_ARB = ((int)0x84F6), + ALPHA4 = ((int)0x803B), + NAME_STACK_DEPTH = ((int)0x0D70), + STENCIL_BACK_PASS_DEPTH_FAIL = ((int)0x8802), + TEXTURE_WRAP_S = ((int)0x2802), + DOUBLE = ((int)0x140A), + RGB_ICC_SGIX = ((int)SGIX_icc_texture.RGB_ICC_SGIX), + QUAD_LUMINANCE8_SGIS = ((int)0x8121), + TEXTURE_ENV_MODE = ((int)0x2200), + MAX_PROGRAM_PARAMETERS_ARB = ((int)0x88A9), + DOT3_RGBA = ((int)0x86AF), + UNSIGNED_INT_24_8_EXT = ((int)0x84FA), + VERTEX_ARRAY_STRIDE_EXT = ((int)0x807C), + LUMINANCE12_ALPHA12_EXT = ((int)0x8047), + CURRENT_NORMAL = ((int)0x0B02), + FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT = ((int)0x8CDC), + TEXTURE30 = ((int)0x84DE), + DRAW_BUFFER3_ATI = ((int)0x8828), + COLOR_INDEX8_EXT = ((int)0x80E5), + SAMPLE_PATTERN_EXT = ((int)0x80AC), + DU8DV8_ATI = ((int)0x877A), + UNSIGNED_INT_S8_S8_8_8_NV = ((int)0x86DA), + C4UB_V2F = ((int)0x2A22), + COMPARE_R_TO_TEXTURE_ARB = ((int)0x884E), + VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87D1), + VERTEX_ATTRIB_ARRAY_ENABLED_ARB = ((int)0x8622), + NORMAL_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F6), + CLAMP_TO_EDGE = ((int)0x812F), + POLYGON_SMOOTH = ((int)0x0B41), + EYE_PLANE = ((int)0x2502), + IMAGE_TRANSLATE_X_HP = ((int)0x8157), + DYNAMIC_COPY = ((int)0x88EA), + MIN_PROGRAM_TEXEL_OFFSET_NV = ((int)0x8904), + MAX_NAME_STACK_DEPTH = ((int)0x0D37), + REPLACEMENT_CODE_ARRAY_TYPE_SUN = ((int)0x85C1), + TEXTURE_HI_SIZE_NV = ((int)0x871B), + SWIZZLE_STQ_DQ_ATI = ((int)0x8979), + SPOT_DIRECTION = ((int)0x1204), + TEXTURE_DS_SIZE_NV = ((int)0x871D), + REFLECTION_MAP_EXT = ((int)0x8512), + CON_7_ATI = ((int)0x8948), + OBJECT_TYPE_ARB = ((int)0x8B4E), + DITHER = ((int)0x0BD0), + VERTEX_PROGRAM_NV = ((int)0x8620), + MAP1_VERTEX_ATTRIB11_4_NV = ((int)0x866B), + FLOAT_R_NV = ((int)0x8880), + PRIMITIVES_GENERATED_NV = ((int)0x8C87), + TRANSFORM_FEEDBACK_ATTRIBS_NV = ((int)0x8C7E), + RGB32UI_EXT = ((int)0x8D71), + FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX = ((int)0x8408), + SIGNED_ALPHA8_NV = ((int)0x8706), + FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT = ((int)0x8CD4), + BGR_EXT = ((int)0x80E0), + MAP1_VERTEX_ATTRIB3_4_NV = ((int)0x8663), + VERTEX_ATTRIB_ARRAY_POINTER_ARB = ((int)0x8645), + FORMAT_SUBSAMPLE_24_24_OML = ((int)0x8982), + RENDERBUFFER_BLUE_SIZE_EXT = ((int)0x8D52), + DRAW_BUFFER0_ATI = ((int)0x8825), + DETAIL_TEXTURE_2D_SGIS = ((int)0x8095), + SHADE_MODEL = ((int)0x0B54), + MAX_PIXEL_MAP_TABLE = ((int)0x0D34), + NORMAL_BIT_PGI = ((int)0x08000000), + OPERAND2_RGB_EXT = ((int)0x8592), + STREAM_READ = ((int)0x88E1), + PROXY_TEXTURE_1D = ((int)0x8063), + DST_ALPHA = ((int)0x0304), + COLOR_ALPHA_PAIRING_ATI = ((int)0x8975), + BLUE_SCALE = ((int)0x0D1A), + LUMINANCE_INTEGER_EXT = ((int)0x8D9C), + SWIZZLE_STRQ_DQ_ATI = ((int)0x897B), + COMPRESSED_RGB_S3TC_DXT1_EXT = ((int)0x83F0), + POINT_SIZE_MAX_SGIS = ((int)0x8127), + UNSIGNED_SHORT_4_4_4_4_REV_EXT = ((int)0x8365), + ACTIVE_TEXTURE = ((int)0x84E0), + MAX_GENERAL_COMBINERS_NV = ((int)0x854D), + DISTANCE_ATTENUATION_EXT = ((int)0x8129), + MAX_TEXTURE_UNITS_ARB = ((int)0x84E2), + MAX_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8872), + LINES = ((int)0x0001), + PIXEL_MAP_I_TO_I = ((int)0x0C70), + MODELVIEW24_ARB = ((int)0x8738), + MODELVIEW27_ARB = ((int)0x873B), + CON_5_ATI = ((int)0x8946), + MAP2_GRID_DOMAIN = ((int)0x0DD2), + PROXY_COLOR_TABLE = ((int)0x80D3), + TEXTURE_1D_BINDING_EXT = ((int)0x8068), + ELEMENT_ARRAY_POINTER_APPLE = ((int)0x876A), + PIXEL_TILE_HEIGHT_SGIX = ((int)0x8141), + DISCARD_NV = ((int)0x8530), + OUTPUT_VERTEX_EXT = ((int)0x879A), + TRANSPOSE_COLOR_MATRIX = ((int)0x84E6), + SCISSOR_BIT = ((int)0x00080000), + FOG_HINT = ((int)0x0C54), + STRICT_SCISSOR_HINT_PGI = ((int)0x1A218), + COLOR_TABLE_INTENSITY_SIZE = ((int)0x80DF), + T2F_C4F_N3F_V3F = ((int)0x2A2C), + DRAW_BUFFER9_ARB = ((int)0x882E), + SCALAR_EXT = ((int)0x87BE), + NUM_INSTRUCTIONS_TOTAL_ATI = ((int)0x8972), + TEXTURE27 = ((int)0x84DB), + VERTEX_ARRAY_COUNT_EXT = ((int)0x807D), + OPERAND3_RGB_NV = ((int)0x8593), + NORMAL_ARRAY_LIST_IBM = ((int)103071), + TEXTURE23 = ((int)0x84D7), + EDGEFLAG_BIT_PGI = ((int)0x00040000), + QUERY_COUNTER_BITS_ARB = ((int)0x8864), + LOCAL_CONSTANT_VALUE_EXT = ((int)0x87EC), + OP_MIN_EXT = ((int)0x878B), + SOURCE3_RGB_NV = ((int)0x8583), + CON_0_ATI = ((int)0x8941), + WEIGHT_ARRAY_ARB = ((int)0x86AD), + BOOL_VEC4 = ((int)0x8B59), + MAX_TEXTURE_SIZE = ((int)0x0D33), + EVAL_VERTEX_ATTRIB8_NV = ((int)0x86CE), + BOOL_VEC3 = ((int)0x8B58), + OBJECT_SHADER_SOURCE_LENGTH_ARB = ((int)0x8B88), + INT_SAMPLER_2D_RECT_EXT = ((int)0x8DCD), + SPRITE_AXIS_SGIX = ((int)0x814A), + OP_MOV_EXT = ((int)0x8799), + RGBA_ICC_SGIX = ((int)SGIX_icc_texture.RGBA_ICC_SGIX), + QUERY_RESULT_AVAILABLE_ARB = ((int)0x8867), + LUMINANCE12_EXT = ((int)0x8041), + DRAW_BUFFER = ((int)0x0C01), + EMBOSS_MAP_NV = ((int)0x855F), + ADD_ATI = ((int)0x8963), + IMAGE_SCALE_Y_HP = ((int)0x8156), + IMAGE_SCALE_X_HP = ((int)0x8155), + EVAL_VERTEX_ATTRIB12_NV = ((int)0x86D2), + BGR_INTEGER_EXT = ((int)0x8D9A), + COLOR_ATTACHMENT5_EXT = ((int)0x8CE5), + MAX_PROGRAM_TEX_INDIRECTIONS_ARB = ((int)0x880D), + ALPHA8_EXT = ((int)0x803C), + NEAREST = ((int)0x2600), + PROGRAM_FORMAT_ARB = ((int)0x8876), + PROGRAM_NATIVE_INSTRUCTIONS_ARB = ((int)0x88A2), + DEPTH_FUNC = ((int)0x0B74), + DOT_PRODUCT_TEXTURE_3D_NV = ((int)0x86EF), + NORMAL_ARRAY_POINTER_EXT = ((int)0x808F), + REG_12_ATI = ((int)0x892D), + NORMALIZE = ((int)0x0BA1), + FOG_COORDINATE = ((int)0x8451), + SLICE_ACCUM_SUN = ((int)0x85CC), + TEXTURE_MAX_LEVEL_SGIS = ((int)0x813D), + COLOR_TABLE_WIDTH = ((int)0x80D9), + FOG_MODE = ((int)0x0B65), + EVAL_BIT = ((int)0x00010000), + RGBA32F_ARB = ((int)0x8814), + ATTACHED_SHADERS = ((int)0x8B85), + POST_CONVOLUTION_RED_BIAS_EXT = ((int)0x8020), + ATTRIB_STACK_DEPTH = ((int)0x0BB0), + TEXTURE_BINDING_CUBE_MAP_ARB = ((int)0x8514), + CON_6_ATI = ((int)0x8947), + TEXTURE_LIGHTING_MODE_HP = ((int)0x8167), + UNSIGNED_INT_10F_11F_11F_REV_EXT = ((int)0x8C3B), + QUADRATIC_ATTENUATION = ((int)0x1209), + ADD_SIGNED_EXT = ((int)0x8574), + LUMINANCE16_ALPHA8_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ALPHA8_ICC_SGIX), + DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV = ((int)0x885A), + GREATER = ((int)0x0204), + MAX = ((int)0x8008), + OP_MAX_EXT = ((int)0x878A), + RENDERER = ((int)0x1F01), + VERTEX_ARRAY_TYPE = ((int)0x807B), + MULTISAMPLE_BIT_EXT = ((int)0x20000000), + FLOAT_RGB_NV = ((int)0x8882), + MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB = ((int)0x88A3), + TEXTURE_BORDER_VALUES_NV = ((int)0x871A), + INDEX_TEST_REF_EXT = ((int)0x81B7), + CON_1_ATI = ((int)0x8942), + MAP2_VERTEX_ATTRIB4_4_NV = ((int)0x8674), + VERTEX_STREAM4_ATI = ((int)0x8770), + POINT_SMOOTH = ((int)0x0B10), + PRIMARY_COLOR_NV = ((int)0x852C), + SUBPIXEL_BITS = ((int)0x0D50), + REPLACE = ((int)0x1E01), + CONSTANT_COLOR = ((int)0x8001), + LINEAR_CLIPMAP_NEAREST_SGIX = ((int)0x844F), + EDGE_FLAG_ARRAY_COUNT_EXT = ((int)0x808D), + NUM_COMPRESSED_TEXTURE_FORMATS_ARB = ((int)0x86A2), + VERTEX_ARRAY_SIZE = ((int)0x807A), + BUFFER_ACCESS = ((int)0x88BB), + EVAL_VERTEX_ATTRIB11_NV = ((int)0x86D1), + BLUE = ((int)0x1905), + INDEX_ARRAY_BUFFER_BINDING_ARB = ((int)0x8899), + POST_COLOR_MATRIX_COLOR_TABLE_SGI = ((int)0x80D2), + BACK_SECONDARY_COLOR_NV = ((int)0x8C78), + CURRENT_ATTRIB_NV = ((int)0x8626), + PROXY_TEXTURE_4D_SGIS = ((int)0x8135), + COLOR_TABLE_LUMINANCE_SIZE_SGI = ((int)0x80DE), + TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)0x8174), + OFFSET_PROJECTIVE_TEXTURE_2D_NV = ((int)0x8850), + OR_INVERTED = ((int)0x150D), + MATRIX17_ARB = ((int)0x88D1), + MAX_TEXTURE_LOD_BIAS_EXT = ((int)0x84FD), + PROXY_TEXTURE_CUBE_MAP_EXT = ((int)0x851B), + MAP1_VERTEX_ATTRIB1_4_NV = ((int)0x8661), + VERTEX_PROGRAM_TWO_SIDE_NV = ((int)0x8643), + COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT = ((int)0x8DBE), + UNSIGNED_INT_8_8_8_8_REV = ((int)0x8367), + INVARIANT_EXT = ((int)0x87C2), + MAX_CLIPMAP_DEPTH_SGIX = ((int)0x8177), + CURRENT_FOG_COORDINATE_EXT = ((int)0x8453), + COLOR_ATTACHMENT1_EXT = ((int)0x8CE1), + LUMINANCE6_ALPHA2_EXT = ((int)0x8044), + OR_REVERSE = ((int)0x150B), + COLOR_INDEX2_EXT = ((int)0x80E3), + MIN = ((int)0x8007), + PIXEL_SUBSAMPLE_2424_SGIX = ((int)0x85A3), + CONVOLUTION_BORDER_COLOR_HP = ((int)0x8154), + ALPHA16 = ((int)0x803E), + BLUE_BIAS = ((int)0x0D1B), + TEXTURE_COORD_ARRAY = ((int)0x8078), + VERTEX_SHADER = ((int)0x8B31), + SEPARATE_SPECULAR_COLOR_EXT = ((int)0x81FA), + MAP2_BINORMAL_EXT = ((int)0x8447), + PROJECTION = ((int)0x1701), + VERTEX_ATTRIB_ARRAY_SIZE_ARB = ((int)0x8623), + SHADOW_ATTENUATION_EXT = ((int)0x834E), + COLOR_TABLE_ALPHA_SIZE = ((int)0x80DD), + FRAGMENT_LIGHT1_SGIX = ((int)0x840D), + COMPRESSED_RGB_ARB = ((int)0x84ED), + HISTOGRAM = ((int)0x8024), + VARIABLE_B_NV = ((int)0x8524), + ALPHA8 = ((int)0x803C), + NEAREST_CLIPMAP_NEAREST_SGIX = ((int)0x844D), + TEXTURE_INTENSITY_SIZE_EXT = ((int)0x8061), + COLOR_ATTACHMENT6_EXT = ((int)0x8CE6), + MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87CA), + BOOL_VEC2 = ((int)0x8B57), + COMPRESSED_SRGB_S3TC_DXT1_EXT = ((int)0x8C4C), + DEPTH_COMPONENT16_ARB = ((int)0x81A5), + OPERAND1_RGB_ARB = ((int)0x8591), + MAX_VERTEX_BINDABLE_UNIFORMS_EXT = ((int)0x8DE2), + TEXTURE_LO_SIZE_NV = ((int)0x871C), + COLOR_TABLE_GREEN_SIZE_SGI = ((int)0x80DB), + OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV = ((int)0x8856), + CONVOLUTION_WIDTH = ((int)0x8018), + OUTPUT_TEXTURE_COORD21_EXT = ((int)0x87B2), + TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM = ((int)103084), + POST_COLOR_MATRIX_BLUE_BIAS_SGI = ((int)0x80BA), + DOT_PRODUCT_TEXTURE_2D_NV = ((int)0x86EE), + DOT3_RGB = ((int)0x86AE), + COLOR_ATTACHMENT7_EXT = ((int)0x8CE7), + REG_22_ATI = ((int)0x8937), + VERTEX_ATTRIB_ARRAY4_NV = ((int)0x8654), + OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV = ((int)0x8851), + POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D1), + INDEX_ARRAY_STRIDE = ((int)0x8086), + LUMINANCE12_ALPHA4 = ((int)0x8046), + STENCIL_WRITEMASK = ((int)0x0B98), + OP_CLAMP_EXT = ((int)0x878E), + SUB_ATI = ((int)0x8965), + FOG_COLOR = ((int)0x0B66), + BACK_RIGHT = ((int)0x0403), + LIST_PRIORITY_SGIX = ((int)0x8182), + TEXTURE_MAG_FILTER = ((int)0x2800), + PIXEL_MAP_I_TO_A_SIZE = ((int)0x0CB5), + MAX_CONVOLUTION_HEIGHT_EXT = ((int)0x801B), + MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT = ((int)0x8DDF), + OUTPUT_TEXTURE_COORD11_EXT = ((int)0x87A8), + PROGRAM_OBJECT_ARB = ((int)0x8B40), + CLAMP_READ_COLOR_ARB = ((int)0x891C), + MAX_PROGRAM_ATTRIBS_ARB = ((int)0x88AD), + R1UI_T2F_N3F_V3F_SUN = ((int)0x85CA), + TRIANGLE_STRIP = ((int)0x0005), + DUAL_LUMINANCE8_SGIS = ((int)0x8115), + PIXEL_TEX_GEN_ALPHA_MS_SGIX = ((int)0x818A), + POLYGON_OFFSET_EXT = ((int)0x8037), + CONVOLUTION_HEIGHT = ((int)0x8019), + ONE = ((int)1), + POST_TEXTURE_FILTER_BIAS_RANGE_SGIX = ((int)0x817B), + PACK_SKIP_VOLUMES_SGIS = ((int)0x8130), + VERTEX_SHADER_LOCALS_EXT = ((int)0x87D3), + MAX_CONVOLUTION_WIDTH_EXT = ((int)0x801A), + INVARIANT_DATATYPE_EXT = ((int)0x87EB), + STENCIL_BACK_VALUE_MASK = ((int)0x8CA4), + TEXTURE_DEPTH = ((int)0x8071), + BOOL_ARB = ((int)0x8B56), + PIXEL_PACK_BUFFER = ((int)0x88EB), + SMOOTH = ((int)0x1D01), + WEIGHT_ARRAY_POINTER_ARB = ((int)0x86AC), + SCISSOR_BOX = ((int)0x0C10), + GREEN_INTEGER_EXT = ((int)0x8D95), + RESAMPLE_DECIMATE_OML = ((int)0x8989), TEXTURE_GEN_S = ((int)0x0C60), TEXTURE_GEN_R = ((int)0x0C62), - POST_CONVOLUTION_GREEN_SCALE = ((int)0x801D), - LINEAR_SHARPEN_SGIS = ((int)0x80AD), - ALLOW_DRAW_WIN_HINT_PGI = ((int)0x1A20F), - TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB = ((int)0x8518), - STATIC_READ = ((int)0x88E5), - TEXTURE14 = ((int)0x84CE), - BLEND_SRC_ALPHA = ((int)0x80CB), - SWIZZLE_STQ_DQ_ATI = ((int)0x8979), - MAP2_VERTEX_ATTRIB7_4_NV = ((int)0x8677), - TEXTURE10 = ((int)0x84CA), - STENCIL = ((int)0x1802), - SOURCE0_ALPHA = ((int)0x8588), - POINT_SIZE_MIN_SGIS = ((int)0x8126), - LINEAR = ((int)0x2601), - TEXTURE_BLUE_SIZE_EXT = ((int)0x805E), - QUAD_ALPHA4_SGIS = ((int)0x811E), + TEXTURE_GEN_Q = ((int)0x0C63), + UNSIGNED_INT_10_10_10_2 = ((int)0x8036), + FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT = ((int)0x8DA8), + TEXTURE_GEN_T = ((int)0x0C61), + COLOR_INDEX1_EXT = ((int)0x80E2), + EMBOSS_LIGHT_NV = ((int)0x855D), + PN_TRIANGLES_TESSELATION_LEVEL_ATI = ((int)0x87F4), + SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB = ((int)0x889C), ACTIVE_ATTRIBUTE_MAX_LENGTH = ((int)0x8B8A), - SOURCE2_RGB_ARB = ((int)0x8582), - PIXEL_MAP_I_TO_A = ((int)0x0C75), - REG_14_ATI = ((int)0x892F), - C4UB_V3F = ((int)0x2A23), - C4UB_V2F = ((int)0x2A22), - VARIABLE_B_NV = ((int)0x8524), - COMPRESSED_ALPHA_ARB = ((int)0x84E9), - MODELVIEW16_ARB = ((int)0x8730), - UNSIGNED_INT_10F_11F_11F_REV_EXT = ((int)0x8C3B), - BLEND_SRC_RGB_EXT = ((int)0x80C9), - OP_SET_GE_EXT = ((int)0x878C), - MODELVIEW8_ARB = ((int)0x8728), - EYE_LINEAR = ((int)0x2400), - OUTPUT_TEXTURE_COORD19_EXT = ((int)0x87B0), - LERP_ATI = ((int)0x8969), - CURRENT_BIT = ((int)0x00000001), - COMBINE_ALPHA_ARB = ((int)0x8572), - MAX_COLOR_MATRIX_STACK_DEPTH_SGI = ((int)0x80B3), - BACK_SECONDARY_COLOR_NV = ((int)0x8C78), - FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX = ((int)0x840B), - CUBIC_EXT = ((int)0x8334), - COLOR_TABLE_ALPHA_SIZE_SGI = ((int)0x80DD), - MAX_VERTEX_SHADER_VARIANTS_EXT = ((int)0x87C6), - ARRAY_BUFFER_ARB = ((int)0x8892), - TEXTURE_LOD_BIAS_R_SGIX = ((int)0x8190), - MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = ((int)0x8337), - LIGHT7 = ((int)0x4007), - BUFFER_MAP_POINTER_ARB = ((int)0x88BD), - MAX_VERTEX_UNITS_ARB = ((int)0x86A4), - DEPENDENT_GB_TEXTURE_2D_NV = ((int)0x86EA), - COLOR_TABLE_BIAS_SGI = ((int)0x80D7), - MAX_LIGHTS = ((int)0x0D31), - DSDT8_MAG8_INTENSITY8_NV = ((int)0x870B), - MATRIX0_ARB = ((int)0x88C0), - ALLOW_DRAW_MEM_HINT_PGI = ((int)0x1A211), - EDGE_FLAG_ARRAY_EXT = ((int)0x8079), - TEXTURE_COMPONENTS = ((int)0x1003), - FLOAT_MAT2_ARB = ((int)0x8B5A), - VERTEX_ATTRIB_ARRAY_SIZE = ((int)0x8623), - ACCUM_CLEAR_VALUE = ((int)0x0B80), - HI_BIAS_NV = ((int)0x8714), - LINEAR_DETAIL_ALPHA_SGIS = ((int)0x8098), - MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8B4D), - FRAGMENT_SHADER_ARB = ((int)0x8B30), - GL_2X_BIT_ATI = ((int)0x00000001), - VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = ((int)0x889F), - MIRROR_CLAMP_TO_BORDER_EXT = ((int)0x8912), - BLUE_BIAS = ((int)0x0D1B), - MAP2_NORMAL = ((int)0x0DB2), - RENDERBUFFER_BINDING_EXT = ((int)0x8CA7), - MAX_PROGRAM_EXEC_INSTRUCTIONS_NV = ((int)0x88F4), - FOG_COORDINATE_SOURCE = ((int)0x8450), - COLOR_BUFFER_BIT = ((int)0x00004000), - BIAS_BIT_ATI = ((int)0x00000008), - SHADER_CONSISTENT_NV = ((int)0x86DD), - LUMINANCE12_ALPHA4_EXT = ((int)0x8046), - TEXTURE_LO_SIZE_NV = ((int)0x871C), - UNSIGNED_INT_VEC3_EXT = ((int)0x8DC7), - POST_CONVOLUTION_GREEN_SCALE_EXT = ((int)0x801D), - DEPENDENT_HILO_TEXTURE_2D_NV = ((int)0x8858), - STACK_UNDERFLOW = ((int)0x0504), - PIXEL_PACK_BUFFER_BINDING_ARB = ((int)0x88ED), - TEXTURE_MATERIAL_FACE_EXT = ((int)0x8351), - CONVOLUTION_FORMAT = ((int)0x8017), - CW = ((int)0x0900), - MAT_AMBIENT_AND_DIFFUSE_BIT_PGI = ((int)0x00200000), - MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87CC), - CONSTANT_ALPHA = ((int)0x8003), - VERTEX_SOURCE_ATI = ((int)0x8774), - NATIVE_GRAPHICS_HANDLE_PGI = ((int)0x1A202), - COLOR_TABLE_GREEN_SIZE = ((int)0x80DB), - SAMPLE_BUFFERS_3DFX = ((int)0x86B3), - POINT_SMOOTH_HINT = ((int)0x0C51), - DRAW_BUFFER8 = ((int)0x882D), - TEXTURE_BINDING_CUBE_MAP_EXT = ((int)0x8514), - MAX_TEXTURE_LOD_BIAS = ((int)0x84FD), - EVAL_BIT = ((int)0x00010000), - MODELVIEW9_ARB = ((int)0x8729), - MAX_PROGRAM_NATIVE_ATTRIBS_ARB = ((int)0x88AF), - CONSTANT = ((int)0x8576), - REG_7_ATI = ((int)0x8928), - STENCIL_TEST = ((int)0x0B90), - LIGHT_MODEL_TWO_SIDE = ((int)0x0B52), - GL_2D = ((int)0x0600), - ALLOW_DRAW_OBJ_HINT_PGI = ((int)0x1A20E), - VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV = ((int)0x8533), - UNSIGNED_INT_VEC2_EXT = ((int)0x8DC6), - REG_31_ATI = ((int)0x8940), - INVALID_FRAMEBUFFER_OPERATION_EXT = ((int)0x0506), - PACK_SKIP_IMAGES = ((int)0x806B), - DRAW_PIXELS_APPLE = ((int)0x8A0A), - LINES_ADJACENCY_EXT = ((int)0x000A), - MATRIX_INDEX_ARRAY_STRIDE_ARB = ((int)0x8848), - SAMPLER_1D_ARRAY_SHADOW_EXT = ((int)0x8DC3), - DS_SCALE_NV = ((int)0x8710), - MAP2_VERTEX_3 = ((int)0x0DB7), - POINT_SIZE = ((int)0x0B11), - MAP2_VERTEX_4 = ((int)0x0DB8), - PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB = ((int)0x880A), - VERTEX_ARRAY_POINTER = ((int)0x808E), - MATRIX24_ARB = ((int)0x88D8), - FLOAT_MAT2x4 = ((int)0x8B66), - SOURCE0_ALPHA_EXT = ((int)0x8588), - VERTEX_ARRAY_RANGE_POINTER_NV = ((int)0x8521), - SPARE0_NV = ((int)0x852E), - LINE_WIDTH_RANGE = ((int)0x0B22), - CON_2_ATI = ((int)0x8943), - TEXTURE_COORD_ARRAY_TYPE_EXT = ((int)0x8089), - OP_LOG_BASE_2_EXT = ((int)0x8792), - POST_CONVOLUTION_ALPHA_SCALE = ((int)0x801F), - INCR_WRAP = ((int)0x8507), - NUM_LOOPBACK_COMPONENTS_ATI = ((int)0x8974), - EDGE_FLAG_ARRAY_POINTER_EXT = ((int)0x8093), - MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB = ((int)0x880E), - TEXTURE_FILTER_CONTROL = ((int)0x8500), - RGBA_S3TC = ((int)0x83A2), - TEXTURE_PRE_SPECULAR_HP = ((int)0x8169), - MAX_PROGRAM_NATIVE_TEMPORARIES_ARB = ((int)0x88A7), - VARIABLE_D_NV = ((int)0x8526), - QUERY_COUNTER_BITS = ((int)0x8864), - COLOR_ATTACHMENT3_EXT = ((int)0x8CE3), - UNSIGNED_INT_5_9_9_9_REV_EXT = ((int)0x8C3E), - CONST_EYE_NV = ((int)0x86E5), - MODELVIEW23_ARB = ((int)0x8737), - TEXTURE_SHARED_SIZE_EXT = ((int)0x8C3F), - NEAREST_CLIPMAP_NEAREST_SGIX = ((int)0x844D), - AUTO_NORMAL = ((int)0x0D80), - CONVOLUTION_WIDTH = ((int)0x8018), - TEXTURE_COMPRESSED = ((int)0x86A1), - TEXTURE_CUBE_MAP_POSITIVE_Y_EXT = ((int)0x8517), - BLEND = ((int)0x0BE2), - ARRAY_ELEMENT_LOCK_COUNT_EXT = ((int)0x81A9), - COMBINER_SCALE_NV = ((int)0x8548), - STENCIL_FUNC = ((int)0x0B92), - POST_CONVOLUTION_ALPHA_BIAS = ((int)0x8023), - MAP1_VERTEX_ATTRIB13_4_NV = ((int)0x866D), - MAX_PROGRAM_CALL_DEPTH_NV = ((int)0x88F5), - IUI_V2F_EXT = ((int)0x81AD), - MODELVIEW7_ARB = ((int)0x8727), - COMPRESSED_RGBA_ARB = ((int)0x84EE), - COLOR_ARRAY_POINTER = ((int)0x8090), - INDEX_ARRAY_EXT = ((int)0x8077), - LUMINANCE32UI_EXT = ((int)0x8D74), - SOURCE0_RGB_EXT = ((int)0x8580), - BGR_EXT = ((int)0x80E0), - TEXTURE_COMPARE_MODE_ARB = ((int)0x884C), - BGR = ((int)0x80E0), - SOURCE0_RGB_ARB = ((int)0x8580), - HISTOGRAM_WIDTH_EXT = ((int)0x8026), - LINE_STRIP = ((int)0x0003), - VERTEX_ARRAY_SIZE_EXT = ((int)0x807A), - LIGHT6 = ((int)0x4006), - DUAL_LUMINANCE4_SGIS = ((int)0x8114), - VERTEX_SHADER_OPTIMIZED_EXT = ((int)0x87D4), - TEXTURE20_ARB = ((int)0x84D4), - SWIZZLE_STR_DR_ATI = ((int)0x8978), - SAMPLE_MASK_VALUE_SGIS = ((int)0x80AA), - NORMAL_ARRAY_STRIDE_EXT = ((int)0x807F), - POINT_SIZE_MAX_ARB = ((int)0x8127), - RGB8 = ((int)0x8051), - BITMAP_TOKEN = ((int)0x0704), - VERTEX_ARRAY = ((int)0x8074), - VERTEX_ARRAY_RANGE_VALID_NV = ((int)0x851F), - POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)0x80D1), - SAMPLES_ARB = ((int)0x80A9), - STORAGE_SHARED_APPLE = ((int)0x85BF), - LINE_STIPPLE = ((int)0x0B24), - VERTEX_SHADER = ((int)0x8B31), - TANGENT_ARRAY_STRIDE_EXT = ((int)0x843F), - FULL_RANGE_EXT = ((int)0x87E1), - TEXTURE_MIN_LOD = ((int)0x813A), - NEGATIVE_W_EXT = ((int)0x87DC), - TEXTURE_WRAP_T = ((int)0x2803), - SET = ((int)0x150F), - GREEN_INTEGER_EXT = ((int)0x8D95), - INDEX_BIT_PGI = ((int)0x00080000), - ADD_SIGNED = ((int)0x8574), - MULTISAMPLE_SGIS = ((int)0x809D), - FLOAT_RG32_NV = ((int)0x8887), - OPERAND1_RGB = ((int)0x8591), - SPHERE_MAP = ((int)0x2402), - INDEX_ARRAY_COUNT_EXT = ((int)0x8087), - CONVOLUTION_BORDER_MODE = ((int)0x8013), - SIGNED_RGB_NV = ((int)0x86FE), - DRAW_BUFFER4 = ((int)0x8829), - ONE_MINUS_CONSTANT_COLOR_EXT = ((int)0x8002), - DRAW_BUFFER11_ARB = ((int)0x8830), - GL_4PASS_0_SGIS = ((int)0x80A4), - ACCUM_BUFFER_BIT = ((int)0x00000200), - TRIANGLE_MESH_SUN = ((int)0x8615), - ASYNC_TEX_IMAGE_SGIX = ((int)0x835C), - UNSIGNED_INT_SAMPLER_2D_EXT = ((int)0x8DD2), - FOG_COORDINATE_ARRAY_TYPE_EXT = ((int)0x8454), - NEGATIVE_X_EXT = ((int)0x87D9), - PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT = ((int)0x8336), - MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX = ((int)0x8178), - MAX_ASYNC_READ_PIXELS_SGIX = ((int)0x8361), - STATIC_DRAW = ((int)0x88E4), - NORMAL_ARRAY_TYPE = ((int)0x807E), - LOCAL_CONSTANT_EXT = ((int)0x87C3), - STRICT_SCISSOR_HINT_PGI = ((int)0x1A218), - COMBINER1_NV = ((int)0x8551), - MAP2_VERTEX_ATTRIB11_4_NV = ((int)0x867B), - POST_COLOR_MATRIX_RED_SCALE_SGI = ((int)0x80B4), - SRGB = ((int)0x8C40), - LUMINANCE4_ALPHA4_EXT = ((int)0x8043), - GL_3D = ((int)0x0601), - PIXEL_MAP_G_TO_G = ((int)0x0C77), - COMBINER_MAPPING_NV = ((int)0x8543), - SCISSOR_BIT = ((int)0x00080000), - COMBINE_RGB = ((int)0x8571), - MATRIX28_ARB = ((int)0x88DC), - POINT_FADE_THRESHOLD_SIZE_SGIS = ((int)0x8128), - MAP1_VERTEX_ATTRIB1_4_NV = ((int)0x8661), - ONE_MINUS_DST_ALPHA = ((int)0x0305), - TEXTURE_COORD_ARRAY_EXT = ((int)0x8078), - OP_FLOOR_EXT = ((int)0x878F), - MAX_PROGRAM_ATTRIB_COMPONENTS_NV = ((int)0x8908), - PROXY_TEXTURE_2D_ARRAY_EXT = ((int)0x8C1B), - CURRENT_FOG_COORD = ((int)VERSION_1_4.CURRENT_FOG_COORDINATE), - SIGNED_LUMINANCE8_NV = ((int)0x8702), - DT_BIAS_NV = ((int)0x8717), - RGB10_EXT = ((int)0x8052), - ZERO = ((int)0), - SPOT_DIRECTION = ((int)0x1204), - SOURCE1_RGB_ARB = ((int)0x8581), - LOCAL_CONSTANT_DATATYPE_EXT = ((int)0x87ED), - OUTPUT_TEXTURE_COORD12_EXT = ((int)0x87A9), - TEXTURE_SHADER_NV = ((int)0x86DE), - VERTEX_ARRAY_STRIDE = ((int)0x807C), - DEPTH_COMPONENT32_ARB = ((int)0x81A7), - GREEN_MIN_CLAMP_INGR = ((int)0x8561), - MATRIX13_ARB = ((int)0x88CD), - OFFSET_TEXTURE_2D_SCALE_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_SCALE_NV), - DEPTH24_STENCIL8_EXT = ((int)0x88F0), - WEIGHT_ARRAY_BUFFER_BINDING_ARB = ((int)0x889E), - VERTEX_ATTRIB_ARRAY1_NV = ((int)0x8651), - TEXTURE_GREEN_TYPE_ARB = ((int)0x8C11), - RESAMPLE_ZERO_FILL_OML = ((int)0x8987), - LINE_RESET_TOKEN = ((int)0x0707), - MATRIX22_ARB = ((int)0x88D6), - TEXTURE_COORD_ARRAY_SIZE = ((int)0x8088), - TEXTURE_BINDING_RECTANGLE_ARB = ((int)0x84F6), - BLUE_BITS = ((int)0x0D54), - PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS = ((int)0x8355), - PARALLEL_ARRAYS_INTEL = ((int)0x83F4), - IMAGE_TRANSLATE_Y_HP = ((int)0x8158), - RED_SCALE = ((int)0x0D14), - UNPACK_ALIGNMENT = ((int)0x0CF5), - C3F_V3F = ((int)0x2A24), - FRONT_FACE = ((int)0x0B46), - DRAW_BUFFER7 = ((int)0x882C), - UNSIGNED_INT_SAMPLER_BUFFER_EXT = ((int)0x8DD8), - OUTPUT_TEXTURE_COORD25_EXT = ((int)0x87B6), - NORMAL_ARRAY_POINTER_EXT = ((int)0x808F), - AND_REVERSE = ((int)0x1502), - TEXTURE_BLUE_SIZE = ((int)0x805E), - DRAW_BUFFER7_ARB = ((int)0x882C), - OCCLUSION_TEST_RESULT_HP = ((int)0x8166), - OFFSET_PROJECTIVE_TEXTURE_2D_NV = ((int)0x8850), - SLUMINANCE8_ALPHA8_EXT = ((int)0x8C45), - SPRITE_MODE_SGIX = ((int)0x8149), - TEXTURE_LUMINANCE_SIZE_EXT = ((int)0x8060), - DOT_PRODUCT_TEXTURE_1D_NV = ((int)0x885C), - CONVOLUTION_HINT_SGIX = ((int)0x8316), - MAP1_VERTEX_3 = ((int)0x0D97), - DEPTH_PASS_INSTRUMENT_MAX_SGIX = ((int)0x8312), - EVAL_VERTEX_ATTRIB15_NV = ((int)0x86D5), - MAP1_VERTEX_4 = ((int)0x0D98), - INCR_WRAP_EXT = ((int)0x8507), - POST_COLOR_MATRIX_BLUE_SCALE = ((int)0x80B6), - OFFSET_HILO_TEXTURE_RECTANGLE_NV = ((int)0x8855), - LUMINANCE_ALPHA32UI_EXT = ((int)0x8D75), - MAX_CONVOLUTION_HEIGHT = ((int)0x801B), - FRAGMENT_LIGHT7_SGIX = ((int)0x8413), - RGBA12 = ((int)0x805A), - MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87C8), - MODELVIEW24_ARB = ((int)0x8738), - OP_MIN_EXT = ((int)0x878B), - INT_SAMPLER_2D_ARRAY_EXT = ((int)0x8DCF), - PIXEL_MAP_I_TO_I_SIZE = ((int)0x0CB0), - GL_4PASS_2_EXT = ((int)0x80A6), - MULTISAMPLE_EXT = ((int)0x809D), - TEXTURE_RED_SIZE_EXT = ((int)0x805C), - NEGATE_BIT_ATI = ((int)0x00000004), - SAMPLE_ALPHA_TO_ONE = ((int)0x809F), - EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB = ((int)0x889B), - VARIANT_VALUE_EXT = ((int)0x87E4), - TEXTURE_MULTI_BUFFER_HINT_SGIX = ((int)0x812E), - LO_SCALE_NV = ((int)0x870F), - PROJECTION = ((int)0x1701), - TEXTURE8_ARB = ((int)0x84C8), - FRONT = ((int)0x0404), - SAMPLE_ALPHA_TO_ONE_SGIS = ((int)0x809F), - LUMINANCE16F_ARB = ((int)0x881E), - DRAW_BUFFER12_ATI = ((int)0x8831), - OPERAND0_ALPHA_ARB = ((int)0x8598), - MAX_PROGRAM_RESULT_COMPONENTS_NV = ((int)0x8909), - SAMPLE_COVERAGE = ((int)0x80A0), - EYE_RADIAL_NV = ((int)0x855B), - FOG_COORD_SRC = ((int)VERSION_1_4.FOG_COORDINATE_SOURCE), - MAX_CLIPMAP_DEPTH_SGIX = ((int)0x8177), - COLOR_TABLE_RED_SIZE = ((int)0x80DA), - LUMINANCE8_EXT = ((int)0x8040), - DUAL_ALPHA4_SGIS = ((int)0x8110), - DRAW_BUFFER0 = ((int)0x8825), - RGB8UI_EXT = ((int)0x8D7D), - T2F_C3F_V3F = ((int)0x2A2A), - STRICT_LIGHTING_HINT_PGI = ((int)0x1A217), - PIXEL_SUBSAMPLE_4242_SGIX = ((int)0x85A4), - MAP1_TEXTURE_COORD_4 = ((int)0x0D96), - OUTPUT_FOG_EXT = ((int)0x87BD), - MAP2_VERTEX_ATTRIB1_4_NV = ((int)0x8671), - UNSIGNED_INT = ((int)0x1405), - INTERLEAVED_ATTRIBS_NV = ((int)0x8C8C), - VERTEX23_BIT_PGI = ((int)0x00000004), - OPERAND3_ALPHA_NV = ((int)0x859B), - IMAGE_SCALE_X_HP = ((int)0x8155), - RENDER = ((int)0x1C00), - RED_INTEGER_EXT = ((int)0x8D94), - SOURCE1_ALPHA_ARB = ((int)0x8589), - MAX_ARRAY_TEXTURE_LAYERS_EXT = ((int)0x88FF), - LUMINANCE_ALPHA_FLOAT16_ATI = ((int)0x881F), - POST_COLOR_MATRIX_GREEN_SCALE = ((int)0x80B5), - PACK_ALIGNMENT = ((int)0x0D05), - MAP2_VERTEX_ATTRIB12_4_NV = ((int)0x867C), - RENDERBUFFER_EXT = ((int)0x8D41), - PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI = ((int)0x87F8), - FRAMEBUFFER_ATTACHMENT_LAYERED_EXT = ((int)0x8DA7), - NORMAL_BIT_PGI = ((int)0x08000000), - MAX_PROGRAM_TEXEL_OFFSET_NV = ((int)0x8905), - FLOAT_MAT4_ARB = ((int)0x8B5C), - INDEX_LOGIC_OP = ((int)0x0BF1), - SCREEN_COORDINATES_REND = ((int)0x8490), - DEPTH_FUNC = ((int)0x0B74), - T2F_C4F_N3F_V3F = ((int)0x2A2C), - DRAW_BUFFER9_ATI = ((int)0x882E), - MAX_VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87C5), - TRANSFORM_FEEDBACK_ATTRIBS_NV = ((int)0x8C7E), - SOURCE2_ALPHA_EXT = ((int)0x858A), - SELECT = ((int)0x1C02), - MAX_VERTEX_HINT_PGI = ((int)0x1A22D), - DEPTH_COMPONENT24_ARB = ((int)0x81A6), - NORMAL_ARRAY_EXT = ((int)0x8075), - OPERAND2_RGB_ARB = ((int)0x8592), - MINMAX_SINK = ((int)0x8030), - TEXTURE_RED_SIZE = ((int)0x805C), - FRAMEBUFFER_UNSUPPORTED_EXT = ((int)0x8CDD), - CON_27_ATI = ((int)0x895C), - DRAW_BUFFER3_ARB = ((int)0x8828), - MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87CD), - INDEX_ARRAY_POINTER_EXT = ((int)0x8091), - DEPTH_BUFFER_FLOAT_MODE_NV = ((int)0x8DAF), - QUAD_INTENSITY8_SGIS = ((int)0x8123), - PROXY_TEXTURE_2D_EXT = ((int)0x8064), - NEGATIVE_ONE_EXT = ((int)0x87DF), - COLOR_TABLE_RED_SIZE_SGI = ((int)0x80DA), - POLYGON_OFFSET_EXT = ((int)0x8037), - DRAW_BUFFER6_ARB = ((int)0x882B), - COLOR_ATTACHMENT9_EXT = ((int)0x8CE9), - INTENSITY16UI_EXT = ((int)0x8D79), - POST_COLOR_MATRIX_BLUE_BIAS_SGI = ((int)0x80BA), - MAX_4D_TEXTURE_SIZE_SGIS = ((int)0x8138), - DIFFUSE = ((int)0x1201), - CND0_ATI = ((int)0x896B), - NAME_STACK_DEPTH = ((int)0x0D70), - TEXTURE_BUFFER_EXT = ((int)0x8C2A), - FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT = ((int)0x8CD2), - NUM_FRAGMENT_REGISTERS_ATI = ((int)0x896E), - PROGRAM_NATIVE_TEMPORARIES_ARB = ((int)0x88A6), - TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM = ((int)103084), - RGBA16UI_EXT = ((int)0x8D76), - GL_2PASS_0_EXT = ((int)0x80A2), - MATRIX26_ARB = ((int)0x88DA), - MULT = ((int)0x0103), - MAX_TRACK_MATRIX_STACK_DEPTH_NV = ((int)0x862E), - DEPTH_STENCIL_NV = ((int)0x84F9), - KEEP = ((int)0x1E00), - OUTPUT_TEXTURE_COORD9_EXT = ((int)0x87A6), - CURRENT_VERTEX_ATTRIB_ARB = ((int)0x8626), - POLYGON_STIPPLE = ((int)0x0B42), - ALPHA8I_EXT = ((int)0x8D90), - COLOR_ATTACHMENT12_EXT = ((int)0x8CEC), - TEXTURE_NORMAL_EXT = ((int)0x85AF), - CMYKA_EXT = ((int)0x800D), - CLAMP_TO_EDGE_SGIS = ((int)0x812F), - SPOT_CUTOFF = ((int)0x1206), - OUTPUT_TEXTURE_COORD2_EXT = ((int)0x879F), - IR_INSTRUMENT1_SGIX = ((int)0x817F), - COLOR_ARRAY_BUFFER_BINDING = ((int)0x8898), - DUAL_LUMINANCE_ALPHA8_SGIS = ((int)0x811D), - TEXTURE9_ARB = ((int)0x84C9), - MAX_GEOMETRY_OUTPUT_VERTICES_EXT = ((int)0x8DE0), - COMBINER_AB_OUTPUT_NV = ((int)0x854A), - FUNC_REVERSE_SUBTRACT_EXT = ((int)0x800B), - TEXTURE16 = ((int)0x84D0), - TEXTURE17 = ((int)0x84D1), - ADD_SIGNED_ARB = ((int)0x8574), - TEXTURE15 = ((int)0x84CF), - TEXTURE12 = ((int)0x84CC), - TEXTURE13 = ((int)0x84CD), - POST_COLOR_MATRIX_BLUE_SCALE_SGI = ((int)0x80B6), - TEXTURE11 = ((int)0x84CB), - YCRCB_422_SGIX = ((int)0x81BB), - MINMAX_EXT = ((int)0x802E), - NUM_INSTRUCTIONS_TOTAL_ATI = ((int)0x8972), - TEXTURE18 = ((int)0x84D2), - TEXTURE19 = ((int)0x84D3), - POLYGON = ((int)0x0009), - MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT = ((int)0x87CB), - OFFSET_TEXTURE_2D_NV = ((int)0x86E8), - TEXTURE_COMPARE_MODE = ((int)0x884C), - INDEX_MATERIAL_PARAMETER_EXT = ((int)0x81B9), - FOG_MODE = ((int)0x0B65), - SECONDARY_INTERPOLATOR_ATI = ((int)0x896D), - ALPHA_MAX_CLAMP_INGR = ((int)0x8567), - VERTEX_PROGRAM_TWO_SIDE_ARB = ((int)0x8643), - NORMAL_ARRAY_COUNT_EXT = ((int)0x8080), - RESTART_SUN = ((int)0x0001), - MODULATE = ((int)0x2100), - INT_VEC2_ARB = ((int)0x8B53), - FUNC_SUBTRACT_EXT = ((int)0x800A), - REG_1_ATI = ((int)0x8922), - DRAW_BUFFER4_ARB = ((int)0x8829), - MAX_VERTEX_STREAMS_ATI = ((int)0x876B), - DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV = ((int)0x885A), - SECONDARY_COLOR_ARRAY_STRIDE_EXT = ((int)0x845C), - TEXTURE_BINDING_1D_ARRAY_EXT = ((int)0x8C1C), - COLOR_ARRAY_LIST_IBM = ((int)103072), - VERTEX_SHADER_BINDING_EXT = ((int)0x8781), - COLOR_ATTACHMENT5_EXT = ((int)0x8CE5), - STENCIL_BACK_PASS_DEPTH_PASS_ATI = ((int)0x8803), - MODELVIEW29_ARB = ((int)0x873D), - PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX = ((int)0x8187), - COLOR_ATTACHMENT2_EXT = ((int)0x8CE2), - FLOAT_RGBA_MODE_NV = ((int)0x888E), - PROXY_COLOR_TABLE_SGI = ((int)0x80D3), - DEPTH_CLEAR_VALUE = ((int)0x0B73), - POLYGON_OFFSET_POINT = ((int)0x2A01), - OUTPUT_TEXTURE_COORD8_EXT = ((int)0x87A5), - UNPACK_RESAMPLE_OML = ((int)0x8985), - CURRENT_NORMAL = ((int)0x0B02), - STEREO = ((int)0x0C33), - DEFORMATIONS_MASK_SGIX = ((int)0x8196), - DUAL_LUMINANCE16_SGIS = ((int)0x8117), - TEXTURE_DT_SIZE_NV = ((int)0x871E), - STATIC_READ_ARB = ((int)0x88E5), - SAMPLER_1D_SHADOW_ARB = ((int)0x8B61), - PROGRAM_BINDING_ARB = ((int)0x8677), - SMOOTH = ((int)0x1D01), - INTERPOLATE = ((int)0x8575), - POST_CONVOLUTION_GREEN_BIAS_EXT = ((int)0x8021), - SHADER_TYPE = ((int)0x8B4F), - POLYGON_OFFSET_UNITS = ((int)0x2A00), - OUTPUT_TEXTURE_COORD26_EXT = ((int)0x87B7), - VERTEX_PROGRAM_TWO_SIDE_NV = ((int)0x8643), - READ_WRITE = ((int)0x88BA), - MIN_PROGRAM_TEXEL_OFFSET_NV = ((int)0x8904), - COPY_PIXEL_TOKEN = ((int)0x0706), - INVALID_OPERATION = ((int)0x0502), - DETAIL_TEXTURE_2D_BINDING_SGIS = ((int)0x8096), - HISTOGRAM_ALPHA_SIZE = ((int)0x802B), - MAX_CUBE_MAP_TEXTURE_SIZE = ((int)0x851C), - LUMINANCE6_ALPHA2_EXT = ((int)0x8044), - OPERAND2_ALPHA_ARB = ((int)0x859A), - TEXTURE_CUBE_MAP_POSITIVE_Z_EXT = ((int)0x8519), - PROGRAM_TEX_INSTRUCTIONS_ARB = ((int)0x8806), - PIXEL_TEX_GEN_MODE_SGIX = ((int)0x832B), - PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI = ((int)0x80D4), - UNSIGNED_INT_SAMPLER_1D_EXT = ((int)0x8DD1), - LUMINANCE_ALPHA16UI_EXT = ((int)0x8D7B), - CLIP_PLANE5 = ((int)0x3005), - CLIP_PLANE4 = ((int)0x3004), - OBJECT_ACTIVE_ATTRIBUTES_ARB = ((int)0x8B89), - CLIP_PLANE1 = ((int)0x3001), - TEXTURE_ENV_COLOR = ((int)0x2201), - CLIP_PLANE3 = ((int)0x3003), - CLIP_PLANE2 = ((int)0x3002), - INTENSITY16I_EXT = ((int)0x8D8B), - LINE_STIPPLE_REPEAT = ((int)0x0B26), - POST_CONVOLUTION_BLUE_SCALE = ((int)0x801E), - INVARIANT_DATATYPE_EXT = ((int)0x87EB), - STENCIL_REF = ((int)0x0B97), - PIXEL_MAP_I_TO_A_SIZE = ((int)0x0CB5), - TEXTURE24_ARB = ((int)0x84D8), - FASTEST = ((int)0x1101), - RGBA_INTEGER_EXT = ((int)0x8D99), - SUB_ATI = ((int)0x8965), - COMPRESSED_LUMINANCE_LATC1_EXT = ((int)0x8C70), - WRITE_ONLY = ((int)0x88B9), - MIRROR_CLAMP_ATI = ((int)0x8742), - MAP1_VERTEX_ATTRIB0_4_NV = ((int)0x8660), - TEXTURE_CONSTANT_DATA_SUNX = ((int)0x81D6), - DUAL_LUMINANCE8_SGIS = ((int)0x8115), - INDEX_WRITEMASK = ((int)0x0C21), - SAMPLE_ALPHA_TO_COVERAGE_ARB = ((int)0x809E), - ACTIVE_VARYINGS_NV = ((int)0x8C81), - POINT_SPRITE_NV = ((int)0x8861), - FUNC_ADD_EXT = ((int)0x8006), - PERSPECTIVE_CORRECTION_HINT = ((int)0x0C50), - ALPHA8 = ((int)0x803C), - RENDER_MODE = ((int)0x0C40), - OP_ROUND_EXT = ((int)0x8790), - VERTEX_ARRAY_COUNT_EXT = ((int)0x807D), - MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV = ((int)0x8868), - ADD = ((int)0x0104), - STENCIL_INDEX8_EXT = ((int)0x8D48), - MAX_TEXTURE_UNITS = ((int)0x84E2), - OFFSET_TEXTURE_BIAS_NV = ((int)0x86E3), - COLOR_ARRAY_STRIDE_EXT = ((int)0x8083), - POLYGON_SMOOTH_HINT = ((int)0x0C53), - PIXEL_TEX_GEN_Q_FLOOR_SGIX = ((int)0x8186), - DECAL = ((int)0x2101), - INDEX_ARRAY_LIST_IBM = ((int)103073), - TEXTURE_BINDING_CUBE_MAP = ((int)0x8514), - UNSIGNED_INT_8_8_8_8_REV_EXT = ((int)0x8367), - UNPACK_ROW_LENGTH = ((int)0x0CF2), - VERTEX_ATTRIB_ARRAY_INTEGER_NV = ((int)0x88FD), - MAP1_VERTEX_ATTRIB15_4_NV = ((int)0x866F), - ENABLE_BIT = ((int)0x00002000), - SOURCE0_ALPHA_ARB = ((int)0x8588), - INTERLACE_SGIX = ((int)0x8094), - FLOAT_MAT4 = ((int)0x8B5C), - FLOAT_32_UNSIGNED_INT_24_8_REV_NV = ((int)0x8DAD), - RGB8I_EXT = ((int)0x8D8F), - PN_TRIANGLES_NORMAL_MODE_ATI = ((int)0x87F3), - FOG_OFFSET_SGIX = ((int)0x8198), - CONSTANT_ATTENUATION = ((int)0x1207), - MAX_ELEMENTS_INDICES = ((int)0x80E9), - ALPHA_TEST = ((int)0x0BC0), - HISTOGRAM_GREEN_SIZE_EXT = ((int)0x8029), - PACK_SKIP_VOLUMES_SGIS = ((int)0x8130), - SWIZZLE_STRQ_DQ_ATI = ((int)0x897B), - MATRIX15_ARB = ((int)0x88CF), - ATTRIB_ARRAY_STRIDE_NV = ((int)0x8624), - FOG_SPECULAR_TEXTURE_WIN = ((int)0x80EC), - BLUE_INTEGER_EXT = ((int)0x8D96), - DRAW_BUFFER9_ARB = ((int)0x882E), - WIDE_LINE_HINT_PGI = ((int)0x1A222), - RED = ((int)0x1903), - DYNAMIC_ATI = ((int)0x8761), - VERTEX_WEIGHT_ARRAY_EXT = ((int)0x850C), - FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT = ((int)0x8CD1), - NORMAL_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F6), - BLEND_COLOR = ((int)0x8005), - EQUAL = ((int)0x0202), - MAX_TEXTURE_MAX_ANISOTROPY_EXT = ((int)0x84FF), - OUTPUT_TEXTURE_COORD7_EXT = ((int)0x87A4), - VERTEX_STREAM4_ATI = ((int)0x8770), - AUX3 = ((int)0x040C), - POST_COLOR_MATRIX_ALPHA_BIAS_SGI = ((int)0x80BB), - MAX_DRAW_BUFFERS = ((int)0x8824), - MAGNITUDE_SCALE_NV = ((int)0x8712), - READ_ONLY = ((int)0x88B8), - POINT_SIZE_MIN = ((int)0x8126), - FLOAT_VEC3 = ((int)0x8B51), - INT_VEC4_ARB = ((int)0x8B55), - DOUBLE = ((int)0x140A), - CURRENT_SECONDARY_COLOR = ((int)0x8459), - TEXTURE_2D_STACK_MESAX = ((int)0x875A), - MAP1_TEXTURE_COORD_2 = ((int)0x0D94), - MAP2_GRID_SEGMENTS = ((int)0x0DD3), - POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D2), - OFFSET_TEXTURE_RECTANGLE_NV = ((int)0x864C), - CURRENT_SECONDARY_COLOR_EXT = ((int)0x8459), - HISTOGRAM_FORMAT = ((int)0x8027), - BACK_LEFT = ((int)0x0402), - COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT = ((int)0x8C73), - OBJECT_LINK_STATUS_ARB = ((int)0x8B82), - VERTEX_ARRAY_RANGE_APPLE = ((int)0x851D), - TEXTURE_FILTER_CONTROL_EXT = ((int)0x8500), - BLEND_EQUATION_RGB_EXT = ((int)ARB_imaging.BLEND_EQUATION), - SECONDARY_COLOR_ARRAY_SIZE = ((int)0x845A), - VERTEX4_BIT_PGI = ((int)0x00000008), - TEXTURE_INDEX_SIZE_EXT = ((int)0x80ED), - MAP2_TEXTURE_COORD_3 = ((int)0x0DB5), - MODELVIEW0_MATRIX_EXT = ((int)All.MODELVIEW_MATRIX), - TEXTURE_DEPTH = ((int)0x8071), - POLYGON_OFFSET_BIAS_EXT = ((int)0x8039), - OFFSET_TEXTURE_SCALE_NV = ((int)0x86E2), - RENDERER = ((int)0x1F01), - RGBA_MODE = ((int)0x0C31), - VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87D2), - EXPAND_NORMAL_NV = ((int)0x8538), - MAX_ASYNC_TEX_IMAGE_SGIX = ((int)0x835F), - MODELVIEW1_MATRIX_EXT = ((int)0x8506), - UNPACK_RESAMPLE_SGIX = ((int)0x842D), - MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI = ((int)0x87F1), - RGBA_INTEGER_MODE_EXT = ((int)0x8D9E), - DUAL_ALPHA12_SGIS = ((int)0x8112), - FRAGMENT_LIGHT3_SGIX = ((int)0x840F), - DOT3_RGBA = ((int)0x86AF), - GL_4_BYTES = ((int)0x1409), - COMPRESSED_SLUMINANCE_ALPHA_EXT = ((int)0x8C4B), - POINT_SPRITE = ((int)0x8861), - FRONT_LEFT = ((int)0x0400), - MODELVIEW30_ARB = ((int)0x873E), - ALWAYS_SOFT_HINT_PGI = ((int)0x1A20D), - SOURCE2_RGB = ((int)0x8582), - SATURATE_BIT_ATI = ((int)0x00000040), - RESAMPLE_DECIMATE_OML = ((int)0x8989), - FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT = ((int)0x8CDB), - LINES = ((int)0x0001), - ONE = ((int)1), - ARRAY_OBJECT_OFFSET_ATI = ((int)0x8767), - MIN = ((int)0x8007), - CURRENT_VERTEX_ATTRIB = ((int)0x8626), - GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA3), - COLOR_ATTACHMENT8_EXT = ((int)0x8CE8), - PIXEL_MIN_FILTER_EXT = ((int)0x8332), - DOT3_RGB = ((int)0x86AE), - QUERY_RESULT_ARB = ((int)0x8866), - FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT = ((int)0x8CD6), - MAP1_VERTEX_ATTRIB5_4_NV = ((int)0x8665), - REG_26_ATI = ((int)0x893B), - PIXEL_PACK_BUFFER_ARB = ((int)0x88EB), - DOT_PRODUCT_TEXTURE_2D_NV = ((int)0x86EE), - DUAL_INTENSITY4_SGIS = ((int)0x8118), - COLOR_ARRAY_COUNT_EXT = ((int)0x8084), - SAMPLER_2D = ((int)0x8B5E), - DRAW_BUFFER15_ATI = ((int)0x8834), - DEPTH_COMPONENT32F_NV = ((int)0x8DAB), - TEXTURE_COORD_ARRAY_STRIDE = ((int)0x808A), - UNPACK_CLIENT_STORAGE_APPLE = ((int)0x85B2), - DOT3_RGB_ARB = ((int)0x86AE), - RGB_FLOAT16_ATI = ((int)0x881B), - TEXTURE_RECTANGLE_ARB = ((int)0x84F5), - CLAMP_FRAGMENT_COLOR_ARB = ((int)0x891B), - MAX_BINDABLE_UNIFORM_SIZE_EXT = ((int)0x8DED), - ALPHA32UI_EXT = ((int)0x8D72), - PIXEL_TRANSFORM_2D_EXT = ((int)0x8330), - VARIANT_ARRAY_STRIDE_EXT = ((int)0x87E6), - COMBINE_ALPHA_EXT = ((int)0x8572), - FRAMEBUFFER_SRGB_EXT = ((int)0x8DB9), - MAX_TRACK_MATRICES_NV = ((int)0x862F), - LINEAR_CLIPMAP_LINEAR_SGIX = ((int)0x8170), - BLUE = ((int)0x1905), - VERTEX_STREAM1_ATI = ((int)0x876D), - YCRCB_444_SGIX = ((int)0x81BC), - CMYK_EXT = ((int)0x800C), - TEXTURE_MATRIX = ((int)0x0BA8), DEPTH_COMPONENT32_SGIX = ((int)0x81A7), - TEXTURE_CUBE_MAP_ARB = ((int)0x8513), - ASYNC_HISTOGRAM_SGIX = ((int)0x832C), - MINMAX_SINK_EXT = ((int)0x8030), - MAX_FRAMEZOOM_FACTOR_SGIX = ((int)0x818D), - MINMAX = ((int)0x802E), - FOG_DENSITY = ((int)0x0B62), - INT = ((int)0x1404), - PIXEL_MAP_A_TO_A = ((int)0x0C79), - DEPTH_BITS = ((int)0x0D56), - TRANSFORM_FEEDBACK_BUFFER_BINDING_NV = ((int)0x8C8F), - MAP1_VERTEX_ATTRIB2_4_NV = ((int)0x8662), - DRAW_BUFFER9 = ((int)0x882E), - INTENSITY_FLOAT16_ATI = ((int)0x881D), - TRIANGLES_ADJACENCY_EXT = ((int)0x000C), - SHARED_TEXTURE_PALETTE_EXT = ((int)0x81FB), - TRANSPOSE_CURRENT_MATRIX_ARB = ((int)0x88B7), - VERTEX_STREAM0_ATI = ((int)0x876C), - IMAGE_SCALE_Y_HP = ((int)0x8156), - TEXTURE = ((int)0x1702), - HALF_BIT_ATI = ((int)0x00000008), - BUFFER_MAPPED_ARB = ((int)0x88BC), - FRAGMENT_SHADER_DERIVATIVE_HINT = ((int)0x8B8B), - AUX2 = ((int)0x040B), - TEXTURE29_ARB = ((int)0x84DD), - COLOR_ATTACHMENT15_EXT = ((int)0x8CEF), - DSDT_MAG_INTENSITY_NV = ((int)0x86DC), - PIXEL_MAP_I_TO_G = ((int)0x0C73), - SEPARABLE_2D_EXT = ((int)0x8012), - MATRIX8_ARB = ((int)0x88C8), - FRAMEBUFFER_COMPLETE_EXT = ((int)0x8CD5), - MAP2_INDEX = ((int)0x0DB1), - SUBPIXEL_BITS = ((int)0x0D50), - TEXTURE_STENCIL_SIZE_EXT = ((int)0x88F1), - LINE = ((int)0x1B01), - SECONDARY_COLOR_ARRAY_TYPE = ((int)0x845B), - VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB = ((int)0x886A), - DOT_PRODUCT_PASS_THROUGH_NV = ((int)0x885B), - INSTRUMENT_MEASUREMENTS_SGIX = ((int)0x8181), - OFFSET_TEXTURE_RECTANGLE_SCALE_NV = ((int)0x864D), - CURRENT_RASTER_COLOR = ((int)0x0B04), - MAP1_VERTEX_ATTRIB7_4_NV = ((int)0x8667), - MAP1_TEXTURE_COORD_3 = ((int)0x0D95), - MODELVIEW_STACK_DEPTH = ((int)0x0BA3), - SRC_COLOR = ((int)0x0300), - MAX_FOG_FUNC_POINTS_SGIS = ((int)0x812C), - POST_COLOR_MATRIX_GREEN_SCALE_SGI = ((int)0x80B5), - DUDV_ATI = ((int)0x8779), - R3_G3_B2 = ((int)0x2A10), - PN_TRIANGLES_POINT_MODE_LINEAR_ATI = ((int)0x87F5), - SCISSOR_TEST = ((int)0x0C11), - FOG_FUNC_POINTS_SGIS = ((int)0x812B), - MAP1_COLOR_4 = ((int)0x0D90), - PIXEL_MAP_S_TO_S = ((int)0x0C71), - CONSTANT_EXT = ((int)0x8576), - INTENSITY32UI_EXT = ((int)0x8D73), - TRANSPOSE_COLOR_MATRIX = ((int)0x84E6), - NORMAL_ARRAY_BUFFER_BINDING_ARB = ((int)0x8897), - FLOAT_VEC4_ARB = ((int)0x8B52), - CONSTANT_BORDER_HP = ((int)0x8151), - OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB = ((int)0x8B8A), - MAP2_TEXTURE_COORD_2 = ((int)0x0DB4), - SPRITE_AXIAL_SGIX = ((int)0x814C), - GL_4PASS_3_SGIS = ((int)0x80A7), - INDEX_TEST_REF_EXT = ((int)0x81B7), - PROGRAM_TEX_INDIRECTIONS_ARB = ((int)0x8807), - PIXEL_COUNT_AVAILABLE_NV = ((int)0x8867), - MULTISAMPLE_3DFX = ((int)0x86B2), - VERTEX_ATTRIB_ARRAY9_NV = ((int)0x8659), - TEXTURE_BORDER_COLOR = ((int)0x1004), - VERTEX_PROGRAM_POINT_SIZE_ARB = ((int)0x8642), - POINT_DISTANCE_ATTENUATION = ((int)0x8129), - SHADING_LANGUAGE_VERSION = ((int)0x8B8C), - TRIANGLES = ((int)0x0004), - TRANSFORM_FEEDBACK_BUFFER_START_NV = ((int)0x8C84), - TEXTURE7 = ((int)0x84C7), - LUMINANCE_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE_ICC_SGIX), - POST_CONVOLUTION_RED_BIAS_EXT = ((int)0x8020), - INDEX_SHIFT = ((int)0x0D12), - MAX_MAP_TESSELLATION_NV = ((int)0x86D6), - INDEX_ARRAY = ((int)0x8077), - NO_ERROR = ((int)0), - OP_MUL_EXT = ((int)0x8786), - FEEDBACK_BUFFER_POINTER = ((int)0x0DF0), - MODELVIEW_MATRIX = ((int)0x0BA6), - DOT_PRODUCT_TEXTURE_RECTANGLE_NV = ((int)0x864E), - FORCE_BLUE_TO_ONE_NV = ((int)0x8860), - MAX_VERTEX_UNIFORM_COMPONENTS_ARB = ((int)0x8B4A), - STACK_OVERFLOW = ((int)0x0503), - RENDERBUFFER_INTERNAL_FORMAT_EXT = ((int)0x8D44), - MAX_TEXTURE_LOD_BIAS_EXT = ((int)0x84FD), - VERTEX_ATTRIB_ARRAY_STRIDE = ((int)0x8624), - LINE_LOOP = ((int)0x0002), - GL_422_REV_EXT = ((int)0x80CD), - ACTIVE_VARYING_MAX_LENGTH_NV = ((int)0x8C82), - DETAIL_TEXTURE_LEVEL_SGIS = ((int)0x809A), - ATTACHED_SHADERS = ((int)0x8B85), - MODELVIEW19_ARB = ((int)0x8733), - TEXTURE_COMPARE_FAIL_VALUE_ARB = ((int)0x80BF), - ALIASED_LINE_WIDTH_RANGE = ((int)0x846E), - ALPHA16_EXT = ((int)0x803E), - QUAD_LUMINANCE4_SGIS = ((int)0x8120), - OUTPUT_TEXTURE_COORD29_EXT = ((int)0x87BA), - GENERATE_MIPMAP_HINT = ((int)0x8192), - SAMPLER_2D_ARRAY_SHADOW_EXT = ((int)0x8DC4), - SLUMINANCE8 = ((int)0x8C47), - INTENSITY_FLOAT32_ATI = ((int)0x8817), - TEXTURE_ALPHA_SIZE_EXT = ((int)0x805F), - VERTEX_SHADER_ARB = ((int)0x8B31), - PREVIOUS_ARB = ((int)0x8578), - PRIMARY_COLOR_ARB = ((int)0x8577), - ARRAY_BUFFER = ((int)0x8892), - SEPARABLE_2D = ((int)0x8012), - MAX_VERTEX_BINDABLE_UNIFORMS_EXT = ((int)0x8DE2), - CLIENT_VERTEX_ARRAY_BIT = ((int)0x00000002), - DEPTH_RANGE = ((int)0x0B70), - VERTEX_STREAM5_ATI = ((int)0x8771), - OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV = ((int)0x8851), - ALPHA12_EXT = ((int)0x803D), - MAX_ASYNC_DRAW_PIXELS_SGIX = ((int)0x8360), - POST_COLOR_MATRIX_ALPHA_SCALE = ((int)0x80B7), - ELEMENT_ARRAY_POINTER_ATI = ((int)0x876A), - INDEX_MATERIAL_FACE_EXT = ((int)0x81BA), - MATRIX_INDEX_ARRAY_ARB = ((int)0x8844), - SIGNED_ALPHA8_NV = ((int)0x8706), - PIXEL_SUBSAMPLE_4444_SGIX = ((int)0x85A2), - LIST_INDEX = ((int)0x0B33), - FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT = ((int)0x8CD4), - INVALID_ENUM = ((int)0x0500), - COLOR4_BIT_PGI = ((int)0x00020000), - CON_5_ATI = ((int)0x8946), - TEXTURE_MAG_SIZE_NV = ((int)0x871F), - QUAD_LUMINANCE8_SGIS = ((int)0x8121), - DRAW_PIXEL_TOKEN = ((int)0x0705), - INTENSITY12 = ((int)0x804C), - COEFF = ((int)0x0A00), - EVAL_VERTEX_ATTRIB13_NV = ((int)0x86D3), - INTENSITY16 = ((int)0x804D), - OUTPUT_TEXTURE_COORD20_EXT = ((int)0x87B1), - LIGHT5 = ((int)0x4005), - LUMINANCE12_EXT = ((int)0x8041), - BLUE_SCALE = ((int)0x0D1A), - RENDERBUFFER_BLUE_SIZE_EXT = ((int)0x8D52), - UNSIGNED_BYTE_3_3_2 = ((int)0x8032), - VARIANT_DATATYPE_EXT = ((int)0x87E5), - COLOR_ATTACHMENT4_EXT = ((int)0x8CE4), - WRITE_PIXEL_DATA_RANGE_NV = ((int)0x8878), - BOOL_VEC4 = ((int)0x8B59), - TEXTURE_2D_ARRAY_EXT = ((int)0x8C1A), - BOOL_VEC3 = ((int)0x8B58), - BOOL_VEC2 = ((int)0x8B57), - OUTPUT_TEXTURE_COORD13_EXT = ((int)0x87AA), - MAX_PROGRAM_LOOP_COUNT_NV = ((int)0x88F8), - TEXTURE_LIGHTING_MODE_HP = ((int)0x8167), + RGBA32I_EXT = ((int)0x8D82), + CULL_VERTEX_EYE_POSITION_EXT = ((int)0x81AB), + FLOAT_VEC2_ARB = ((int)0x8B50), + RGB_FLOAT16_ATI = ((int)0x881B), + V3F = ((int)0x2A21), + FOG_COORDINATE_ARRAY_TYPE = ((int)0x8454), + RED_BITS = ((int)0x0D52), + POINT_SPRITE_R_MODE_NV = ((int)0x8863), + NORMALIZED_RANGE_EXT = ((int)0x87E0), + READ_WRITE_ARB = ((int)0x88BA), + REGISTER_COMBINERS_NV = ((int)0x8522), + RESTART_SUN = ((int)0x0001), + COLOR_ATTACHMENT2_EXT = ((int)0x8CE2), STENCIL_INDEX16_EXT = ((int)0x8D49), - CURRENT_PROGRAM = ((int)0x8B8D), - MODELVIEW13_ARB = ((int)0x872D), - MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB = ((int)0x8810), - PIXEL_TEX_GEN_Q_CEILING_SGIX = ((int)0x8184), - FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT = ((int)0x8CD3), - BUFFER_SIZE = ((int)0x8764), - PIXEL_MAP_I_TO_R = ((int)0x0C72), - POINT_DISTANCE_ATTENUATION_ARB = ((int)0x8129), - RGBA_FLOAT32_ATI = ((int)0x8814), - SOURCE2_ALPHA_ARB = ((int)0x858A), - RENDERBUFFER_HEIGHT_EXT = ((int)0x8D43), - VERTEX_ARRAY_RANGE_POINTER_APPLE = ((int)0x8521), - FLOAT_RG16_NV = ((int)0x8886), - INTENSITY8 = ((int)0x804B), - PIXEL_COUNT_NV = ((int)0x8866), - MODELVIEW0_EXT = ((int)All.MODELVIEW), - MAX_ELEMENTS_VERTICES = ((int)0x80E8), - VERTEX_ARRAY_SIZE = ((int)0x807A), - BGRA_EXT = ((int)0x80E1), - TRANSFORM_FEEDBACK_RECORD_NV = ((int)0x8C86), - LINEAR_SHARPEN_COLOR_SGIS = ((int)0x80AF), - QUERY_RESULT_AVAILABLE_ARB = ((int)0x8867), - CURRENT_FOG_COORDINATE = ((int)0x8453), - MAX_TEXTURE_STACK_DEPTH = ((int)0x0D39), - COLOR_ATTACHMENT1_EXT = ((int)0x8CE1), - DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX = ((int)0x8311), - COLOR_INDEX2_EXT = ((int)0x80E3), - ARRAY_ELEMENT_LOCK_FIRST_EXT = ((int)0x81A8), - BINORMAL_ARRAY_STRIDE_EXT = ((int)0x8441), - AND = ((int)0x1501), - REG_29_ATI = ((int)0x893E), - OP_MOV_EXT = ((int)0x8799), - WRITE_PIXEL_DATA_RANGE_POINTER_NV = ((int)0x887C), - FRAMEBUFFER_EXT = ((int)0x8D40), - DRAW_BUFFER14_ARB = ((int)0x8833), - VERTEX_WEIGHT_ARRAY_POINTER_EXT = ((int)0x8510), - INDEX_TEST_EXT = ((int)0x81B5), - MODULATE_SIGNED_ADD_ATI = ((int)0x8745), - COMBINER_MUX_SUM_NV = ((int)0x8547), - DSDT_MAG_VIB_NV = ((int)0x86F7), - DRAW_BUFFER4_ATI = ((int)0x8829), - POST_COLOR_MATRIX_GREEN_BIAS_SGI = ((int)0x80B9), - MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB = ((int)0x8B49), - DOT2_ADD_ATI = ((int)0x896C), - PRIMITIVE_RESTART_INDEX_NV = ((int)0x8559), - RGBA4_S3TC = ((int)0x83A3), - COMPRESSED_TEXTURE_FORMATS_ARB = ((int)0x86A3), - PROGRAM_STRING_NV = ((int)0x8628), - HISTOGRAM_SINK = ((int)0x802D), - N3F_V3F = ((int)0x2A25), - RGBA4_EXT = ((int)0x8056), - RGBA32UI_EXT = ((int)0x8D70), - MATRIX20_ARB = ((int)0x88D4), - PN_TRIANGLES_ATI = ((int)0x87F0), - TEXTURE_COMPARE_OPERATOR_SGIX = ((int)0x819B), - LINE_BIT = ((int)0x00000004), - PROGRAM_ALU_INSTRUCTIONS_ARB = ((int)0x8805), - XOR = ((int)0x1506), - SLUMINANCE_ALPHA_EXT = ((int)0x8C44), - SAMPLE_ALPHA_TO_MASK_SGIS = ((int)0x809E), - MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB = ((int)0x880F), - ELEMENT_ARRAY_TYPE_APPLE = ((int)0x8769), - RGB32F_ARB = ((int)0x8815), - ELEMENT_ARRAY_ATI = ((int)0x8768), - FORMAT_SUBSAMPLE_244_244_OML = ((int)0x8983), - GEOMETRY_SHADER_EXT = ((int)0x8DD9), - HALF_BIAS_NORMAL_NV = ((int)0x853A), - VERTEX_ARRAY_STRIDE_EXT = ((int)0x807C), - RGB32UI_EXT = ((int)0x8D71), - TEXTURE_GREEN_SIZE = ((int)0x805D), - FOG_COORDINATE_ARRAY_STRIDE_EXT = ((int)0x8455), - OUTPUT_TEXTURE_COORD18_EXT = ((int)0x87AF), - TEXTURE_4D_BINDING_SGIS = ((int)0x814F), - CURRENT_COLOR = ((int)0x0B00), - VERTEX_PROGRAM_NV = ((int)0x8620), - GREEN_BITS = ((int)0x0D53), - MAX_GEOMETRY_VARYING_COMPONENTS_EXT = ((int)0x8DDD), - MIRROR_CLAMP_TO_EDGE_ATI = ((int)0x8743), - TEXTURE_INTENSITY_SIZE_EXT = ((int)0x8061), - TEXTURE_BINDING_1D = ((int)0x8068), - TEXTURE_BINDING_2D = ((int)0x8069), - TEXTURE_BINDING_3D = ((int)0x806A), - INTENSITY8_EXT = ((int)0x804B), - MAP2_TEXTURE_COORD_4 = ((int)0x0DB6), - SAMPLE_COVERAGE_INVERT = ((int)0x80AB), - TEXTURE_RESIDENT = ((int)0x8067), - DOT3_RGB_EXT = ((int)0x8740), - SAMPLER_2D_ARB = ((int)0x8B5E), - DRAW_BUFFER1_ATI = ((int)0x8826), - SCALAR_EXT = ((int)0x87BE), - COLOR_INDEX8_EXT = ((int)0x80E5), - PROXY_TEXTURE_4D_SGIS = ((int)0x8135), - POST_TEXTURE_FILTER_SCALE_RANGE_SGIX = ((int)0x817C), - GEOMETRY_PROGRAM_NV = ((int)0x8C26), - PACK_SKIP_IMAGES_EXT = ((int)0x806B), - BLEND_EQUATION = ((int)0x8009), - COLOR_ALPHA_PAIRING_ATI = ((int)0x8975), - UNPACK_SKIP_IMAGES = ((int)0x806D), - MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT = ((int)0x8C29), - MAD_ATI = ((int)0x8968), - MAX_TEXTURE_BUFFER_SIZE_EXT = ((int)0x8C2B), - VERTEX_ATTRIB_ARRAY6_NV = ((int)0x8656), - BITMAP = ((int)0x1A00), - OUTPUT_TEXTURE_COORD6_EXT = ((int)0x87A3), - PROJECTION_STACK_DEPTH = ((int)0x0BA4), - VIBRANCE_SCALE_NV = ((int)0x8713), - MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT = ((int)0x8DE1), - UNSIGNED_INT_8_8_8_8_EXT = ((int)0x8035), - SCISSOR_BOX = ((int)0x0C10), - MATRIX17_ARB = ((int)0x88D1), - TEXTURE_ALPHA_SIZE = ((int)0x805F), - MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT = ((int)0x87CE), - LUMINANCE16_ALPHA8_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ALPHA8_ICC_SGIX), - TEXTURE_APPLICATION_MODE_EXT = ((int)0x834F), - NONE = ((int)0), - INDEX_MODE = ((int)0x0C30), - CURRENT_RASTER_SECONDARY_COLOR = ((int)0x845F), - RESAMPLE_REPLICATE_OML = ((int)0x8986), - SAMPLE_ALPHA_TO_MASK_EXT = ((int)0x809E), - MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV = ((int)0x8C28), - PIXEL_TILE_CACHE_INCREMENT_SGIX = ((int)0x813F), + R = ((int)0x2002), + REG_15_ATI = ((int)0x8930), + OUTPUT_TEXTURE_COORD14_EXT = ((int)0x87AB), + PROGRAM_RESULT_COMPONENTS_NV = ((int)0x8907), + TEXTURE_2D_STACK_BINDING_MESAX = ((int)0x875E), + PROXY_TEXTURE_1D_ARRAY_EXT = ((int)0x8C19), + VERTEX_BLEND_ARB = ((int)0x86A7), + OUTPUT_TEXTURE_COORD29_EXT = ((int)0x87BA), + LIST_BIT = ((int)0x00020000), + VERTEX_ARRAY_LIST_STRIDE_IBM = ((int)103080), + BLEND_DST_ALPHA = ((int)0x80CA), + TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB = ((int)0x889A), + CON_28_ATI = ((int)0x895D), + VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB = ((int)0x886A), + COMBINE_ARB = ((int)0x8570), + FRONT_FACE = ((int)0x0B46), + TEXTURE_COMPRESSION_HINT = ((int)0x84EF), + INDEX_OFFSET = ((int)0x0D13), + CON_17_ATI = ((int)0x8952), + MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT = ((int)0x87CB), + DRAW_BUFFER7_ATI = ((int)0x882C), + BGRA = ((int)0x80E1), + TEXTURE_ALPHA_TYPE_ARB = ((int)0x8C13), + INDEX_CLEAR_VALUE = ((int)0x0C20), + TEXTURE_FILTER_CONTROL = ((int)0x8500), + VERTEX_PROGRAM_POINT_SIZE = ((int)0x8642), + VERTEX_SHADER_VARIANTS_EXT = ((int)0x87D0), + LINEAR_DETAIL_ALPHA_SGIS = ((int)0x8098), + FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT = ((int)0x8CD6), + OUTPUT_TEXTURE_COORD19_EXT = ((int)0x87B0), + RENDER_MODE = ((int)0x0C40), FEEDBACK = ((int)0x1C01), + OPERAND0_ALPHA_ARB = ((int)0x8598), + HISTOGRAM_GREEN_SIZE = ((int)0x8029), + PACK_SUBSAMPLE_RATE_SGIX = ((int)0x85A0), + PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI = ((int)0x87F8), + PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX = ((int)0x8188), + SRC1_RGB = ((int)VERSION_1_3.SOURCE1_RGB), + SCALEBIAS_HINT_SGIX = ((int)0x8322), + QUAD_TEXTURE_SELECT_SGIS = ((int)0x8125), + MAX_TEXTURE_COORDS_NV = ((int)0x8871), + TEXTURE_COORD_ARRAY_TYPE = ((int)0x8089), + VERTEX_STREAM7_ATI = ((int)0x8773), + PIXEL_MAP_I_TO_R_SIZE = ((int)0x0CB2), + QUAD_STRIP = ((int)0x0008), + NORMAL_ARRAY_POINTER = ((int)0x808F), + MAX_COLOR_MATRIX_STACK_DEPTH = ((int)0x80B3), + HISTOGRAM_SINK_EXT = ((int)0x802D), + SHORT = ((int)0x1402), + ATTENUATION_EXT = ((int)0x834D), + TEXTURE_BUFFER_FORMAT_EXT = ((int)0x8C2E), + SEPARABLE_2D_EXT = ((int)0x8012), + SECONDARY_COLOR_ARRAY = ((int)0x845E), + DISCARD_ATI = ((int)0x8763), + GEOMETRY_OUTPUT_TYPE_EXT = ((int)0x8DDC), + VERTEX_STREAM3_ATI = ((int)0x876F), + COLOR_ATTACHMENT8_EXT = ((int)0x8CE8), + FLOAT_VEC2 = ((int)0x8B50), + MAP2_GRID_SEGMENTS = ((int)0x0DD3), + CALLIGRAPHIC_FRAGMENT_SGIX = ((int)0x8183), + TEXTURE_MAX_CLAMP_T_SGIX = ((int)0x836A), + MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV = ((int)0x8868), + FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX = ((int)0x840A), + MAT_AMBIENT_BIT_PGI = ((int)0x00100000), + FLOAT_RGBA32_NV = ((int)0x888B), + IMAGE_ROTATE_ANGLE_HP = ((int)0x8159), + MULTISAMPLE_COVERAGE_MODES_NV = ((int)0x8E12), + CURRENT_TEXTURE_COORDS = ((int)0x0B03), + MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB = ((int)0x862E), + DISTANCE_ATTENUATION_SGIS = ((int)0x8129), + MULTISAMPLE_BIT_3DFX = ((int)0x20000000), + GL_3D = ((int)0x0601), + COMBINER_SCALE_NV = ((int)0x8548), + SAMPLER_BUFFER_EXT = ((int)0x8DC2), + AND_REVERSE = ((int)0x1502), + ACTIVE_VARYINGS_NV = ((int)0x8C81), + UNSIGNED_SHORT_8_8_REV_APPLE = ((int)0x85BB), + TRIANGLES_ADJACENCY_EXT = ((int)0x000C), + COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT = ((int)0x8C72), + DOT_PRODUCT_TEXTURE_CUBE_MAP_NV = ((int)0x86F0), + PIXEL_TRANSFORM_2D_MATRIX_EXT = ((int)0x8338), + SAMPLE_ALPHA_TO_COVERAGE = ((int)0x809E), + VERTEX_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA2), + LIGHTING = ((int)0x0B50), + RGB_INTEGER_EXT = ((int)0x8D98), + VERTEX_ATTRIB_ARRAY1_NV = ((int)0x8651), + FENCE_APPLE = ((int)0x8A0B), + LUMINANCE32I_EXT = ((int)0x8D86), + REG_0_ATI = ((int)0x8921), + COMPRESSED_INTENSITY_ARB = ((int)0x84EC), + ONE_MINUS_CONSTANT_ALPHA = ((int)0x8004), + SAMPLE_MASK_INVERT_SGIS = ((int)0x80AB), + TEXTURE_COORD_ARRAY_LIST_IBM = ((int)103074), + VERTEX_DATA_HINT_PGI = ((int)0x1A22A), + GEOMETRY_PROGRAM_NV = ((int)0x8C26), + RGB4_S3TC = ((int)0x83A1), + REG_25_ATI = ((int)0x893A), + TEXTURE_TOO_LARGE_EXT = ((int)0x8065), + QUERY_COUNTER_BITS = ((int)0x8864), + COLOR_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F7), + INVALID_OPERATION = ((int)0x0502), + MAX_COLOR_MATRIX_STACK_DEPTH_SGI = ((int)0x80B3), + TEXTURE27_ARB = ((int)0x84DB), + UNSIGNED_INT_VEC4_EXT = ((int)0x8DC8), + PROGRAM_ATTRIBS_ARB = ((int)0x88AC), + STREAM_COPY = ((int)0x88E2), + RGB = ((int)0x1907), + INTENSITY16UI_EXT = ((int)0x8D79), + GL_1PASS_SGIS = ((int)0x80A1), + RENDER = ((int)0x1C00), + MAP1_VERTEX_ATTRIB10_4_NV = ((int)0x866A), + CLIENT_ACTIVE_TEXTURE = ((int)0x84E1), + MAP_STENCIL = ((int)0x0D11), + TEXTURE_CLIPMAP_DEPTH_SGIX = ((int)0x8176), + SOURCE0_ALPHA_EXT = ((int)0x8588), + RGBA_FLOAT16_ATI = ((int)0x881A), + POST_COLOR_MATRIX_GREEN_BIAS = ((int)0x80B9), + DEPTH_COMPONENT32_ARB = ((int)0x81A7), + CULL_FRAGMENT_NV = ((int)0x86E7), + NORMAL_MAP_EXT = ((int)0x8511), + MAP1_INDEX = ((int)0x0D91), + DUAL_INTENSITY16_SGIS = ((int)0x811B), + TEXTURE_CUBE_MAP_POSITIVE_X_EXT = ((int)0x8515), + R1UI_C3F_V3F_SUN = ((int)0x85C6), + TEXTURE_4DSIZE_SGIS = ((int)0x8136), + UNSIGNED_BYTE_2_3_3_REV_EXT = ((int)0x8362), + TEXTURE26_ARB = ((int)0x84DA), + MODELVIEW1_ARB = ((int)0x850A), + EDGE_FLAG_ARRAY_STRIDE = ((int)0x808C), + Q = ((int)0x2003), + LUMINANCE16_ICC_SGIX = ((int)SGIX_icc_texture.LUMINANCE16_ICC_SGIX), + S = ((int)0x2000), + T = ((int)0x2001), + MAX_VARYING_FLOATS = ((int)0x8B4B), + COLOR_TABLE_ALPHA_SIZE_SGI = ((int)0x80DD), + BLEND_SRC_ALPHA_EXT = ((int)0x80CB), + CURRENT_MATRIX_STACK_DEPTH_ARB = ((int)0x8640), + NEAREST_CLIPMAP_LINEAR_SGIX = ((int)0x844E), + DUAL_ALPHA16_SGIS = ((int)0x8113), + SHADOW_AMBIENT_SGIX = ((int)0x80BF), + FLOAT_RGBA16_NV = ((int)0x888A), + POST_COLOR_MATRIX_GREEN_BIAS_SGI = ((int)0x80B9), + UNSIGNED_SHORT_5_5_5_1_EXT = ((int)0x8034), + TRANSPOSE_MODELVIEW_MATRIX_ARB = ((int)0x84E3), + TEXTURE_COORD_ARRAY_BUFFER_BINDING = ((int)0x889A), + POLYGON_SMOOTH_HINT = ((int)0x0C53), + TEXTURE25_ARB = ((int)0x84D9), + MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB = ((int)0x880F), + SLUMINANCE8 = ((int)0x8C47), + MODELVIEW29_ARB = ((int)0x873D), + ZERO = ((int)0), + REG_7_ATI = ((int)0x8928), + COMP_BIT_ATI = ((int)0x00000002), + PIXEL_UNPACK_BUFFER_BINDING_EXT = ((int)0x88EF), + SAMPLER_1D_SHADOW_ARB = ((int)0x8B61), + COLOR_ATTACHMENT9_EXT = ((int)0x8CE9), + MAP2_TANGENT_EXT = ((int)0x8445), + NONE = ((int)0), + UNPACK_LSB_FIRST = ((int)0x0CF1), + COMPRESSED_SRGB_ALPHA = ((int)0x8C49), + SAMPLER_3D_ARB = ((int)0x8B5F), + MATRIX_EXT = ((int)0x87C0), + DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV = ((int)0x86F1), + PROGRAM_FORMAT_ASCII_ARB = ((int)0x8875), + UNSIGNED_SHORT = ((int)0x1403), + COLOR_MATRIX_STACK_DEPTH_SGI = ((int)0x80B2), + TEXTURE24_ARB = ((int)0x84D8), + CON_3_ATI = ((int)0x8944), + FUNC_ADD = ((int)0x8006), + POLYGON_OFFSET_UNITS = ((int)0x2A00), + MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87CC), + GL_2_BYTES = ((int)0x1407), + MINMAX_SINK = ((int)0x8030), + NORMAL_ARRAY_BUFFER_BINDING_ARB = ((int)0x8897), + WIDE_LINE_HINT_PGI = ((int)0x1A222), + ELEMENT_ARRAY_APPLE = ((int)0x8768), + REG_10_ATI = ((int)0x892B), + TEXTURE_DEPTH_SIZE = ((int)0x884A), + DRAW_BUFFER4_ATI = ((int)0x8829), + BIAS_BIT_ATI = ((int)0x00000008), + VERTEX_PROGRAM_BINDING_NV = ((int)0x864A), + MODELVIEW8_ARB = ((int)0x8728), + CON_31_ATI = ((int)0x8960), + SAMPLER_2D_ARB = ((int)0x8B5E), + STENCIL_BACK_REF = ((int)0x8CA3), + MINMAX_FORMAT_EXT = ((int)0x802F), + DEPTH_COMPONENT24 = ((int)0x81A6), + COLOR_TABLE_SCALE_SGI = ((int)0x80D6), + POST_CONVOLUTION_RED_SCALE_EXT = ((int)0x801C), + MAP1_VERTEX_ATTRIB12_4_NV = ((int)0x866C), + DUAL_LUMINANCE_ALPHA8_SGIS = ((int)0x811D), + MAX_CLIP_PLANES = ((int)0x0D32), + TEXTURE23_ARB = ((int)0x84D7), + RESAMPLE_AVERAGE_OML = ((int)0x8988), + INTENSITY_ICC_SGIX = ((int)SGIX_icc_texture.INTENSITY_ICC_SGIX), + VENDOR = ((int)0x1F00), + TIME_ELAPSED_EXT = ((int)0x88BF), + NAND = ((int)0x150E), + UNSIGNED_IDENTITY_NV = ((int)0x8536), + ACCUM = ((int)0x0100), + MAX_3D_TEXTURE_SIZE_EXT = ((int)0x8073), + DEPTH_COMPONENT32 = ((int)0x81A7), + DOT_PRODUCT_REFLECT_CUBE_MAP_NV = ((int)0x86F2), + ALWAYS_FAST_HINT_PGI = ((int)0x1A20C), + GEOMETRY_DEFORMATION_SGIX = ((int)0x8194), + OP_MULTIPLY_MATRIX_EXT = ((int)0x8798), + TEXTURE8 = ((int)0x84C8), + UNSIGNED_INT_VEC3_EXT = ((int)0x8DC7), + STORAGE_SHARED_APPLE = ((int)0x85BF), + SLUMINANCE_ALPHA = ((int)0x8C44), + CON_11_ATI = ((int)0x894C), + PHONG_WIN = ((int)0x80EA), + UNSIGNED_INVERT_NV = ((int)0x8537), + COLOR_TABLE_SCALE = ((int)0x80D6), + KEEP = ((int)0x1E00), + ADD_SIGNED = ((int)0x8574), + MULTISAMPLE_ARB = ((int)0x809D), + COMBINER_AB_OUTPUT_NV = ((int)0x854A), + REG_3_ATI = ((int)0x8924), + WEIGHT_ARRAY_BUFFER_BINDING_ARB = ((int)0x889E), + FOG_FACTOR_TO_ALPHA_SGIX = ((int)0x836F), + INVALID_ENUM = ((int)0x0500), + IMAGE_MIN_FILTER_HP = ((int)0x815D), + INTERLEAVED_ATTRIBS_NV = ((int)0x8C8C), + TEXTURE21_ARB = ((int)0x84D5), + STATIC_COPY_ARB = ((int)0x88E6), + SMOOTH_LINE_WIDTH_RANGE = ((int)0x0B22), + TEXTURE9 = ((int)0x84C9), + FENCE_STATUS_NV = ((int)0x84F3), + RENDERBUFFER_STENCIL_SIZE_EXT = ((int)0x8D55), + OBJECT_DISTANCE_TO_LINE_SGIS = ((int)0x81F3), + COMBINER_COMPONENT_USAGE_NV = ((int)0x8544), + FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT = ((int)0x8CD4), + VERTEX_ARRAY_STORAGE_HINT_APPLE = ((int)0x851F), + CULL_VERTEX_OBJECT_POSITION_EXT = ((int)0x81AC), + MAX_PROGRAM_ADDRESS_REGISTERS_ARB = ((int)0x88B1), + MAP2_TEXTURE_COORD_4 = ((int)0x0DB6), + DRAW_BUFFER1_ARB = ((int)0x8826), + FEEDBACK_BUFFER_TYPE = ((int)0x0DF2), + INDEX_MATERIAL_FACE_EXT = ((int)0x81BA), + COMBINE = ((int)0x8570), + READ_WRITE = ((int)0x88BA), + DEPTH_COMPONENT16 = ((int)0x81A5), + TEXTURE20_ARB = ((int)0x84D4), + COLOR_ATTACHMENT14_EXT = ((int)0x8CEE), + FOG_FUNC_SGIS = ((int)0x812A), + MAP1_TEXTURE_COORD_4 = ((int)0x0D96), + UNSIGNED_INT_5_9_9_9_REV_EXT = ((int)0x8C3E), + LUMINANCE12_ALPHA4_EXT = ((int)0x8046), + GL_4PASS_1_SGIS = ((int)0x80A5), + PACK_ALIGNMENT = ((int)0x0D05), + MODELVIEW21_ARB = ((int)0x8735), + LEFT = ((int)0x0406), + SOURCE2_ALPHA_ARB = ((int)0x858A), + MAP2_VERTEX_ATTRIB10_4_NV = ((int)0x867A), + PROXY_TEXTURE_RECTANGLE_NV = ((int)0x84F7), + TEXTURE_MAX_LOD_SGIS = ((int)0x813B), + PROJECTION_STACK_DEPTH = ((int)0x0BA4), + RENDERBUFFER_HEIGHT_EXT = ((int)0x8D43), + RENDERBUFFER_GREEN_SIZE_EXT = ((int)0x8D51), + MAX_TEXTURE_IMAGE_UNITS = ((int)0x8872), + MATRIX24_ARB = ((int)0x88D8), + CONVOLUTION_BORDER_COLOR = ((int)0x8154), + TEXTURE_BINDING_2D_ARRAY_EXT = ((int)0x8C1D), + RENDERBUFFER_SAMPLES_EXT = ((int)0x8CAB), + COMBINER6_NV = ((int)0x8556), + LINEAR_SHARPEN_SGIS = ((int)0x80AD), + LIGHT4 = ((int)0x4004), + COMBINER5_NV = ((int)0x8555), + COMBINER2_NV = ((int)0x8552), + COMBINER3_NV = ((int)0x8553), + EDGE_FLAG_ARRAY_STRIDE_EXT = ((int)0x808C), + CON_2_ATI = ((int)0x8943), + BLEND_EQUATION_EXT = ((int)0x8009), + VERTEX_PROGRAM_POINT_SIZE_NV = ((int)0x8642), + STATIC_DRAW = ((int)0x88E4), + NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI = ((int)0x8973), + MAX_VERTEX_UNITS_ARB = ((int)0x86A4), + GL_8X_BIT_ATI = ((int)0x00000004), + MAP1_VERTEX_ATTRIB5_4_NV = ((int)0x8665), + CON_21_ATI = ((int)0x8956), + TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB = ((int)0x851A), + MATRIX5_ARB = ((int)0x88C5), + STATIC_DRAW_ARB = ((int)0x88E4), + PIXEL_COUNT_NV = ((int)0x8866), + TEXTURE_COLOR_TABLE_SGI = ((int)0x80BC), + MATRIX4_ARB = ((int)0x88C4), + MAP2_VERTEX_ATTRIB1_4_NV = ((int)0x8671), + INDEX_ARRAY_POINTER_EXT = ((int)0x8091), + MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87C8), + VERTEX_STREAM1_ATI = ((int)0x876D), + FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT = ((int)0x8DA9), + CULL_MODES_NV = ((int)0x86E0), + COMBINER_MAPPING_NV = ((int)0x8543), + MAP1_TEXTURE_COORD_2 = ((int)0x0D94), + TEXTURE_SHARED_SIZE_EXT = ((int)0x8C3F), + DEPTH_RANGE = ((int)0x0B70), + EXP2 = ((int)0x0801), + COLOR_TABLE_FORMAT = ((int)0x80D8), + DEPTH_STENCIL_EXT = ((int)0x84F9), + WRITE_PIXEL_DATA_RANGE_NV = ((int)0x8878), + PIXEL_TILE_CACHE_INCREMENT_SGIX = ((int)0x813F), + UNSIGNED_SHORT_5_6_5_EXT = ((int)0x8363), + PROJECTION_MATRIX = ((int)0x0BA7), + FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX = ((int)0x8409), + MINMAX_FORMAT = ((int)0x802F), + MAP_COLOR = ((int)0x0D10), + VERTEX_STREAM6_ATI = ((int)0x8772), + CLIP_PLANE1 = ((int)0x3001), + SAMPLER_1D_ARB = ((int)0x8B5D), + OPERAND2_ALPHA_EXT = ((int)0x859A), + POINT_SIZE_MAX = ((int)0x8127), + SAMPLE_ALPHA_TO_MASK_EXT = ((int)0x809E), + MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV = ((int)0x8C80), + STENCIL_BACK_WRITEMASK = ((int)0x8CA5), + SLUMINANCE = ((int)0x8C46), + DUAL_ALPHA4_SGIS = ((int)0x8110), + MAP1_TEXTURE_COORD_3 = ((int)0x0D95), + POLYGON_MODE = ((int)0x0B40), + PRESERVE_ATI = ((int)0x8762), + MAX_RECTANGLE_TEXTURE_SIZE_ARB = ((int)0x84F8), + INTERLACE_READ_OML = ((int)0x8981), + SAMPLE_MASK_VALUE_EXT = ((int)0x80AA), + LUMINANCE8 = ((int)0x8040), + UNPACK_RESAMPLE_OML = ((int)0x8985), + SUBTRACT = ((int)0x84E7), + LOCAL_CONSTANT_DATATYPE_EXT = ((int)0x87ED), + SECONDARY_COLOR_ARRAY_STRIDE_EXT = ((int)0x845C), + CONSTANT_COLOR_EXT = ((int)0x8001), + UNSIGNED_INT_8_8_S8_S8_REV_NV = ((int)0x86DB), + TEXTURE_SHADER_NV = ((int)0x86DE), + SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM = ((int)103087), + TYPE_RGBA_FLOAT_ATI = ((int)0x8820), + FLOAT_MAT2x3 = ((int)0x8B65), + TEXTURE_COORD_ARRAY_COUNT_EXT = ((int)0x808B), + VERTEX_STREAM2_ATI = ((int)0x876E), + PREVIOUS = ((int)0x8578), + FRAGMENT_COLOR_EXT = ((int)0x834C), + OFFSET_TEXTURE_BIAS_NV = ((int)0x86E3), + MATRIX6_NV = ((int)0x8636), + PRIMITIVE_RESTART_NV = ((int)0x8558), + INTENSITY8_EXT = ((int)0x804B), + DOT3_RGB_ARB = ((int)0x86AE), + PROGRAM_POINT_SIZE_EXT = ((int)0x8642), + RGB4_EXT = ((int)0x804F), + LIGHTING_BIT = ((int)0x00000040), + SAMPLE_COVERAGE = ((int)0x80A0), + ALPHA = ((int)0x1906), + TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV = ((int)0x8C88), + N3F_V3F = ((int)0x2A25), + MAX_CONVOLUTION_HEIGHT = ((int)0x801B), + RGB_SCALE = ((int)0x8573), + FRONT_AND_BACK = ((int)0x0408), + LUMINANCE4_ALPHA4_EXT = ((int)0x8043), + PROXY_HISTOGRAM_EXT = ((int)0x8025), + RESCALE_NORMAL_EXT = ((int)0x803A), + FOG_BIT = ((int)0x00000080), + CON_30_ATI = ((int)0x895F), + QUERY_RESULT_AVAILABLE = ((int)0x8867), + FRAGMENT_LIGHT6_SGIX = ((int)0x8412), + MAP1_TEXTURE_COORD_1 = ((int)0x0D93), + FOG_OFFSET_VALUE_SGIX = ((int)0x8199), + SAMPLE_MASK_EXT = ((int)0x80A0), + MODELVIEW6_ARB = ((int)0x8726), + LOGIC_OP_MODE = ((int)0x0BF0), + MAP1_VERTEX_ATTRIB7_4_NV = ((int)0x8667), + ALWAYS = ((int)0x0207), + GLOBAL_ALPHA_SUN = ((int)0x81D9), + PROXY_COLOR_TABLE_SGI = ((int)0x80D3), + CURRENT_FOG_COORD = ((int)VERSION_1_4.CURRENT_FOG_COORDINATE), + WEIGHT_SUM_UNITY_ARB = ((int)0x86A6), + FULL_RANGE_EXT = ((int)0x87E1), + PRIMARY_COLOR_ARB = ((int)0x8577), + MAX_VERTEX_ATTRIBS = ((int)0x8869), + DOT_PRODUCT_PASS_THROUGH_NV = ((int)0x885B), + RGB10_A2 = ((int)0x8059), + OPERAND0_RGB_ARB = ((int)0x8590), + ACTIVE_STENCIL_FACE_EXT = ((int)0x8911), + UNSIGNED_INT_2_10_10_10_REV = ((int)0x8368), + LIGHT6 = ((int)0x4006), + MAT_COLOR_INDEXES_BIT_PGI = ((int)0x01000000), + DEPTH_PASS_INSTRUMENT_SGIX = ((int)0x8310), + TEXTURE6_ARB = ((int)0x84C6), + CON_9_ATI = ((int)0x894A), + TEXTURE_MIN_LOD_SGIS = ((int)0x813A), + WEIGHT_ARRAY_SIZE_ARB = ((int)0x86AB), + PACK_ROW_LENGTH = ((int)0x0D02), + CND0_ATI = ((int)0x896B), + TEXTURE_1D_STACK_BINDING_MESAX = ((int)0x875D), + TEXTURE_1D_STACK_MESAX = ((int)0x8759), + VERTEX_STREAM5_ATI = ((int)0x8771), + STENCIL_TEST_TWO_SIDE_EXT = ((int)0x8910), + FLOAT_RG32_NV = ((int)0x8887), + INTERPOLATE_EXT = ((int)0x8575), + CON_10_ATI = ((int)0x894B), + SPOT_EXPONENT = ((int)0x1205), + POST_CONVOLUTION_GREEN_SCALE_EXT = ((int)0x801D), + COLOR_INDEX = ((int)0x1900), + SLUMINANCE8_EXT = ((int)0x8C47), + FLOAT_MAT4_ARB = ((int)0x8B5C), + PIXEL_MAP_I_TO_G = ((int)0x0C73), + YCBCR_MESA = ((int)0x8757), + RENDERBUFFER_INTERNAL_FORMAT_EXT = ((int)0x8D44), + RGB8UI_EXT = ((int)0x8D7D), + PIXEL_MAP_G_TO_G_SIZE = ((int)0x0CB7), + SECONDARY_INTERPOLATOR_ATI = ((int)0x896D), + COLOR3_BIT_PGI = ((int)0x00010000), + MAX_FOG_FUNC_POINTS_SGIS = ((int)0x812C), + SINGLE_COLOR = ((int)0x81F9), + QUARTER_BIT_ATI = ((int)0x00000010), + TRUE = ((int)1), + ACCUM_CLEAR_VALUE = ((int)0x0B80), + HISTOGRAM_SINK = ((int)0x802D), + PIXEL_MIN_FILTER_EXT = ((int)0x8332), + MVP_MATRIX_EXT = ((int)0x87E3), + NO_ERROR = ((int)0), + PACK_SKIP_IMAGES = ((int)0x806B), + CURRENT_QUERY_ARB = ((int)0x8865), + OPERAND1_RGB_EXT = ((int)0x8591), + IUI_N3F_V2F_EXT = ((int)0x81AF), + TEXTURE_COORD_ARRAY_SIZE = ((int)0x8088), + POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D2), + COLOR_ATTACHMENT12_EXT = ((int)0x8CEC), + FOG_COORD_ARRAY_BUFFER_BINDING = ((int)VERSION_1_5.FOG_COORDINATE_ARRAY_BUFFER_BINDING), + DOUBLEBUFFER = ((int)0x0C32), + SPRITE_TRANSLATION_SGIX = ((int)0x814B), + FOG_DISTANCE_MODE_NV = ((int)0x855A), + INDEX_MATERIAL_EXT = ((int)0x81B8), + RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV = ((int)0x86D9), + INT_VEC2_ARB = ((int)0x8B53), + MODELVIEW5_ARB = ((int)0x8725), + INVERSE_NV = ((int)0x862B), + CLIP_PLANE0 = ((int)0x3000), + LUMINANCE_ALPHA_INTEGER_EXT = ((int)0x8D9D), + TEXTURE_STENCIL_SIZE_EXT = ((int)0x88F1), + POINT_DISTANCE_ATTENUATION_ARB = ((int)0x8129), + ADD_SIGNED_ARB = ((int)0x8574), + ALPHA_INTEGER_EXT = ((int)0x8D97), + PIXEL_TEX_GEN_Q_ROUND_SGIX = ((int)0x8185), + EXPAND_NORMAL_NV = ((int)0x8538), + PIXEL_MAP_I_TO_A = ((int)0x0C75), + SIGNED_INTENSITY_NV = ((int)0x8707), + FLOAT_MAT2x4 = ((int)0x8B66), + STENCIL_TAG_BITS_EXT = ((int)0x88F2), + TEXTURE_MIN_FILTER = ((int)0x2801), + TEXTURE_GREEN_TYPE_ARB = ((int)0x8C11), + ARRAY_BUFFER = ((int)0x8892), + C3F_V3F = ((int)0x2A24), + VARIABLE_G_NV = ((int)0x8529), + VERTEX_ATTRIB_ARRAY_TYPE_ARB = ((int)0x8625), + PROGRAM_TEMPORARIES_ARB = ((int)0x88A4), + FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB = ((int)0x889D), + MAX_PROGRAM_OUTPUT_VERTICES_NV = ((int)0x8C27), + COLOR_TABLE_RED_SIZE_SGI = ((int)0x80DA), + MAX_COMBINED_TEXTURE_IMAGE_UNITS = ((int)0x8B4D), + EVAL_TRIANGULAR_2D_NV = ((int)0x86C1), + STRICT_LIGHTING_HINT_PGI = ((int)0x1A217), + INTENSITY12_EXT = ((int)0x804C), + CON_20_ATI = ((int)0x8955), + MAX_ASYNC_DRAW_PIXELS_SGIX = ((int)0x8360), + BUMP_ROT_MATRIX_ATI = ((int)0x8775), + POST_COLOR_MATRIX_ALPHA_BIAS = ((int)0x80BB), + DEPTH_WRITEMASK = ((int)0x0B72), + COEFF = ((int)0x0A00), + TEXTURE24 = ((int)0x84D8), + RED = ((int)0x1903), + MAX_PALETTE_MATRICES_ARB = ((int)0x8842), + TEXTURE_RED_SIZE_EXT = ((int)0x805C), + TEXTURE20 = ((int)0x84D4), + UNSIGNED_INT_8_8_8_8 = ((int)0x8035), + POST_COLOR_MATRIX_ALPHA_SCALE_SGI = ((int)0x80B7), + Z_EXT = ((int)0x87D7), + BLEND_EQUATION_ALPHA = ((int)0x883D), + SECONDARY_COLOR_ARRAY_EXT = ((int)0x845E), + TEXTURE28 = ((int)0x84DC), + DECR_WRAP = ((int)0x8508), + ZOOM_X = ((int)0x0D16), + FLOAT_RG_NV = ((int)0x8881), + STENCIL_CLEAR_VALUE = ((int)0x0B91), + DRAW_BUFFER14 = ((int)0x8833), + BINORMAL_ARRAY_POINTER_EXT = ((int)0x8443), + IMAGE_CUBIC_WEIGHT_HP = ((int)0x815E), + NATIVE_GRAPHICS_END_HINT_PGI = ((int)0x1A204), + OPERAND2_RGB_ARB = ((int)0x8592), + COMBINE_RGB_ARB = ((int)0x8571), + CURRENT_COLOR = ((int)0x0B00), + UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT = ((int)0x8DD7), + SRC_COLOR = ((int)0x0300), + LIGHT0 = ((int)0x4000), + TEXTURE31 = ((int)0x84DF), + STENCIL_ATTACHMENT_EXT = ((int)0x8D20), + LUMINANCE12 = ((int)0x8041), + MAX_VERTEX_SHADER_VARIANTS_EXT = ((int)0x87C6), + MAP2_VERTEX_4 = ((int)0x0DB8), + SIGNED_HILO8_NV = ((int)0x885F), + DRAW_BUFFER5_ATI = ((int)0x882A), + NORMAL_ARRAY_STRIDE = ((int)0x807F), + OBJECT_ATTACHED_OBJECTS_ARB = ((int)0x8B85), + MAP2_VERTEX_3 = ((int)0x0DB7), + PIXEL_MAP_B_TO_B_SIZE = ((int)0x0CB8), + MATRIX21_ARB = ((int)0x88D5), + PROXY_TEXTURE_3D = ((int)0x8070), + TEXTURE_GREEN_SIZE_EXT = ((int)0x805D), + MAX_PROGRAM_LOCAL_PARAMETERS_ARB = ((int)0x88B4), + SPRITE_SGIX = ((int)0x8148), + VERTEX_ATTRIB_ARRAY2_NV = ((int)0x8652), + PIXEL_MAP_I_TO_B = ((int)0x0C74), + INT_SAMPLER_BUFFER_EXT = ((int)0x8DD0), + PACK_IMAGE_DEPTH_SGIS = ((int)0x8131), + ACTIVE_TEXTURE_ARB = ((int)0x84E0), + VERTEX_ARRAY_BINDING_APPLE = ((int)0x85B5), + NUM_COMPRESSED_TEXTURE_FORMATS = ((int)0x86A2), + MAX_CLIENT_ATTRIB_STACK_DEPTH = ((int)0x0D3B), + ACTIVE_VARYING_MAX_LENGTH_NV = ((int)0x8C82), + PROXY_TEXTURE_2D_ARRAY_EXT = ((int)0x8C1B), + MATRIX8_ARB = ((int)0x88C8), + FRAMEBUFFER_SRGB_EXT = ((int)0x8DB9), + MATRIX18_ARB = ((int)0x88D2), + FRAGMENT_LIGHT4_SGIX = ((int)0x8410), + ARRAY_BUFFER_BINDING_ARB = ((int)0x8894), + ELEMENT_ARRAY_ATI = ((int)0x8768), + FOG_SPECULAR_TEXTURE_WIN = ((int)0x80EC), + REDUCE_EXT = ((int)0x8016), + GL_3D_COLOR_TEXTURE = ((int)0x0603), + MAX_VERTEX_UNIFORM_COMPONENTS = ((int)0x8B4A), + LO_SCALE_NV = ((int)0x870F), + FRAMEBUFFER_BINDING_EXT = ((int)0x8CA6), + DEFORMATIONS_MASK_SGIX = ((int)0x8196), + TEXTURE_CUBE_MAP_POSITIVE_Y_ARB = ((int)0x8517), + HISTOGRAM_RED_SIZE_EXT = ((int)0x8028), + MAX_CONVOLUTION_WIDTH = ((int)0x801A), + TEXTURE_BASE_LEVEL_SGIS = ((int)0x813C), + POLYGON_OFFSET_FILL = ((int)0x8037), + LUMINANCE_ALPHA16I_EXT = ((int)0x8D8D), + FRONT = ((int)0x0404), + LINEAR_SHARPEN_ALPHA_SGIS = ((int)0x80AE), + FRAMEBUFFER_ATTACHMENT_LAYERED_EXT = ((int)0x8DA7), + MATRIX11_ARB = ((int)0x88CB), + MAX_MAP_TESSELLATION_NV = ((int)0x86D6), + DRAW_BUFFER11_ATI = ((int)0x8830), + CCW = ((int)0x0901), + INVERSE_TRANSPOSE_NV = ((int)0x862D), + BACK_NORMALS_HINT_PGI = ((int)0x1A223), + FLOAT_RGBA_MODE_NV = ((int)0x888E), + COLOR_ARRAY_POINTER_EXT = ((int)0x8090), + FLOAT_32_UNSIGNED_INT_24_8_REV_NV = ((int)0x8DAD), + T2F_IUI_V2F_EXT = ((int)0x81B1), + MAP1_VERTEX_ATTRIB13_4_NV = ((int)0x866D), + MATRIX13_ARB = ((int)0x88CD), + VERTEX_ARRAY_BUFFER_BINDING = ((int)0x8896), + SAMPLE_ALPHA_TO_MASK_SGIS = ((int)0x809E), + COMBINE_RGB_EXT = ((int)0x8571), + HILO8_NV = ((int)0x885E), + PIXEL_TILE_GRID_HEIGHT_SGIX = ((int)0x8143), + PIXEL_TILE_CACHE_SIZE_SGIX = ((int)0x8145), + SCALE_BY_TWO_NV = ((int)0x853E), + PIXEL_TRANSFORM_2D_EXT = ((int)0x8330), + COMPILE_STATUS = ((int)0x8B81), + CONSTANT_ARB = ((int)0x8576), + LIST_BASE = ((int)0x0B32), + EMBOSS_CONSTANT_NV = ((int)0x855E), + SECONDARY_COLOR_ARRAY_POINTER_EXT = ((int)0x845D), + DYNAMIC_DRAW_ARB = ((int)0x88E8), + CURRENT_BIT = ((int)0x00000001), + TEXTURE_MIN_LOD = ((int)0x813A), + MAP1_VERTEX_ATTRIB6_4_NV = ((int)0x8666), + VERSION = ((int)0x1F02), + FILL = ((int)0x1B02), + REG_17_ATI = ((int)0x8932), + MAP2_COLOR_4 = ((int)0x0DB0), + SWIZZLE_STQ_ATI = ((int)0x8977), + FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT = ((int)0x8CDB), + DRAW_BUFFER13_ATI = ((int)0x8832), + TEXTURE_LUMINANCE_TYPE_ARB = ((int)0x8C14), + COMPRESSED_SRGB_ALPHA_EXT = ((int)0x8C49), + UNSIGNED_INT_SAMPLER_3D_EXT = ((int)0x8DD3), + BUFFER_FLUSHING_UNMAP_APPLE = ((int)0x8A13), + STENCIL_PASS_DEPTH_FAIL = ((int)0x0B95), + FOG_COORD_ARRAY = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY), + AUTO_NORMAL = ((int)0x0D80), + TEXTURE_ENV_BIAS_SGIX = ((int)0x80BE), + SAMPLER_1D_SHADOW = ((int)0x8B61), + PIXEL_MAP_R_TO_R_SIZE = ((int)0x0CB6), + GL_2D = ((int)0x0600), + LUMINANCE_ALPHA_FLOAT32_ATI = ((int)0x8819), + SIGNED_LUMINANCE_NV = ((int)0x8701), + COLOR_LOGIC_OP = ((int)0x0BF2), + SAMPLE_PATTERN_SGIS = ((int)0x80AC), + LINE_STRIP = ((int)0x0003), + READ_PIXEL_DATA_RANGE_POINTER_NV = ((int)0x887D), + HISTOGRAM_BLUE_SIZE = ((int)0x802A), + MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8B4C), + STENCIL_INDEX8_EXT = ((int)0x8D48), + GL_422_REV_AVERAGE_EXT = ((int)0x80CF), + BLEND_SRC = ((int)0x0BE1), + SECONDARY_COLOR_ARRAY_SIZE_EXT = ((int)0x845A), + MODELVIEW0_MATRIX_EXT = ((int)All.MODELVIEW_MATRIX), + MODELVIEW4_ARB = ((int)0x8724), + DECR_WRAP_EXT = ((int)0x8508), + FRAMEBUFFER_EXT = ((int)0x8D40), + NUM_FRAGMENT_REGISTERS_ATI = ((int)0x896E), + POINT_FADE_THRESHOLD_SIZE = ((int)0x8128), + VARIABLE_A_NV = ((int)0x8523), + DECR = ((int)0x1E03), + CURRENT_RASTER_COLOR = ((int)0x0B04), + TEXTURE_RECTANGLE_NV = ((int)0x84F5), + MIRRORED_REPEAT = ((int)0x8370), + OUTPUT_TEXTURE_COORD20_EXT = ((int)0x87B1), + SWIZZLE_STR_DR_ATI = ((int)0x8978), + TEXTURE_MATRIX = ((int)0x0BA8), + COMPRESSED_SLUMINANCE_ALPHA = ((int)0x8C4B), + ATTRIB_ARRAY_STRIDE_NV = ((int)0x8624), + TEXTURE_MAX_CLAMP_R_SGIX = ((int)0x836B), + RIGHT = ((int)0x0407), + COLOR_INDEX4_EXT = ((int)0x80E4), + STENCIL_BITS = ((int)0x0D57), + HILO16_NV = ((int)0x86F8), + POINT_BIT = ((int)0x00000002), + INTERLACE_READ_INGR = ((int)0x8568), + MAX_PROGRAM_ALU_INSTRUCTIONS_ARB = ((int)0x880B), + COLOR_TABLE_BLUE_SIZE_SGI = ((int)0x80DC), + LUMINANCE8I_EXT = ((int)0x8D92), + FRAGMENT_DEPTH = ((int)0x8452), + PROXY_TEXTURE_2D = ((int)0x8064), + PACK_SWAP_BYTES = ((int)0x0D00), + ACCUM_RED_BITS = ((int)0x0D58), + RGBA4_S3TC = ((int)0x83A3), + CON_24_ATI = ((int)0x8959), + POST_COLOR_MATRIX_BLUE_BIAS = ((int)0x80BA), + OUTPUT_TEXTURE_COORD10_EXT = ((int)0x87A7), + SIGNED_INTENSITY8_NV = ((int)0x8708), + EDGE_FLAG_ARRAY_POINTER = ((int)0x8093), + FOG_COORDINATE_ARRAY_TYPE_EXT = ((int)0x8454), + TEXTURE_COMPARE_FAIL_VALUE_ARB = ((int)0x80BF), + DEPTH_COMPONENT = ((int)0x1902), + READ_ONLY = ((int)0x88B8), + MAX_VERTEX_HINT_PGI = ((int)0x1A22D), + YCRCB_SGIX = ((int)0x8318), + TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL = ((int)0x83F8), + OUTPUT_TEXTURE_COORD28_EXT = ((int)0x87B9), + PROXY_TEXTURE_CUBE_MAP_ARB = ((int)0x851B), + SRGB_EXT = ((int)0x8C40), + TEXTURE17_ARB = ((int)0x84D1), + REG_29_ATI = ((int)0x893E), + RGB16F_ARB = ((int)0x881B), + SIGNED_LUMINANCE_ALPHA_NV = ((int)0x8703), + POINT_TOKEN = ((int)0x0701), + MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = ((int)0x88B3), + MAX_TEXTURE_COORDS = ((int)0x8871), + FLOAT = ((int)0x1406), + MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV = ((int)0x8C28), + PIXEL_PACK_BUFFER_EXT = ((int)0x88EB), + GEOMETRY_SHADER_EXT = ((int)0x8DD9), + MAP1_VERTEX_ATTRIB8_4_NV = ((int)0x8668), + EVAL_FRACTIONAL_TESSELLATION_NV = ((int)0x86C5), + OP_CROSS_PRODUCT_EXT = ((int)0x8797), + MAX_LIGHTS = ((int)0x0D31), + SAMPLE_BUFFERS_EXT = ((int)0x80A8), + REG_11_ATI = ((int)0x892C), + DOT_PRODUCT_TEXTURE_1D_NV = ((int)0x885C), + OUTPUT_TEXTURE_COORD18_EXT = ((int)0x87AF), + MAX_RENDERBUFFER_SIZE_EXT = ((int)0x84E8), + COLOR_MATRIX = ((int)0x80B1), + FLOAT_MAT4x3 = ((int)0x8B6A), + OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV = ((int)0x8857), + DIFFUSE = ((int)0x1201), + POINT_SIZE = ((int)0x0B11), + TEXTURE16_ARB = ((int)0x84D0), + OFFSET_TEXTURE_2D_NV = ((int)0x86E8), + PROGRAM_ERROR_STRING_NV = ((int)0x8874), + COLOR_ATTACHMENT10_EXT = ((int)0x8CEA), + TEXTURE_COORD_ARRAY_STRIDE = ((int)0x808A), + EVAL_VERTEX_ATTRIB15_NV = ((int)0x86D5), + FLAT = ((int)0x1D00), + CLIENT_ACTIVE_TEXTURE_ARB = ((int)0x84E1), + BUFFER_MAP_POINTER = ((int)0x88BD), + OP_SET_LT_EXT = ((int)0x878D), + SAMPLES_ARB = ((int)0x80A9), + AVERAGE_EXT = ((int)0x8335), + SMOOTH_POINT_SIZE_RANGE = ((int)0x0B12), + CLAMP_VERTEX_COLOR_ARB = ((int)0x891A), + HALF_BIAS_NEGATE_NV = ((int)0x853B), + CON_23_ATI = ((int)0x8958), + SAMPLER_CUBE_ARB = ((int)0x8B60), + TEXTURE_NORMAL_EXT = ((int)0x85AF), + FRAGMENT_LIGHTING_SGIX = ((int)0x8400), + REFLECTION_MAP_NV = ((int)0x8512), + TEXTURE15_ARB = ((int)0x84CF), + MAP1_VERTEX_ATTRIB0_4_NV = ((int)0x8660), + TEXTURE_GEQUAL_R_SGIX = ((int)0x819D), + NEGATIVE_ONE_EXT = ((int)0x87DF), + DST_COLOR = ((int)0x0306), + ALPHA16I_EXT = ((int)0x8D8A), + TEXTURE2_ARB = ((int)0x84C2), + BACK_PRIMARY_COLOR_NV = ((int)0x8C77), + MATRIX15_ARB = ((int)0x88CF), + MODULATE_ADD_ATI = ((int)0x8744), + PROGRAM_RESIDENT_NV = ((int)0x8647), + VERTEX_SHADER_ARB = ((int)0x8B31), + SOURCE1_ALPHA_ARB = ((int)0x8589), + DEPTH_CLEAR_VALUE = ((int)0x0B73), + COMBINER_CD_DOT_PRODUCT_NV = ((int)0x8546), + COMPRESSED_SRGB_EXT = ((int)0x8C48), + OUTPUT_TEXTURE_COORD2_EXT = ((int)0x879F), + FENCE_CONDITION_NV = ((int)0x84F4), + PROGRAM_ALU_INSTRUCTIONS_ARB = ((int)0x8805), + SPHERE_MAP = ((int)0x2402), + PHONG_HINT_WIN = ((int)0x80EB), + TEXTURE_LUMINANCE_SIZE = ((int)0x8060), + TEXTURE_MAX_LOD = ((int)0x813B), + INDEX_ARRAY = ((int)0x8077), + EYE_LINE_SGIS = ((int)0x81F6), + MATRIX22_ARB = ((int)0x88D6), + COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = ((int)0x8C4E), + COLOR_SUM_ARB = ((int)0x8458), + NUM_FRAGMENT_CONSTANTS_ATI = ((int)0x896F), + COLOR_ATTACHMENT13_EXT = ((int)0x8CED), + DEPTH_BUFFER_FLOAT_MODE_NV = ((int)0x8DAF), + REG_20_ATI = ((int)0x8935), + COLOR_ATTACHMENT15_EXT = ((int)0x8CEF), + ARRAY_BUFFER_ARB = ((int)0x8892), + VERTEX_SOURCE_ATI = ((int)0x8774), + MAX_DRAW_BUFFERS = ((int)0x8824), + SOURCE2_RGB = ((int)0x8582), + COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = ((int)0x8C4D), + FLOAT_RGB16_NV = ((int)0x8888), + CURRENT_VERTEX_ATTRIB_ARB = ((int)0x8626), + DEPTH_STENCIL_TO_RGBA_NV = ((int)0x886E), + TEXTURE_COMPRESSED_IMAGE_SIZE_ARB = ((int)0x86A0), + INDEX_ARRAY_COUNT_EXT = ((int)0x8087), + SPOT_CUTOFF = ((int)0x1206), + VERTEX23_BIT_PGI = ((int)0x00000004), + COORD_REPLACE_ARB = ((int)0x8862), + RENDERBUFFER_ALPHA_SIZE_EXT = ((int)0x8D53), + SWIZZLE_STR_ATI = ((int)0x8976), + CONVOLUTION_1D_EXT = ((int)0x8010), + LINE_WIDTH_RANGE = ((int)0x0B22), + SLUMINANCE_EXT = ((int)0x8C46), + FOG_END = ((int)0x0B64), + RGB4 = ((int)0x804F), + VERTEX_ID_NV = ((int)0x8C7B), + NEAREST_MIPMAP_LINEAR = ((int)0x2702), + COMPRESSED_INTENSITY = ((int)0x84EC), + REG_30_ATI = ((int)0x893F), + GL_2X_BIT_ATI = ((int)0x00000001), + R1UI_V3F_SUN = ((int)0x85C4), + VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87CF), + CONVOLUTION_2D_EXT = ((int)0x8011), + REPLICATE_BORDER_HP = ((int)0x8153), + OP_RECIP_SQRT_EXT = ((int)0x8795), + FRAGMENT_LIGHT0_SGIX = ((int)0x840C), + VERTEX_SHADER_EXT = ((int)0x8780), + FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT = ((int)0x8CD0), + MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV = ((int)0x8DA1), + DEPTH_COMPONENT24_SGIX = ((int)0x81A6), + HALF_BIAS_NORMAL_NV = ((int)0x853A), + SLUMINANCE_ALPHA_EXT = ((int)0x8C44), + SRC_ALPHA_SATURATE = ((int)0x0308), + DETAIL_TEXTURE_MODE_SGIS = ((int)0x809B), + POST_CONVOLUTION_ALPHA_BIAS = ((int)0x8023), + RED_BIT_ATI = ((int)0x00000001), + FOG_FUNC_POINTS_SGIS = ((int)0x812B), + NEVER = ((int)0x0200), + TEXTURE_BLUE_TYPE_ARB = ((int)0x8C12), + MOV_ATI = ((int)0x8961), + MATRIX_PALETTE_ARB = ((int)0x8840), + MATRIX6_ARB = ((int)0x88C6), + SAMPLE_ALPHA_TO_ONE_SGIS = ((int)0x809F), + SOURCE2_ALPHA_EXT = ((int)0x858A), + ALPHA16_EXT = ((int)0x803E), + OP_EXP_BASE_2_EXT = ((int)0x8791), + REG_21_ATI = ((int)0x8936), + STENCIL_INDEX1_EXT = ((int)0x8D46), + TEXTURE11_ARB = ((int)0x84CB), + COMBINER_AB_DOT_PRODUCT_NV = ((int)0x8545), + HI_SCALE_NV = ((int)0x870E), + BUMP_ENVMAP_ATI = ((int)0x877B), + RGB8I_EXT = ((int)0x8D8F), + LINK_STATUS = ((int)0x8B82), + SAMPLE_COVERAGE_ARB = ((int)0x80A0), + CONVOLUTION_FORMAT = ((int)0x8017), + COLOR_ARRAY = ((int)0x8076), + HISTOGRAM_ALPHA_SIZE_EXT = ((int)0x802B), + PACK_CMYK_HINT_EXT = ((int)0x800E), + COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT = ((int)0x8C71), + OUTPUT_TEXTURE_COORD22_EXT = ((int)0x87B3), + UNSIGNED_INT_SAMPLER_2D_EXT = ((int)0x8DD2), + POST_CONVOLUTION_RED_SCALE = ((int)0x801C), + UNSIGNED_SHORT_4_4_4_4_EXT = ((int)0x8033), + LUMINANCE8_EXT = ((int)0x8040), + COLOR_WRITEMASK = ((int)0x0C23), + REG_13_ATI = ((int)0x892E), + INTENSITY32I_EXT = ((int)0x8D85), + REG_31_ATI = ((int)0x8940), + TRANSPOSE_TEXTURE_MATRIX = ((int)0x84E5), + EXPAND_NEGATE_NV = ((int)0x8539), + MAX_VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87C7), + TEXTURE_BORDER_COLOR = ((int)0x1004), + WEIGHT_ARRAY_BUFFER_BINDING = ((int)0x889E), + COLOR_ARRAY_COUNT_EXT = ((int)0x8084), + COMPRESSED_SLUMINANCE_ALPHA_EXT = ((int)0x8C4B), + SAMPLE_MASK_SGIS = ((int)0x80A0), + DRAW_PIXEL_TOKEN = ((int)0x0705), + GL_3_BYTES = ((int)0x1408), + PIXEL_COUNTER_BITS_NV = ((int)0x8864), + AMBIENT_AND_DIFFUSE = ((int)0x1602), + DOT2_ADD_ATI = ((int)0x896C), + ACTIVE_UNIFORM_MAX_LENGTH = ((int)0x8B87), + TRANSPOSE_PROJECTION_MATRIX_ARB = ((int)0x84E4), + SAMPLES_EXT = ((int)0x80A9), + LOCAL_CONSTANT_EXT = ((int)0x87C3), + COMPRESSED_SIGNED_RED_RGTC1_EXT = ((int)0x8DBC), + TEXTURE_2D_ARRAY_EXT = ((int)0x8C1A), + MAP1_NORMAL = ((int)0x0D92), + SAMPLER_1D_ARRAY_EXT = ((int)0x8DC0), + INTENSITY8UI_EXT = ((int)0x8D7F), + FLOAT_CLEAR_COLOR_VALUE_NV = ((int)0x888D), + TRANSPOSE_COLOR_MATRIX_ARB = ((int)0x84E6), + VERTEX_ATTRIB_ARRAY6_NV = ((int)0x8656), + SAMPLER_CUBE = ((int)0x8B60), + COLOR_BUFFER_BIT = ((int)0x00004000), + MODELVIEW_STACK_DEPTH = ((int)0x0BA3), + POINT_FADE_THRESHOLD_SIZE_ARB = ((int)0x8128), + TEXTURE_CUBE_MAP_NEGATIVE_Y = ((int)0x8518), + ATTRIB_ARRAY_SIZE_NV = ((int)0x8623), + UNSIGNED_INT_SAMPLER_CUBE_EXT = ((int)0x8DD4), + ALPHA32F_ARB = ((int)0x8816), + MAP_ATTRIB_V_ORDER_NV = ((int)0x86C4), + VARIANT_DATATYPE_EXT = ((int)0x87E5), + INT_SAMPLER_2D_ARRAY_EXT = ((int)0x8DCF), + TEXTURE_DEPTH_SIZE_ARB = ((int)0x884A), + INTENSITY_FLOAT16_ATI = ((int)0x881D), } public enum SGIX_icc_texture { - R5_G6_B5_A8_ICC_SGIX = ((int)0x8467), - INTENSITY_ICC_SGIX = ((int)0x8464), - RGB_ICC_SGIX = ((int)0x8460), - LUMINANCE_ICC_SGIX = ((int)0x8463), - LUMINANCE_ALPHA_ICC_SGIX = ((int)0x8465), - ALPHA_ICC_SGIX = ((int)0x8462), RGBA_ICC_SGIX = ((int)0x8461), - R5_G6_B5_ICC_SGIX = ((int)0x8466), - INTENSITY16_ICC_SGIX = ((int)0x846A), - LUMINANCE16_ALPHA8_ICC_SGIX = ((int)0x846B), + INTENSITY_ICC_SGIX = ((int)0x8464), + ALPHA_ICC_SGIX = ((int)0x8462), + LUMINANCE_ICC_SGIX = ((int)0x8463), LUMINANCE16_ICC_SGIX = ((int)0x8469), + R5_G6_B5_ICC_SGIX = ((int)0x8466), ALPHA16_ICC_SGIX = ((int)0x8468), + INTENSITY16_ICC_SGIX = ((int)0x846A), + RGB_ICC_SGIX = ((int)0x8460), + LUMINANCE_ALPHA_ICC_SGIX = ((int)0x8465), + R5_G6_B5_A8_ICC_SGIX = ((int)0x8467), + LUMINANCE16_ALPHA8_ICC_SGIX = ((int)0x846B), } public enum ARB_imaging { - CONVOLUTION_FILTER_SCALE = ((int)0x8014), - COLOR_TABLE_GREEN_SIZE = ((int)0x80DB), - COLOR_TABLE_ALPHA_SIZE = ((int)0x80DD), - HISTOGRAM_ALPHA_SIZE = ((int)0x802B), - CONSTANT_ALPHA = ((int)0x8003), - COLOR_TABLE_FORMAT = ((int)0x80D8), - CONVOLUTION_BORDER_COLOR = ((int)0x8154), - HISTOGRAM_SINK = ((int)0x802D), CONVOLUTION_WIDTH = ((int)0x8018), - PROXY_HISTOGRAM = ((int)0x8025), - HISTOGRAM = ((int)0x8024), - MINMAX = ((int)0x802E), - HISTOGRAM_LUMINANCE_SIZE = ((int)0x802C), - MAX_COLOR_MATRIX_STACK_DEPTH = ((int)0x80B3), - MAX_CONVOLUTION_WIDTH = ((int)0x801A), - REPLICATE_BORDER = ((int)0x8153), - COLOR_MATRIX = ((int)0x80B1), - FUNC_ADD = ((int)0x8006), - PROXY_POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D5), - POST_CONVOLUTION_RED_SCALE = ((int)0x801C), - COLOR_TABLE_INTENSITY_SIZE = ((int)0x80DF), - CONVOLUTION_FILTER_BIAS = ((int)0x8015), - HISTOGRAM_BLUE_SIZE = ((int)0x802A), - POST_COLOR_MATRIX_ALPHA_BIAS = ((int)0x80BB), - COLOR_TABLE_LUMINANCE_SIZE = ((int)0x80DE), - COLOR_TABLE_BIAS = ((int)0x80D7), - POST_CONVOLUTION_BLUE_BIAS = ((int)0x8022), - MIN = ((int)0x8007), - MAX = ((int)0x8008), - CONSTANT_BORDER = ((int)0x8151), - POST_COLOR_MATRIX_RED_BIAS = ((int)0x80B8), - POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D2), - POST_CONVOLUTION_GREEN_SCALE = ((int)0x801D), - HISTOGRAM_GREEN_SIZE = ((int)0x8029), - HISTOGRAM_WIDTH = ((int)0x8026), COLOR_MATRIX_STACK_DEPTH = ((int)0x80B2), - POST_CONVOLUTION_ALPHA_SCALE = ((int)0x801F), - POST_CONVOLUTION_ALPHA_BIAS = ((int)0x8023), - CONVOLUTION_FORMAT = ((int)0x8017), - COLOR_TABLE_BLUE_SIZE = ((int)0x80DC), - MINMAX_SINK = ((int)0x8030), - ONE_MINUS_CONSTANT_ALPHA = ((int)0x8004), - POST_COLOR_MATRIX_ALPHA_SCALE = ((int)0x80B7), - POST_COLOR_MATRIX_GREEN_SCALE = ((int)0x80B5), - POST_COLOR_MATRIX_RED_SCALE = ((int)0x80B4), - FUNC_REVERSE_SUBTRACT = ((int)0x800B), - BLEND_COLOR = ((int)0x8005), - POST_COLOR_MATRIX_BLUE_BIAS = ((int)0x80BA), - POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D1), - POST_CONVOLUTION_BLUE_SCALE = ((int)0x801E), - MINMAX_FORMAT = ((int)0x802F), BLEND_EQUATION = ((int)0x8009), - CONVOLUTION_2D = ((int)0x8011), - FUNC_SUBTRACT = ((int)0x800A), - CONVOLUTION_1D = ((int)0x8010), - CONVOLUTION_HEIGHT = ((int)0x8019), - POST_CONVOLUTION_GREEN_BIAS = ((int)0x8021), - COLOR_TABLE_RED_SIZE = ((int)0x80DA), - COLOR_TABLE = ((int)0x80D0), - COLOR_TABLE_WIDTH = ((int)0x80D9), - ONE_MINUS_CONSTANT_COLOR = ((int)0x8002), - POST_CONVOLUTION_RED_BIAS = ((int)0x8020), - TABLE_TOO_LARGE = ((int)0x8031), - HISTOGRAM_FORMAT = ((int)0x8027), - CONVOLUTION_BORDER_MODE = ((int)0x8013), - CONSTANT_COLOR = ((int)0x8001), + COLOR_TABLE_BIAS = ((int)0x80D7), + CONSTANT_BORDER = ((int)0x8151), + HISTOGRAM = ((int)0x8024), + COLOR_TABLE_GREEN_SIZE = ((int)0x80DB), HISTOGRAM_RED_SIZE = ((int)0x8028), - PROXY_COLOR_TABLE = ((int)0x80D3), - SEPARABLE_2D = ((int)0x8012), - POST_COLOR_MATRIX_GREEN_BIAS = ((int)0x80B9), - PROXY_POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D4), - POST_COLOR_MATRIX_BLUE_SCALE = ((int)0x80B6), - REDUCE = ((int)0x8016), + CONSTANT_ALPHA = ((int)0x8003), + TABLE_TOO_LARGE = ((int)0x8031), + POST_CONVOLUTION_GREEN_SCALE = ((int)0x801D), + MINMAX_SINK = ((int)0x8030), + PROXY_POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D5), COLOR_TABLE_SCALE = ((int)0x80D6), + COLOR_MATRIX = ((int)0x80B1), + CONVOLUTION_FILTER_SCALE = ((int)0x8014), + BLEND_COLOR = ((int)0x8005), + MIN = ((int)0x8007), + HISTOGRAM_SINK = ((int)0x802D), + POST_COLOR_MATRIX_GREEN_SCALE = ((int)0x80B5), + SEPARABLE_2D = ((int)0x8012), + FUNC_REVERSE_SUBTRACT = ((int)0x800B), + CONVOLUTION_FORMAT = ((int)0x8017), + REPLICATE_BORDER = ((int)0x8153), + CONSTANT_COLOR = ((int)0x8001), + COLOR_TABLE = ((int)0x80D0), + POST_CONVOLUTION_BLUE_SCALE = ((int)0x801E), + FUNC_ADD = ((int)0x8006), + CONVOLUTION_2D = ((int)0x8011), + POST_COLOR_MATRIX_ALPHA_BIAS = ((int)0x80BB), + POST_COLOR_MATRIX_ALPHA_SCALE = ((int)0x80B7), + MINMAX = ((int)0x802E), + POST_CONVOLUTION_ALPHA_BIAS = ((int)0x8023), + POST_COLOR_MATRIX_BLUE_SCALE = ((int)0x80B6), + POST_COLOR_MATRIX_RED_BIAS = ((int)0x80B8), + HISTOGRAM_BLUE_SIZE = ((int)0x802A), + POST_CONVOLUTION_BLUE_BIAS = ((int)0x8022), + COLOR_TABLE_FORMAT = ((int)0x80D8), + POST_COLOR_MATRIX_COLOR_TABLE = ((int)0x80D2), + CONVOLUTION_HEIGHT = ((int)0x8019), + POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D1), + MINMAX_FORMAT = ((int)0x802F), + COLOR_TABLE_ALPHA_SIZE = ((int)0x80DD), + POST_COLOR_MATRIX_BLUE_BIAS = ((int)0x80BA), + PROXY_POST_CONVOLUTION_COLOR_TABLE = ((int)0x80D4), + PROXY_COLOR_TABLE = ((int)0x80D3), + HISTOGRAM_ALPHA_SIZE = ((int)0x802B), + MAX_CONVOLUTION_WIDTH = ((int)0x801A), + POST_COLOR_MATRIX_RED_SCALE = ((int)0x80B4), + POST_CONVOLUTION_ALPHA_SCALE = ((int)0x801F), + CONVOLUTION_BORDER_COLOR = ((int)0x8154), + COLOR_TABLE_BLUE_SIZE = ((int)0x80DC), + ONE_MINUS_CONSTANT_COLOR = ((int)0x8002), + COLOR_TABLE_LUMINANCE_SIZE = ((int)0x80DE), + POST_COLOR_MATRIX_GREEN_BIAS = ((int)0x80B9), + ONE_MINUS_CONSTANT_ALPHA = ((int)0x8004), + FUNC_SUBTRACT = ((int)0x800A), + COLOR_TABLE_INTENSITY_SIZE = ((int)0x80DF), + REDUCE = ((int)0x8016), + COLOR_TABLE_RED_SIZE = ((int)0x80DA), + CONVOLUTION_BORDER_MODE = ((int)0x8013), + HISTOGRAM_GREEN_SIZE = ((int)0x8029), + POST_CONVOLUTION_GREEN_BIAS = ((int)0x8021), + HISTOGRAM_FORMAT = ((int)0x8027), + CONVOLUTION_1D = ((int)0x8010), + POST_CONVOLUTION_RED_BIAS = ((int)0x8020), + MAX_COLOR_MATRIX_STACK_DEPTH = ((int)0x80B3), + COLOR_TABLE_WIDTH = ((int)0x80D9), + POST_CONVOLUTION_RED_SCALE = ((int)0x801C), + MAX = ((int)0x8008), + PROXY_HISTOGRAM = ((int)0x8025), MAX_CONVOLUTION_HEIGHT = ((int)0x801B), + CONVOLUTION_FILTER_BIAS = ((int)0x8015), + HISTOGRAM_WIDTH = ((int)0x8026), + HISTOGRAM_LUMINANCE_SIZE = ((int)0x802C), } public enum VERSION_1_3 { - MAX_CUBE_MAP_TEXTURE_SIZE = ((int)0x851C), - TEXTURE17 = ((int)0x84D1), - TEXTURE0 = ((int)0x84C0), - TEXTURE12 = ((int)0x84CC), - TEXTURE13 = ((int)0x84CD), - OPERAND2_RGB = ((int)0x8592), - TEXTURE_COMPRESSED_IMAGE_SIZE = ((int)0x86A0), - SOURCE1_RGB = ((int)0x8581), - COMPRESSED_ALPHA = ((int)0x84E9), - TEXTURE_COMPRESSED = ((int)0x86A1), - COMPRESSED_TEXTURE_FORMATS = ((int)0x86A3), - TEXTURE6 = ((int)0x84C6), - COMPRESSED_LUMINANCE = ((int)0x84EA), - NUM_COMPRESSED_TEXTURE_FORMATS = ((int)0x86A2), - TEXTURE_CUBE_MAP_POSITIVE_X = ((int)0x8515), - TEXTURE_CUBE_MAP_POSITIVE_Y = ((int)0x8517), - TEXTURE_CUBE_MAP_POSITIVE_Z = ((int)0x8519), - TEXTURE5 = ((int)0x84C5), - OPERAND1_ALPHA = ((int)0x8599), - COMPRESSED_LUMINANCE_ALPHA = ((int)0x84EB), - TEXTURE_CUBE_MAP_NEGATIVE_X = ((int)0x8516), - TEXTURE_CUBE_MAP_NEGATIVE_Y = ((int)0x8518), - TEXTURE30 = ((int)0x84DE), - TEXTURE31 = ((int)0x84DF), - SAMPLE_COVERAGE_VALUE = ((int)0x80AA), - SAMPLE_ALPHA_TO_COVERAGE = ((int)0x809E), - COMPRESSED_RGBA = ((int)0x84EE), - TEXTURE_CUBE_MAP_NEGATIVE_Z = ((int)0x851A), - TRANSPOSE_MODELVIEW_MATRIX = ((int)0x84E3), - SUBTRACT = ((int)0x84E7), - OPERAND1_RGB = ((int)0x8591), - PROXY_TEXTURE_CUBE_MAP = ((int)0x851B), - MAX_TEXTURE_UNITS = ((int)0x84E2), - SAMPLE_COVERAGE_INVERT = ((int)0x80AB), - OPERAND0_RGB = ((int)0x8590), - TRANSPOSE_COLOR_MATRIX = ((int)0x84E6), - MULTISAMPLE_BIT = ((int)0x20000000), - CLIENT_ACTIVE_TEXTURE = ((int)0x84E1), - OPERAND2_ALPHA = ((int)0x859A), - SAMPLE_BUFFERS = ((int)0x80A8), - TEXTURE26 = ((int)0x84DA), - TEXTURE27 = ((int)0x84DB), - TEXTURE24 = ((int)0x84D8), - TEXTURE25 = ((int)0x84D9), - TEXTURE22 = ((int)0x84D6), - TEXTURE23 = ((int)0x84D7), - TEXTURE20 = ((int)0x84D4), - TEXTURE21 = ((int)0x84D5), - TEXTURE16 = ((int)0x84D0), - COMBINE_RGB = ((int)0x8571), TEXTURE14 = ((int)0x84CE), - TEXTURE15 = ((int)0x84CF), - TEXTURE28 = ((int)0x84DC), - TEXTURE29 = ((int)0x84DD), - TEXTURE10 = ((int)0x84CA), + TEXTURE17 = ((int)0x84D1), + TEXTURE16 = ((int)0x84D0), TEXTURE11 = ((int)0x84CB), - SOURCE2_RGB = ((int)0x8582), - COMBINE = ((int)0x8570), - TEXTURE18 = ((int)0x84D2), - TEXTURE19 = ((int)0x84D3), - SOURCE2_ALPHA = ((int)0x858A), - SOURCE1_ALPHA = ((int)0x8589), - DOT3_RGB = ((int)0x86AE), - TEXTURE9 = ((int)0x84C9), - RGB_SCALE = ((int)0x8573), - SAMPLES = ((int)0x80A9), - SOURCE0_ALPHA = ((int)0x8588), - OPERAND0_ALPHA = ((int)0x8598), - PRIMARY_COLOR = ((int)0x8577), + TEXTURE10 = ((int)0x84CA), + TEXTURE13 = ((int)0x84CD), + TEXTURE12 = ((int)0x84CC), SAMPLE_ALPHA_TO_ONE = ((int)0x809F), - TEXTURE4 = ((int)0x84C4), - REFLECTION_MAP = ((int)0x8512), - COMBINE_ALPHA = ((int)0x8572), - ACTIVE_TEXTURE = ((int)0x84E0), - ADD_SIGNED = ((int)0x8574), - TEXTURE_COMPRESSION_HINT = ((int)0x84EF), - COMPRESSED_INTENSITY = ((int)0x84EC), - DOT3_RGBA = ((int)0x86AF), - CONSTANT = ((int)0x8576), - TRANSPOSE_TEXTURE_MATRIX = ((int)0x84E5), - NORMAL_MAP = ((int)0x8511), - TEXTURE8 = ((int)0x84C8), - COMPRESSED_RGB = ((int)0x84ED), - SOURCE0_RGB = ((int)0x8580), - PREVIOUS = ((int)0x8578), - SAMPLE_COVERAGE = ((int)0x80A0), - TEXTURE7 = ((int)0x84C7), TEXTURE_BINDING_CUBE_MAP = ((int)0x8514), + TEXTURE19 = ((int)0x84D3), + TEXTURE18 = ((int)0x84D2), + PRIMARY_COLOR = ((int)0x8577), MULTISAMPLE = ((int)0x809D), - INTERPOLATE = ((int)0x8575), - TEXTURE2 = ((int)0x84C2), - TEXTURE3 = ((int)0x84C3), - TEXTURE1 = ((int)0x84C1), + TRANSPOSE_COLOR_MATRIX = ((int)0x84E6), TRANSPOSE_PROJECTION_MATRIX = ((int)0x84E4), + CONSTANT = ((int)0x8576), + COMBINE = ((int)0x8570), + MULTISAMPLE_BIT = ((int)0x20000000), + SOURCE2_ALPHA = ((int)0x858A), + SAMPLES = ((int)0x80A9), + COMPRESSED_ALPHA = ((int)0x84E9), + TEXTURE_CUBE_MAP_POSITIVE_Y = ((int)0x8517), + SAMPLE_COVERAGE = ((int)0x80A0), + TRANSPOSE_MODELVIEW_MATRIX = ((int)0x84E3), + SAMPLE_ALPHA_TO_COVERAGE = ((int)0x809E), + SUBTRACT = ((int)0x84E7), + SAMPLE_BUFFERS = ((int)0x80A8), + DOT3_RGBA = ((int)0x86AF), + DOT3_RGB = ((int)0x86AE), + SOURCE1_ALPHA = ((int)0x8589), + TEXTURE6 = ((int)0x84C6), + TEXTURE2 = ((int)0x84C2), + COMPRESSED_RGB = ((int)0x84ED), + COMPRESSED_RGBA = ((int)0x84EE), + TEXTURE9 = ((int)0x84C9), + TEXTURE31 = ((int)0x84DF), + TEXTURE30 = ((int)0x84DE), + OPERAND1_ALPHA = ((int)0x8599), + CLIENT_ACTIVE_TEXTURE = ((int)0x84E1), + INTERPOLATE = ((int)0x8575), + OPERAND1_RGB = ((int)0x8591), + SOURCE2_RGB = ((int)0x8582), + MAX_CUBE_MAP_TEXTURE_SIZE = ((int)0x851C), + TEXTURE_COMPRESSED = ((int)0x86A1), + TEXTURE_CUBE_MAP_NEGATIVE_Z = ((int)0x851A), + RGB_SCALE = ((int)0x8573), + SAMPLE_COVERAGE_INVERT = ((int)0x80AB), + TEXTURE_CUBE_MAP_POSITIVE_Z = ((int)0x8519), + NUM_COMPRESSED_TEXTURE_FORMATS = ((int)0x86A2), + COMPRESSED_TEXTURE_FORMATS = ((int)0x86A3), + TEXTURE5 = ((int)0x84C5), + TEXTURE1 = ((int)0x84C1), + COMBINE_RGB = ((int)0x8571), + TEXTURE25 = ((int)0x84D9), + TEXTURE8 = ((int)0x84C8), + TEXTURE27 = ((int)0x84DB), + TEXTURE26 = ((int)0x84DA), + TEXTURE21 = ((int)0x84D5), + TEXTURE20 = ((int)0x84D4), + TEXTURE23 = ((int)0x84D7), + TEXTURE22 = ((int)0x84D6), + SAMPLE_COVERAGE_VALUE = ((int)0x80AA), + TEXTURE29 = ((int)0x84DD), + TEXTURE28 = ((int)0x84DC), TEXTURE_CUBE_MAP = ((int)0x8513), + SOURCE0_ALPHA = ((int)0x8588), + TEXTURE24 = ((int)0x84D8), + SOURCE0_RGB = ((int)0x8580), + ADD_SIGNED = ((int)0x8574), + OPERAND0_ALPHA = ((int)0x8598), + REFLECTION_MAP = ((int)0x8512), + ACTIVE_TEXTURE = ((int)0x84E0), + TRANSPOSE_TEXTURE_MATRIX = ((int)0x84E5), + SOURCE1_RGB = ((int)0x8581), + TEXTURE15 = ((int)0x84CF), + COMPRESSED_LUMINANCE = ((int)0x84EA), CLAMP_TO_BORDER = ((int)0x812D), + TEXTURE_CUBE_MAP_NEGATIVE_X = ((int)0x8516), + OPERAND2_ALPHA = ((int)0x859A), + COMPRESSED_INTENSITY = ((int)0x84EC), + TEXTURE0 = ((int)0x84C0), + NORMAL_MAP = ((int)0x8511), + COMPRESSED_LUMINANCE_ALPHA = ((int)0x84EB), + PROXY_TEXTURE_CUBE_MAP = ((int)0x851B), + TEXTURE_COMPRESSED_IMAGE_SIZE = ((int)0x86A0), + OPERAND2_RGB = ((int)0x8592), + TEXTURE4 = ((int)0x84C4), + OPERAND0_RGB = ((int)0x8590), + MAX_TEXTURE_UNITS = ((int)0x84E2), + TEXTURE_CUBE_MAP_POSITIVE_X = ((int)0x8515), + TEXTURE_CUBE_MAP_NEGATIVE_Y = ((int)0x8518), + TEXTURE_COMPRESSION_HINT = ((int)0x84EF), + COMBINE_ALPHA = ((int)0x8572), + PREVIOUS = ((int)0x8578), + TEXTURE7 = ((int)0x84C7), + TEXTURE3 = ((int)0x84C3), } public enum VERSION_1_4 { DECR_WRAP = ((int)0x8508), - MAX_TEXTURE_LOD_BIAS = ((int)0x84FD), - DEPTH_TEXTURE_MODE = ((int)0x884B), - TEXTURE_COMPARE_MODE = ((int)0x884C), - POINT_SIZE_MIN = ((int)0x8126), - DEPTH_COMPONENT16 = ((int)0x81A5), - FOG_COORDINATE_ARRAY_STRIDE = ((int)0x8455), - COLOR_SUM = ((int)0x8458), - TEXTURE_LOD_BIAS = ((int)0x8501), - FOG_COORDINATE_SOURCE = ((int)0x8450), - CURRENT_SECONDARY_COLOR = ((int)0x8459), - SECONDARY_COLOR_ARRAY_TYPE = ((int)0x845B), - FOG_COORDINATE_ARRAY_TYPE = ((int)0x8454), - GENERATE_MIPMAP_HINT = ((int)0x8192), - TEXTURE_COMPARE_FUNC = ((int)0x884D), - INCR_WRAP = ((int)0x8507), - POINT_SIZE_MAX = ((int)0x8127), - FOG_COORDINATE = ((int)0x8451), - CURRENT_FOG_COORDINATE = ((int)0x8453), GENERATE_MIPMAP = ((int)0x8191), - SECONDARY_COLOR_ARRAY_POINTER = ((int)0x845D), - MIRRORED_REPEAT = ((int)0x8370), - SECONDARY_COLOR_ARRAY_STRIDE = ((int)0x845C), + FRAGMENT_DEPTH = ((int)0x8452), + MAX_TEXTURE_LOD_BIAS = ((int)0x84FD), FOG_COORDINATE_ARRAY = ((int)0x8457), BLEND_DST_RGB = ((int)0x80C8), - SECONDARY_COLOR_ARRAY_SIZE = ((int)0x845A), - SECONDARY_COLOR_ARRAY = ((int)0x845E), - FOG_COORDINATE_ARRAY_POINTER = ((int)0x8456), - COMPARE_R_TO_TEXTURE = ((int)0x884E), - BLEND_DST_ALPHA = ((int)0x80CA), - DEPTH_COMPONENT24 = ((int)0x81A6), - POINT_FADE_THRESHOLD_SIZE = ((int)0x8128), - DEPTH_COMPONENT32 = ((int)0x81A7), - FRAGMENT_DEPTH = ((int)0x8452), - POINT_DISTANCE_ATTENUATION = ((int)0x8129), - TEXTURE_DEPTH_SIZE = ((int)0x884A), - TEXTURE_FILTER_CONTROL = ((int)0x8500), + GENERATE_MIPMAP_HINT = ((int)0x8192), BLEND_SRC_ALPHA = ((int)0x80CB), + TEXTURE_COMPARE_MODE = ((int)0x884C), + FOG_COORDINATE_ARRAY_STRIDE = ((int)0x8455), + TEXTURE_FILTER_CONTROL = ((int)0x8500), + DEPTH_COMPONENT24 = ((int)0x81A6), + FOG_COORDINATE_SOURCE = ((int)0x8450), + POINT_SIZE_MAX = ((int)0x8127), + POINT_DISTANCE_ATTENUATION = ((int)0x8129), + SECONDARY_COLOR_ARRAY_SIZE = ((int)0x845A), + DEPTH_TEXTURE_MODE = ((int)0x884B), + DEPTH_COMPONENT16 = ((int)0x81A5), + FOG_COORDINATE_ARRAY_TYPE = ((int)0x8454), + MIRRORED_REPEAT = ((int)0x8370), + CURRENT_SECONDARY_COLOR = ((int)0x8459), + SECONDARY_COLOR_ARRAY_POINTER = ((int)0x845D), + SECONDARY_COLOR_ARRAY_STRIDE = ((int)0x845C), + DEPTH_COMPONENT32 = ((int)0x81A7), + TEXTURE_COMPARE_FUNC = ((int)0x884D), + TEXTURE_DEPTH_SIZE = ((int)0x884A), + BLEND_DST_ALPHA = ((int)0x80CA), + CURRENT_FOG_COORDINATE = ((int)0x8453), + POINT_FADE_THRESHOLD_SIZE = ((int)0x8128), + COMPARE_R_TO_TEXTURE = ((int)0x884E), + TEXTURE_LOD_BIAS = ((int)0x8501), + FOG_COORDINATE_ARRAY_POINTER = ((int)0x8456), BLEND_SRC_RGB = ((int)0x80C9), + COLOR_SUM = ((int)0x8458), + FOG_COORDINATE = ((int)0x8451), + SECONDARY_COLOR_ARRAY_TYPE = ((int)0x845B), + POINT_SIZE_MIN = ((int)0x8126), + INCR_WRAP = ((int)0x8507), + SECONDARY_COLOR_ARRAY = ((int)0x845E), } public enum VERSION_1_5 { - INDEX_ARRAY_BUFFER_BINDING = ((int)0x8899), - QUERY_COUNTER_BITS = ((int)0x8864), - EDGE_FLAG_ARRAY_BUFFER_BINDING = ((int)0x889B), - TEXTURE_COORD_ARRAY_BUFFER_BINDING = ((int)0x889A), DYNAMIC_READ = ((int)0x88E9), - SRC2_ALPHA = ((int)VERSION_1_3.SOURCE2_ALPHA), - FOG_COORD_ARRAY_STRIDE = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_STRIDE), - BUFFER_MAPPED = ((int)0x88BC), - STATIC_COPY = ((int)0x88E6), - SAMPLES_PASSED = ((int)0x8914), - COLOR_ARRAY_BUFFER_BINDING = ((int)0x8898), - FOG_COORD_ARRAY_POINTER = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_POINTER), - SRC2_RGB = ((int)VERSION_1_3.SOURCE2_RGB), - SRC0_ALPHA = ((int)VERSION_1_3.SOURCE0_ALPHA), - CURRENT_QUERY = ((int)0x8865), - DYNAMIC_DRAW = ((int)0x88E8), - FOG_COORD_SRC = ((int)VERSION_1_4.FOG_COORDINATE_SOURCE), - ARRAY_BUFFER = ((int)0x8892), - FOG_COORDINATE_ARRAY_BUFFER_BINDING = ((int)0x889D), - SECONDARY_COLOR_ARRAY_BUFFER_BINDING = ((int)0x889C), - FOG_COORD = ((int)VERSION_1_4.FOG_COORDINATE), - SRC1_RGB = ((int)VERSION_1_3.SOURCE1_RGB), - SRC1_ALPHA = ((int)VERSION_1_3.SOURCE1_ALPHA), - DYNAMIC_COPY = ((int)0x88EA), - ELEMENT_ARRAY_BUFFER = ((int)0x8893), - BUFFER_SIZE = ((int)0x8764), - STREAM_DRAW = ((int)0x88E0), - STATIC_READ = ((int)0x88E5), - CURRENT_FOG_COORD = ((int)VERSION_1_4.CURRENT_FOG_COORDINATE), - QUERY_RESULT = ((int)0x8866), VERTEX_ARRAY_BUFFER_BINDING = ((int)0x8896), - BUFFER_ACCESS = ((int)0x88BB), - WEIGHT_ARRAY_BUFFER_BINDING = ((int)0x889E), - ELEMENT_ARRAY_BUFFER_BINDING = ((int)0x8895), - FOG_COORD_ARRAY = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY), STREAM_COPY = ((int)0x88E2), - VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = ((int)0x889F), - ARRAY_BUFFER_BINDING = ((int)0x8894), - NORMAL_ARRAY_BUFFER_BINDING = ((int)0x8897), - SRC0_RGB = ((int)VERSION_1_3.SOURCE0_RGB), - STATIC_DRAW = ((int)0x88E4), - FOG_COORD_ARRAY_TYPE = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_TYPE), + FOG_COORD_ARRAY_STRIDE = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_STRIDE), + FOG_COORDINATE_ARRAY_BUFFER_BINDING = ((int)0x889D), READ_WRITE = ((int)0x88BA), - READ_ONLY = ((int)0x88B8), - WRITE_ONLY = ((int)0x88B9), - BUFFER_USAGE = ((int)0x8765), - QUERY_RESULT_AVAILABLE = ((int)0x8867), + SRC1_ALPHA = ((int)VERSION_1_3.SOURCE1_ALPHA), + TEXTURE_COORD_ARRAY_BUFFER_BINDING = ((int)0x889A), BUFFER_MAP_POINTER = ((int)0x88BD), - STREAM_READ = ((int)0x88E1), + QUERY_COUNTER_BITS = ((int)0x8864), + STATIC_COPY = ((int)0x88E6), + STATIC_DRAW = ((int)0x88E4), + SRC2_RGB = ((int)VERSION_1_3.SOURCE2_RGB), + SRC2_ALPHA = ((int)VERSION_1_3.SOURCE2_ALPHA), + FOG_COORD_ARRAY = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY), + FOG_COORD_SRC = ((int)VERSION_1_4.FOG_COORDINATE_SOURCE), + DYNAMIC_COPY = ((int)0x88EA), + STATIC_READ = ((int)0x88E5), FOG_COORD_ARRAY_BUFFER_BINDING = ((int)VERSION_1_5.FOG_COORDINATE_ARRAY_BUFFER_BINDING), + FOG_COORD_ARRAY_POINTER = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_POINTER), + EDGE_FLAG_ARRAY_BUFFER_BINDING = ((int)0x889B), + CURRENT_FOG_COORD = ((int)VERSION_1_4.CURRENT_FOG_COORDINATE), + VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = ((int)0x889F), + READ_ONLY = ((int)0x88B8), + SRC0_ALPHA = ((int)VERSION_1_3.SOURCE0_ALPHA), + ELEMENT_ARRAY_BUFFER = ((int)0x8893), + CURRENT_QUERY = ((int)0x8865), + FOG_COORD = ((int)VERSION_1_4.FOG_COORDINATE), + QUERY_RESULT = ((int)0x8866), + BUFFER_USAGE = ((int)0x8765), + BUFFER_ACCESS = ((int)0x88BB), + STREAM_DRAW = ((int)0x88E0), + SECONDARY_COLOR_ARRAY_BUFFER_BINDING = ((int)0x889C), + SRC0_RGB = ((int)VERSION_1_3.SOURCE0_RGB), + ARRAY_BUFFER_BINDING = ((int)0x8894), + QUERY_RESULT_AVAILABLE = ((int)0x8867), + WRITE_ONLY = ((int)0x88B9), + BUFFER_SIZE = ((int)0x8764), + WEIGHT_ARRAY_BUFFER_BINDING = ((int)0x889E), + SRC1_RGB = ((int)VERSION_1_3.SOURCE1_RGB), + SAMPLES_PASSED = ((int)0x8914), + DYNAMIC_DRAW = ((int)0x88E8), + ARRAY_BUFFER = ((int)0x8892), + NORMAL_ARRAY_BUFFER_BINDING = ((int)0x8897), + COLOR_ARRAY_BUFFER_BINDING = ((int)0x8898), + INDEX_ARRAY_BUFFER_BINDING = ((int)0x8899), + BUFFER_MAPPED = ((int)0x88BC), + ELEMENT_ARRAY_BUFFER_BINDING = ((int)0x8895), + STREAM_READ = ((int)0x88E1), + FOG_COORD_ARRAY_TYPE = ((int)VERSION_1_4.FOG_COORDINATE_ARRAY_TYPE), } public enum VERSION_2_0 { - FLOAT_VEC2 = ((int)0x8B50), - FLOAT_MAT3 = ((int)0x8B5B), - INT_VEC3 = ((int)0x8B54), - MAX_VERTEX_ATTRIBS = ((int)0x8869), - SAMPLER_1D_SHADOW = ((int)0x8B61), - DRAW_BUFFER5 = ((int)0x882A), - VERTEX_PROGRAM_POINT_SIZE = ((int)0x8642), - ACTIVE_UNIFORMS = ((int)0x8B86), - DRAW_BUFFER7 = ((int)0x882C), - DRAW_BUFFER6 = ((int)0x882B), - STENCIL_BACK_VALUE_MASK = ((int)0x8CA4), - BOOL_VEC3 = ((int)0x8B58), - BOOL_VEC2 = ((int)0x8B57), - SHADING_LANGUAGE_VERSION = ((int)0x8B8C), - BLEND_EQUATION_RGB = ((int)ARB_imaging.BLEND_EQUATION), - ATTACHED_SHADERS = ((int)0x8B85), - BOOL = ((int)0x8B56), - SHADER_SOURCE_LENGTH = ((int)0x8B88), - SAMPLER_3D = ((int)0x8B5F), - MAX_VERTEX_TEXTURE_IMAGE_UNITS = ((int)0x8B4C), - INT_VEC2 = ((int)0x8B53), - LINK_STATUS = ((int)0x8B82), - DRAW_BUFFER1 = ((int)0x8826), - POINT_SPRITE_COORD_ORIGIN = ((int)0x8CA0), - FLOAT_VEC4 = ((int)0x8B52), - SAMPLER_2D_SHADOW = ((int)0x8B62), - SAMPLER_2D = ((int)0x8B5E), - DRAW_BUFFER2 = ((int)0x8827), - SAMPLER_1D = ((int)0x8B5D), - STENCIL_BACK_WRITEMASK = ((int)0x8CA5), - DRAW_BUFFER0 = ((int)0x8825), - MAX_FRAGMENT_UNIFORM_COMPONENTS = ((int)0x8B49), - ACTIVE_ATTRIBUTES = ((int)0x8B89), - INFO_LOG_LENGTH = ((int)0x8B84), - DRAW_BUFFER8 = ((int)0x882D), - BLEND_EQUATION_ALPHA = ((int)0x883D), - BOOL_VEC4 = ((int)0x8B59), - MAX_VERTEX_UNIFORM_COMPONENTS = ((int)0x8B4A), - UPPER_LEFT = ((int)0x8CA2), - LOWER_LEFT = ((int)0x8CA1), - STENCIL_BACK_FAIL = ((int)0x8801), - CURRENT_VERTEX_ATTRIB = ((int)0x8626), - FLOAT_MAT2 = ((int)0x8B5A), - VERTEX_ATTRIB_ARRAY_NORMALIZED = ((int)0x886A), - COMPILE_STATUS = ((int)0x8B81), - STENCIL_BACK_PASS_DEPTH_PASS = ((int)0x8803), MAX_VARYING_FLOATS = ((int)0x8B4B), - SHADER_TYPE = ((int)0x8B4F), - INT_VEC4 = ((int)0x8B55), - DRAW_BUFFER3 = ((int)0x8828), - DELETE_STATUS = ((int)0x8B80), + VERTEX_ATTRIB_ARRAY_POINTER = ((int)0x8645), + VERTEX_ATTRIB_ARRAY_ENABLED = ((int)0x8622), + DRAW_BUFFER13 = ((int)0x8832), + VERTEX_PROGRAM_POINT_SIZE = ((int)0x8642), + MAX_VERTEX_TEXTURE_IMAGE_UNITS = ((int)0x8B4C), + MAX_TEXTURE_COORDS = ((int)0x8871), + FLOAT_MAT4 = ((int)0x8B5C), + SAMPLER_3D = ((int)0x8B5F), + SAMPLER_1D_SHADOW = ((int)0x8B61), + SAMPLER_1D = ((int)0x8B5D), + ATTACHED_SHADERS = ((int)0x8B85), + ACTIVE_ATTRIBUTES = ((int)0x8B89), + LINK_STATUS = ((int)0x8B82), + FLOAT_VEC4 = ((int)0x8B52), + DRAW_BUFFER4 = ((int)0x8829), + DRAW_BUFFER8 = ((int)0x882D), + MAX_DRAW_BUFFERS = ((int)0x8824), + INT_VEC2 = ((int)0x8B53), + POINT_SPRITE_COORD_ORIGIN = ((int)0x8CA0), + MAX_FRAGMENT_UNIFORM_COMPONENTS = ((int)0x8B49), + SAMPLER_CUBE = ((int)0x8B60), + DRAW_BUFFER12 = ((int)0x8831), DRAW_BUFFER11 = ((int)0x8830), DRAW_BUFFER10 = ((int)0x882F), - DRAW_BUFFER13 = ((int)0x8832), - DRAW_BUFFER12 = ((int)0x8831), + FRAGMENT_SHADER = ((int)0x8B30), + STENCIL_BACK_REF = ((int)0x8CA3), DRAW_BUFFER15 = ((int)0x8834), DRAW_BUFFER14 = ((int)0x8833), - FRAGMENT_SHADER = ((int)0x8B30), - VALIDATE_STATUS = ((int)0x8B83), - MAX_DRAW_BUFFERS = ((int)0x8824), - VERTEX_ATTRIB_ARRAY_SIZE = ((int)0x8623), - DRAW_BUFFER4 = ((int)0x8829), - VERTEX_PROGRAM_TWO_SIDE = ((int)0x8643), - ACTIVE_UNIFORM_MAX_LENGTH = ((int)0x8B87), - MAX_COMBINED_TEXTURE_IMAGE_UNITS = ((int)0x8B4D), + BOOL = ((int)0x8B56), + CURRENT_VERTEX_ATTRIB = ((int)0x8626), + ACTIVE_ATTRIBUTE_MAX_LENGTH = ((int)0x8B8A), + FLOAT_MAT2 = ((int)0x8B5A), + ACTIVE_UNIFORMS = ((int)0x8B86), + SAMPLER_2D = ((int)0x8B5E), + INFO_LOG_LENGTH = ((int)0x8B84), + MAX_VERTEX_ATTRIBS = ((int)0x8869), + DRAW_BUFFER0 = ((int)0x8825), + CURRENT_PROGRAM = ((int)0x8B8D), + SHADING_LANGUAGE_VERSION = ((int)0x8B8C), FLOAT_VEC3 = ((int)0x8B51), + DRAW_BUFFER5 = ((int)0x882A), + DRAW_BUFFER9 = ((int)0x882E), + STENCIL_BACK_FUNC = ((int)0x8800), + COMPILE_STATUS = ((int)0x8B81), + INT_VEC3 = ((int)0x8B54), + STENCIL_BACK_PASS_DEPTH_FAIL = ((int)0x8802), + VERTEX_ATTRIB_ARRAY_SIZE = ((int)0x8623), + BLEND_EQUATION_ALPHA = ((int)0x883D), + STENCIL_BACK_PASS_DEPTH_PASS = ((int)0x8803), + UPPER_LEFT = ((int)0x8CA2), + VERTEX_ATTRIB_ARRAY_STRIDE = ((int)0x8624), + FLOAT_MAT3 = ((int)0x8B5B), + SAMPLER_2D_SHADOW = ((int)0x8B62), + VERTEX_ATTRIB_ARRAY_NORMALIZED = ((int)0x886A), FRAGMENT_SHADER_DERIVATIVE_HINT = ((int)0x8B8B), - VERTEX_ATTRIB_ARRAY_ENABLED = ((int)0x8622), + BLEND_EQUATION_RGB = ((int)ARB_imaging.BLEND_EQUATION), + DRAW_BUFFER2 = ((int)0x8827), + SHADER_SOURCE_LENGTH = ((int)0x8B88), + DRAW_BUFFER7 = ((int)0x882C), + SHADER_TYPE = ((int)0x8B4F), + DRAW_BUFFER1 = ((int)0x8826), + MAX_TEXTURE_IMAGE_UNITS = ((int)0x8872), + POINT_SPRITE = ((int)0x8861), + DRAW_BUFFER6 = ((int)0x882B), + STENCIL_BACK_WRITEMASK = ((int)0x8CA5), + STENCIL_BACK_VALUE_MASK = ((int)0x8CA4), COORD_REPLACE = ((int)0x8862), VERTEX_ATTRIB_ARRAY_TYPE = ((int)0x8625), - MAX_TEXTURE_IMAGE_UNITS = ((int)0x8872), - VERTEX_ATTRIB_ARRAY_POINTER = ((int)0x8645), - ACTIVE_ATTRIBUTE_MAX_LENGTH = ((int)0x8B8A), - MAX_TEXTURE_COORDS = ((int)0x8871), - STENCIL_BACK_PASS_DEPTH_FAIL = ((int)0x8802), - POINT_SPRITE = ((int)0x8861), + LOWER_LEFT = ((int)0x8CA1), + INT_VEC4 = ((int)0x8B55), + FLOAT_VEC2 = ((int)0x8B50), + MAX_VERTEX_UNIFORM_COMPONENTS = ((int)0x8B4A), + VALIDATE_STATUS = ((int)0x8B83), VERTEX_SHADER = ((int)0x8B31), - DRAW_BUFFER9 = ((int)0x882E), - VERTEX_ATTRIB_ARRAY_STRIDE = ((int)0x8624), - SAMPLER_CUBE = ((int)0x8B60), - STENCIL_BACK_FUNC = ((int)0x8800), - STENCIL_BACK_REF = ((int)0x8CA3), - CURRENT_PROGRAM = ((int)0x8B8D), - FLOAT_MAT4 = ((int)0x8B5C), + MAX_COMBINED_TEXTURE_IMAGE_UNITS = ((int)0x8B4D), + VERTEX_PROGRAM_TWO_SIDE = ((int)0x8643), + DELETE_STATUS = ((int)0x8B80), + STENCIL_BACK_FAIL = ((int)0x8801), + ACTIVE_UNIFORM_MAX_LENGTH = ((int)0x8B87), + DRAW_BUFFER3 = ((int)0x8828), + BOOL_VEC4 = ((int)0x8B59), + BOOL_VEC3 = ((int)0x8B58), + BOOL_VEC2 = ((int)0x8B57), } public enum VERSION_2_1 { - PIXEL_PACK_BUFFER = ((int)0x88EB), - COMPRESSED_SLUMINANCE_ALPHA = ((int)0x8C4B), - COMPRESSED_SRGB = ((int)0x8C48), - PIXEL_UNPACK_BUFFER = ((int)0x88EC), - SLUMINANCE_ALPHA = ((int)0x8C44), - SLUMINANCE8_ALPHA8 = ((int)0x8C45), - FLOAT_MAT4x3 = ((int)0x8B6A), - PIXEL_UNPACK_BUFFER_BINDING = ((int)0x88EF), - SRGB8_ALPHA8 = ((int)0x8C43), - SLUMINANCE8 = ((int)0x8C47), - FLOAT_MAT3x4 = ((int)0x8B68), - PIXEL_PACK_BUFFER_BINDING = ((int)0x88ED), FLOAT_MAT3x2 = ((int)0x8B67), - CURRENT_RASTER_SECONDARY_COLOR = ((int)0x845F), - SRGB = ((int)0x8C40), - FLOAT_MAT4x2 = ((int)0x8B69), SRGB8 = ((int)0x8C41), - SLUMINANCE = ((int)0x8C46), + FLOAT_MAT3x4 = ((int)0x8B68), COMPRESSED_SRGB_ALPHA = ((int)0x8C49), - COMPRESSED_SLUMINANCE = ((int)0x8C4A), - FLOAT_MAT2x4 = ((int)0x8B66), - FLOAT_MAT2x3 = ((int)0x8B65), + FLOAT_MAT4x3 = ((int)0x8B6A), + SLUMINANCE_ALPHA = ((int)0x8C44), + PIXEL_UNPACK_BUFFER = ((int)0x88EC), SRGB_ALPHA = ((int)0x8C42), + COMPRESSED_SLUMINANCE = ((int)0x8C4A), + FLOAT_MAT4x2 = ((int)0x8B69), + SRGB8_ALPHA8 = ((int)0x8C43), + COMPRESSED_SLUMINANCE_ALPHA = ((int)0x8C4B), + PIXEL_UNPACK_BUFFER_BINDING = ((int)0x88EF), + PIXEL_PACK_BUFFER = ((int)0x88EB), + FLOAT_MAT2x3 = ((int)0x8B65), + COMPRESSED_SRGB = ((int)0x8C48), + PIXEL_PACK_BUFFER_BINDING = ((int)0x88ED), + SRGB = ((int)0x8C40), + SLUMINANCE8 = ((int)0x8C47), + SLUMINANCE = ((int)0x8C46), + FLOAT_MAT2x4 = ((int)0x8B66), + SLUMINANCE8_ALPHA8 = ((int)0x8C45), + CURRENT_RASTER_SECONDARY_COLOR = ((int)0x845F), } public enum ARB_multitexture { - TEXTURE22_ARB = ((int)0x84D6), - CLIENT_ACTIVE_TEXTURE_ARB = ((int)0x84E1), - TEXTURE8_ARB = ((int)0x84C8), - TEXTURE23_ARB = ((int)0x84D7), - TEXTURE30_ARB = ((int)0x84DE), + TEXTURE13_ARB = ((int)0x84CD), + TEXTURE7_ARB = ((int)0x84C7), + TEXTURE21_ARB = ((int)0x84D5), TEXTURE24_ARB = ((int)0x84D8), - TEXTURE16_ARB = ((int)0x84D0), TEXTURE19_ARB = ((int)0x84D3), - TEXTURE17_ARB = ((int)0x84D1), - TEXTURE31_ARB = ((int)0x84DF), - TEXTURE3_ARB = ((int)0x84C3), - TEXTURE28_ARB = ((int)0x84DC), - TEXTURE0_ARB = ((int)0x84C0), - TEXTURE26_ARB = ((int)0x84DA), - TEXTURE29_ARB = ((int)0x84DD), - MAX_TEXTURE_UNITS_ARB = ((int)0x84E2), - TEXTURE4_ARB = ((int)0x84C4), - TEXTURE27_ARB = ((int)0x84DB), - TEXTURE25_ARB = ((int)0x84D9), - TEXTURE18_ARB = ((int)0x84D2), - TEXTURE1_ARB = ((int)0x84C1), TEXTURE5_ARB = ((int)0x84C5), + TEXTURE16_ARB = ((int)0x84D0), + TEXTURE27_ARB = ((int)0x84DB), + TEXTURE17_ARB = ((int)0x84D1), + MAX_TEXTURE_UNITS_ARB = ((int)0x84E2), + TEXTURE2_ARB = ((int)0x84C2), + TEXTURE20_ARB = ((int)0x84D4), + TEXTURE31_ARB = ((int)0x84DF), + TEXTURE12_ARB = ((int)0x84CC), + TEXTURE18_ARB = ((int)0x84D2), + TEXTURE15_ARB = ((int)0x84CF), TEXTURE10_ARB = ((int)0x84CA), ACTIVE_TEXTURE_ARB = ((int)0x84E0), - TEXTURE2_ARB = ((int)0x84C2), - TEXTURE6_ARB = ((int)0x84C6), + TEXTURE23_ARB = ((int)0x84D7), + TEXTURE0_ARB = ((int)0x84C0), + TEXTURE29_ARB = ((int)0x84DD), + TEXTURE26_ARB = ((int)0x84DA), + TEXTURE8_ARB = ((int)0x84C8), + TEXTURE3_ARB = ((int)0x84C3), + TEXTURE30_ARB = ((int)0x84DE), TEXTURE11_ARB = ((int)0x84CB), - TEXTURE20_ARB = ((int)0x84D4), - TEXTURE12_ARB = ((int)0x84CC), TEXTURE9_ARB = ((int)0x84C9), - TEXTURE13_ARB = ((int)0x84CD), - TEXTURE21_ARB = ((int)0x84D5), + CLIENT_ACTIVE_TEXTURE_ARB = ((int)0x84E1), TEXTURE14_ARB = ((int)0x84CE), - TEXTURE7_ARB = ((int)0x84C7), - TEXTURE15_ARB = ((int)0x84CF), + TEXTURE6_ARB = ((int)0x84C6), + TEXTURE22_ARB = ((int)0x84D6), + TEXTURE28_ARB = ((int)0x84DC), + TEXTURE25_ARB = ((int)0x84D9), + TEXTURE1_ARB = ((int)0x84C1), + TEXTURE4_ARB = ((int)0x84C4), } public enum ARB_transpose_matrix { + TRANSPOSE_TEXTURE_MATRIX_ARB = ((int)0x84E5), + TRANSPOSE_PROJECTION_MATRIX_ARB = ((int)0x84E4), TRANSPOSE_COLOR_MATRIX_ARB = ((int)0x84E6), TRANSPOSE_MODELVIEW_MATRIX_ARB = ((int)0x84E3), - TRANSPOSE_PROJECTION_MATRIX_ARB = ((int)0x84E4), - TRANSPOSE_TEXTURE_MATRIX_ARB = ((int)0x84E5), } public enum ARB_texture_env_add @@ -6031,33 +6031,33 @@ namespace OpenTK.OpenGL public enum ARB_texture_cube_map { + TEXTURE_CUBE_MAP_POSITIVE_Y_ARB = ((int)0x8517), + TEXTURE_CUBE_MAP_NEGATIVE_X_ARB = ((int)0x8516), + TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB = ((int)0x8518), TEXTURE_CUBE_MAP_POSITIVE_X_ARB = ((int)0x8515), + TEXTURE_CUBE_MAP_ARB = ((int)0x8513), TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB = ((int)0x851A), MAX_CUBE_MAP_TEXTURE_SIZE_ARB = ((int)0x851C), - TEXTURE_CUBE_MAP_POSITIVE_Z_ARB = ((int)0x8519), - TEXTURE_CUBE_MAP_NEGATIVE_X_ARB = ((int)0x8516), REFLECTION_MAP_ARB = ((int)0x8512), - TEXTURE_CUBE_MAP_POSITIVE_Y_ARB = ((int)0x8517), - PROXY_TEXTURE_CUBE_MAP_ARB = ((int)0x851B), - TEXTURE_CUBE_MAP_ARB = ((int)0x8513), - TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB = ((int)0x8518), TEXTURE_BINDING_CUBE_MAP_ARB = ((int)0x8514), NORMAL_MAP_ARB = ((int)0x8511), + PROXY_TEXTURE_CUBE_MAP_ARB = ((int)0x851B), + TEXTURE_CUBE_MAP_POSITIVE_Z_ARB = ((int)0x8519), } public enum ARB_texture_compression { - COMPRESSED_TEXTURE_FORMATS_ARB = ((int)0x86A3), - TEXTURE_COMPRESSED_IMAGE_SIZE_ARB = ((int)0x86A0), - COMPRESSED_INTENSITY_ARB = ((int)0x84EC), - NUM_COMPRESSED_TEXTURE_FORMATS_ARB = ((int)0x86A2), COMPRESSED_LUMINANCE_ARB = ((int)0x84EA), - COMPRESSED_LUMINANCE_ALPHA_ARB = ((int)0x84EB), + COMPRESSED_INTENSITY_ARB = ((int)0x84EC), TEXTURE_COMPRESSION_HINT_ARB = ((int)0x84EF), - COMPRESSED_ALPHA_ARB = ((int)0x84E9), - TEXTURE_COMPRESSED_ARB = ((int)0x86A1), - COMPRESSED_RGBA_ARB = ((int)0x84EE), + TEXTURE_COMPRESSED_IMAGE_SIZE_ARB = ((int)0x86A0), + COMPRESSED_TEXTURE_FORMATS_ARB = ((int)0x86A3), COMPRESSED_RGB_ARB = ((int)0x84ED), + NUM_COMPRESSED_TEXTURE_FORMATS_ARB = ((int)0x86A2), + COMPRESSED_LUMINANCE_ALPHA_ARB = ((int)0x84EB), + TEXTURE_COMPRESSED_ARB = ((int)0x86A1), + COMPRESSED_ALPHA_ARB = ((int)0x84E9), + COMPRESSED_RGBA_ARB = ((int)0x84EE), } public enum ARB_texture_border_clamp @@ -6067,96 +6067,96 @@ namespace OpenTK.OpenGL public enum ARB_point_parameters { - POINT_SIZE_MIN_ARB = ((int)0x8126), POINT_DISTANCE_ATTENUATION_ARB = ((int)0x8129), POINT_FADE_THRESHOLD_SIZE_ARB = ((int)0x8128), + POINT_SIZE_MIN_ARB = ((int)0x8126), POINT_SIZE_MAX_ARB = ((int)0x8127), } public enum ARB_vertex_blend { - MODELVIEW18_ARB = ((int)0x8732), - WEIGHT_ARRAY_POINTER_ARB = ((int)0x86AC), - MODELVIEW31_ARB = ((int)0x873F), - MODELVIEW2_ARB = ((int)0x8722), - MODELVIEW17_ARB = ((int)0x8731), + MODELVIEW5_ARB = ((int)0x8725), + MODELVIEW0_ARB = ((int)0x1700), + ACTIVE_VERTEX_UNITS_ARB = ((int)0x86A5), MODELVIEW6_ARB = ((int)0x8726), - MODELVIEW27_ARB = ((int)0x873B), - MODELVIEW16_ARB = ((int)0x8730), - MODELVIEW30_ARB = ((int)0x873E), - WEIGHT_SUM_UNITY_ARB = ((int)0x86A6), - MODELVIEW29_ARB = ((int)0x873D), + MODELVIEW4_ARB = ((int)0x8724), + WEIGHT_ARRAY_ARB = ((int)0x86AD), MODELVIEW15_ARB = ((int)0x872F), + MODELVIEW10_ARB = ((int)0x872A), + MODELVIEW16_ARB = ((int)0x8730), + MODELVIEW21_ARB = ((int)0x8735), + MODELVIEW22_ARB = ((int)0x8736), + WEIGHT_ARRAY_POINTER_ARB = ((int)0x86AC), + WEIGHT_SUM_UNITY_ARB = ((int)0x86A6), + MODELVIEW1_ARB = ((int)0x850A), + MODELVIEW29_ARB = ((int)0x873D), + MODELVIEW11_ARB = ((int)0x872B), + MODELVIEW12_ARB = ((int)0x872C), + MODELVIEW19_ARB = ((int)0x8733), + VERTEX_BLEND_ARB = ((int)0x86A7), + MODELVIEW26_ARB = ((int)0x873A), + MODELVIEW17_ARB = ((int)0x8731), + CURRENT_WEIGHT_ARB = ((int)0x86A8), + MODELVIEW27_ARB = ((int)0x873B), + MODELVIEW23_ARB = ((int)0x8737), WEIGHT_ARRAY_SIZE_ARB = ((int)0x86AB), - MODELVIEW28_ARB = ((int)0x873C), - MODELVIEW3_ARB = ((int)0x8723), - MODELVIEW14_ARB = ((int)0x872E), + MAX_VERTEX_UNITS_ARB = ((int)0x86A4), MODELVIEW7_ARB = ((int)0x8727), MODELVIEW13_ARB = ((int)0x872D), - MODELVIEW12_ARB = ((int)0x872C), - MODELVIEW26_ARB = ((int)0x873A), - MODELVIEW9_ARB = ((int)0x8729), - MODELVIEW0_ARB = ((int)0x1700), - MODELVIEW4_ARB = ((int)0x8724), - VERTEX_BLEND_ARB = ((int)0x86A7), - WEIGHT_ARRAY_STRIDE_ARB = ((int)0x86AA), - MODELVIEW8_ARB = ((int)0x8728), - MODELVIEW11_ARB = ((int)0x872B), - ACTIVE_VERTEX_UNITS_ARB = ((int)0x86A5), - WEIGHT_ARRAY_TYPE_ARB = ((int)0x86A9), - MODELVIEW24_ARB = ((int)0x8738), - MODELVIEW10_ARB = ((int)0x872A), - MODELVIEW23_ARB = ((int)0x8737), - MODELVIEW22_ARB = ((int)0x8736), - MODELVIEW1_ARB = ((int)0x850A), - MODELVIEW5_ARB = ((int)0x8725), - MAX_VERTEX_UNITS_ARB = ((int)0x86A4), - MODELVIEW21_ARB = ((int)0x8735), - CURRENT_WEIGHT_ARB = ((int)0x86A8), + MODELVIEW28_ARB = ((int)0x873C), MODELVIEW25_ARB = ((int)0x8739), + WEIGHT_ARRAY_TYPE_ARB = ((int)0x86A9), + MODELVIEW8_ARB = ((int)0x8728), + WEIGHT_ARRAY_STRIDE_ARB = ((int)0x86AA), + MODELVIEW18_ARB = ((int)0x8732), + MODELVIEW9_ARB = ((int)0x8729), + MODELVIEW24_ARB = ((int)0x8738), + MODELVIEW14_ARB = ((int)0x872E), MODELVIEW20_ARB = ((int)0x8734), - MODELVIEW19_ARB = ((int)0x8733), - WEIGHT_ARRAY_ARB = ((int)0x86AD), + MODELVIEW31_ARB = ((int)0x873F), + MODELVIEW30_ARB = ((int)0x873E), + MODELVIEW2_ARB = ((int)0x8722), + MODELVIEW3_ARB = ((int)0x8723), } public enum ARB_matrix_palette { - MATRIX_INDEX_ARRAY_ARB = ((int)0x8844), - MATRIX_INDEX_ARRAY_TYPE_ARB = ((int)0x8847), - CURRENT_MATRIX_INDEX_ARB = ((int)0x8845), MAX_PALETTE_MATRICES_ARB = ((int)0x8842), + CURRENT_MATRIX_INDEX_ARB = ((int)0x8845), MATRIX_INDEX_ARRAY_POINTER_ARB = ((int)0x8849), - MAX_MATRIX_PALETTE_STACK_DEPTH_ARB = ((int)0x8841), + MATRIX_INDEX_ARRAY_ARB = ((int)0x8844), MATRIX_INDEX_ARRAY_SIZE_ARB = ((int)0x8846), - MATRIX_INDEX_ARRAY_STRIDE_ARB = ((int)0x8848), - MATRIX_PALETTE_ARB = ((int)0x8840), CURRENT_PALETTE_MATRIX_ARB = ((int)0x8843), + MAX_MATRIX_PALETTE_STACK_DEPTH_ARB = ((int)0x8841), + MATRIX_PALETTE_ARB = ((int)0x8840), + MATRIX_INDEX_ARRAY_STRIDE_ARB = ((int)0x8848), + MATRIX_INDEX_ARRAY_TYPE_ARB = ((int)0x8847), } public enum ARB_texture_env_combine { - SOURCE1_ALPHA_ARB = ((int)0x8589), - OPERAND2_ALPHA_ARB = ((int)0x859A), - OPERAND2_RGB_ARB = ((int)0x8592), - PREVIOUS_ARB = ((int)0x8578), - SOURCE2_ALPHA_ARB = ((int)0x858A), - COMBINE_RGB_ARB = ((int)0x8571), + SOURCE2_RGB_ARB = ((int)0x8582), + OPERAND0_ALPHA_ARB = ((int)0x8598), + COMBINE_ARB = ((int)0x8570), + SOURCE1_RGB_ARB = ((int)0x8581), + ADD_SIGNED_ARB = ((int)0x8574), SUBTRACT_ARB = ((int)0x84E7), - OPERAND0_RGB_ARB = ((int)0x8590), - INTERPOLATE_ARB = ((int)0x8575), - OPERAND1_ALPHA_ARB = ((int)0x8599), - OPERAND1_RGB_ARB = ((int)0x8591), - COMBINE_ALPHA_ARB = ((int)0x8572), PRIMARY_COLOR_ARB = ((int)0x8577), + SOURCE2_ALPHA_ARB = ((int)0x858A), + OPERAND1_RGB_ARB = ((int)0x8591), + OPERAND0_RGB_ARB = ((int)0x8590), + OPERAND2_ALPHA_ARB = ((int)0x859A), CONSTANT_ARB = ((int)0x8576), SOURCE0_ALPHA_ARB = ((int)0x8588), + INTERPOLATE_ARB = ((int)0x8575), + PREVIOUS_ARB = ((int)0x8578), + OPERAND2_RGB_ARB = ((int)0x8592), + COMBINE_RGB_ARB = ((int)0x8571), + SOURCE1_ALPHA_ARB = ((int)0x8589), SOURCE0_RGB_ARB = ((int)0x8580), + COMBINE_ALPHA_ARB = ((int)0x8572), + OPERAND1_ALPHA_ARB = ((int)0x8599), RGB_SCALE_ARB = ((int)0x8573), - SOURCE2_RGB_ARB = ((int)0x8582), - ADD_SIGNED_ARB = ((int)0x8574), - SOURCE1_RGB_ARB = ((int)0x8581), - COMBINE_ARB = ((int)0x8570), - OPERAND0_ALPHA_ARB = ((int)0x8598), } public enum ARB_texture_env_crossbar @@ -6165,8 +6165,8 @@ namespace OpenTK.OpenGL public enum ARB_texture_env_dot3 { - DOT3_RGBA_ARB = ((int)0x86AF), DOT3_RGB_ARB = ((int)0x86AE), + DOT3_RGBA_ARB = ((int)0x86AF), } public enum ARB_texture_mirrored_repeat @@ -6178,16 +6178,16 @@ namespace OpenTK.OpenGL { DEPTH_TEXTURE_MODE_ARB = ((int)0x884B), DEPTH_COMPONENT16_ARB = ((int)0x81A5), - DEPTH_COMPONENT32_ARB = ((int)0x81A7), DEPTH_COMPONENT24_ARB = ((int)0x81A6), + DEPTH_COMPONENT32_ARB = ((int)0x81A7), TEXTURE_DEPTH_SIZE_ARB = ((int)0x884A), } public enum ARB_shadow { - COMPARE_R_TO_TEXTURE_ARB = ((int)0x884E), TEXTURE_COMPARE_MODE_ARB = ((int)0x884C), TEXTURE_COMPARE_FUNC_ARB = ((int)0x884D), + COMPARE_R_TO_TEXTURE_ARB = ((int)0x884E), } public enum ARB_shadow_ambient @@ -6201,204 +6201,204 @@ namespace OpenTK.OpenGL public enum ARB_vertex_program { - MATRIX11_ARB = ((int)0x88CB), - MATRIX10_ARB = ((int)0x88CA), - MATRIX27_ARB = ((int)0x88DB), - MAX_PROGRAM_ATTRIBS_ARB = ((int)0x88AD), - MAX_PROGRAM_PARAMETERS_ARB = ((int)0x88A9), - PROGRAM_PARAMETERS_ARB = ((int)0x88A8), - MATRIX4_ARB = ((int)0x88C4), - MATRIX2_ARB = ((int)0x88C2), - MAX_VERTEX_ATTRIBS_ARB = ((int)0x8869), - MATRIX31_ARB = ((int)0x88DF), - PROGRAM_NATIVE_ATTRIBS_ARB = ((int)0x88AE), - PROGRAM_LENGTH_ARB = ((int)0x8627), - MATRIX3_ARB = ((int)0x88C3), - MATRIX21_ARB = ((int)0x88D5), - MATRIX20_ARB = ((int)0x88D4), - MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = ((int)0x88B3), - MAX_PROGRAM_MATRICES_ARB = ((int)0x862F), - VERTEX_ATTRIB_ARRAY_TYPE_ARB = ((int)0x8625), - PROGRAM_NATIVE_INSTRUCTIONS_ARB = ((int)0x88A2), - MAX_PROGRAM_INSTRUCTIONS_ARB = ((int)0x88A1), - MATRIX13_ARB = ((int)0x88CD), - MATRIX12_ARB = ((int)0x88CC), - MATRIX7_ARB = ((int)0x88C7), - PROGRAM_ERROR_POSITION_ARB = ((int)0x864B), - PROGRAM_BINDING_ARB = ((int)0x8677), - MATRIX6_ARB = ((int)0x88C6), - MAX_PROGRAM_NATIVE_ATTRIBS_ARB = ((int)0x88AF), - PROGRAM_TEMPORARIES_ARB = ((int)0x88A4), VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB = ((int)0x886A), - PROGRAM_ATTRIBS_ARB = ((int)0x88AC), - MAX_PROGRAM_NATIVE_PARAMETERS_ARB = ((int)0x88AB), - MATRIX23_ARB = ((int)0x88D7), - MATRIX22_ARB = ((int)0x88D6), - MATRIX8_ARB = ((int)0x88C8), - MATRIX15_ARB = ((int)0x88CF), - MATRIX14_ARB = ((int)0x88CE), - MATRIX1_ARB = ((int)0x88C1), - PROGRAM_FORMAT_ASCII_ARB = ((int)0x8875), - VERTEX_ATTRIB_ARRAY_ENABLED_ARB = ((int)0x8622), - MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB = ((int)0x862E), - PROGRAM_NATIVE_PARAMETERS_ARB = ((int)0x88AA), - MATRIX28_ARB = ((int)0x88DC), - MAX_PROGRAM_ADDRESS_REGISTERS_ARB = ((int)0x88B1), - MAX_PROGRAM_LOCAL_PARAMETERS_ARB = ((int)0x88B4), - MATRIX25_ARB = ((int)0x88D9), + MATRIX9_ARB = ((int)0x88C9), MATRIX24_ARB = ((int)0x88D8), - CURRENT_MATRIX_STACK_DEPTH_ARB = ((int)0x8640), - COLOR_SUM_ARB = ((int)0x8458), - VERTEX_PROGRAM_TWO_SIDE_ARB = ((int)0x8643), - MAX_PROGRAM_NATIVE_TEMPORARIES_ARB = ((int)0x88A7), - VERTEX_PROGRAM_POINT_SIZE_ARB = ((int)0x8642), + MATRIX25_ARB = ((int)0x88D9), TRANSPOSE_CURRENT_MATRIX_ARB = ((int)0x88B7), - MATRIX17_ARB = ((int)0x88D1), - MATRIX16_ARB = ((int)0x88D0), + MAX_PROGRAM_NATIVE_PARAMETERS_ARB = ((int)0x88AB), + MATRIX22_ARB = ((int)0x88D6), + MAX_PROGRAM_MATRICES_ARB = ((int)0x862F), + PROGRAM_NATIVE_PARAMETERS_ARB = ((int)0x88AA), + PROGRAM_NATIVE_INSTRUCTIONS_ARB = ((int)0x88A2), + MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = ((int)0x88B3), + PROGRAM_FORMAT_ARB = ((int)0x8876), + MATRIX8_ARB = ((int)0x88C8), + MAX_PROGRAM_PARAMETERS_ARB = ((int)0x88A9), + MATRIX13_ARB = ((int)0x88CD), + MATRIX31_ARB = ((int)0x88DF), + MATRIX6_ARB = ((int)0x88C6), + MATRIX27_ARB = ((int)0x88DB), + MATRIX7_ARB = ((int)0x88C7), + PROGRAM_ERROR_STRING_ARB = ((int)0x8874), + PROGRAM_PARAMETERS_ARB = ((int)0x88A8), + PROGRAM_BINDING_ARB = ((int)0x8677), + VERTEX_PROGRAM_POINT_SIZE_ARB = ((int)0x8642), + PROGRAM_UNDER_NATIVE_LIMITS_ARB = ((int)0x88B6), + CURRENT_VERTEX_ATTRIB_ARB = ((int)0x8626), + MAX_PROGRAM_LOCAL_PARAMETERS_ARB = ((int)0x88B4), + MATRIX12_ARB = ((int)0x88CC), + PROGRAM_STRING_ARB = ((int)0x8628), + PROGRAM_INSTRUCTIONS_ARB = ((int)0x88A0), + MAX_PROGRAM_ENV_PARAMETERS_ARB = ((int)0x88B5), + VERTEX_ATTRIB_ARRAY_SIZE_ARB = ((int)0x8623), + MATRIX26_ARB = ((int)0x88DA), + MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB = ((int)0x88A3), + MATRIX4_ARB = ((int)0x88C4), + CURRENT_MATRIX_STACK_DEPTH_ARB = ((int)0x8640), + VERTEX_PROGRAM_TWO_SIDE_ARB = ((int)0x8643), + VERTEX_ATTRIB_ARRAY_TYPE_ARB = ((int)0x8625), + PROGRAM_ADDRESS_REGISTERS_ARB = ((int)0x88B0), + MATRIX2_ARB = ((int)0x88C2), + MATRIX5_ARB = ((int)0x88C5), + PROGRAM_ATTRIBS_ARB = ((int)0x88AC), + MATRIX14_ARB = ((int)0x88CE), + VERTEX_ATTRIB_ARRAY_STRIDE_ARB = ((int)0x8624), + MAX_PROGRAM_INSTRUCTIONS_ARB = ((int)0x88A1), + MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB = ((int)0x862E), + MATRIX3_ARB = ((int)0x88C3), + PROGRAM_TEMPORARIES_ARB = ((int)0x88A4), + MATRIX28_ARB = ((int)0x88DC), + MATRIX29_ARB = ((int)0x88DD), + MAX_VERTEX_ATTRIBS_ARB = ((int)0x8869), + MATRIX20_ARB = ((int)0x88D4), + MATRIX21_ARB = ((int)0x88D5), + MAX_PROGRAM_ATTRIBS_ARB = ((int)0x88AD), + PROGRAM_ERROR_POSITION_ARB = ((int)0x864B), + PROGRAM_FORMAT_ASCII_ARB = ((int)0x8875), + MAX_PROGRAM_TEMPORARIES_ARB = ((int)0x88A5), + PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = ((int)0x88B2), + VERTEX_ATTRIB_ARRAY_ENABLED_ARB = ((int)0x8622), VERTEX_ATTRIB_ARRAY_POINTER_ARB = ((int)0x8645), MATRIX30_ARB = ((int)0x88DE), - MATRIX5_ARB = ((int)0x88C5), - MAX_PROGRAM_TEMPORARIES_ARB = ((int)0x88A5), - MAX_PROGRAM_ENV_PARAMETERS_ARB = ((int)0x88B5), - PROGRAM_ADDRESS_REGISTERS_ARB = ((int)0x88B0), - PROGRAM_INSTRUCTIONS_ARB = ((int)0x88A0), + MATRIX15_ARB = ((int)0x88CF), VERTEX_PROGRAM_ARB = ((int)0x8620), - PROGRAM_ERROR_STRING_ARB = ((int)0x8874), - PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB = ((int)0x88B2), - PROGRAM_NATIVE_TEMPORARIES_ARB = ((int)0x88A6), - MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB = ((int)0x88A3), - PROGRAM_UNDER_NATIVE_LIMITS_ARB = ((int)0x88B6), - MATRIX26_ARB = ((int)0x88DA), - CURRENT_MATRIX_ARB = ((int)0x8641), MATRIX0_ARB = ((int)0x88C0), - CURRENT_VERTEX_ATTRIB_ARB = ((int)0x8626), - MATRIX19_ARB = ((int)0x88D3), + MATRIX17_ARB = ((int)0x88D1), + PROGRAM_LENGTH_ARB = ((int)0x8627), + COLOR_SUM_ARB = ((int)0x8458), + MAX_PROGRAM_NATIVE_ATTRIBS_ARB = ((int)0x88AF), + MATRIX1_ARB = ((int)0x88C1), + PROGRAM_NATIVE_TEMPORARIES_ARB = ((int)0x88A6), + MAX_PROGRAM_ADDRESS_REGISTERS_ARB = ((int)0x88B1), + MATRIX23_ARB = ((int)0x88D7), + MAX_PROGRAM_NATIVE_TEMPORARIES_ARB = ((int)0x88A7), + PROGRAM_NATIVE_ATTRIBS_ARB = ((int)0x88AE), + CURRENT_MATRIX_ARB = ((int)0x8641), MATRIX18_ARB = ((int)0x88D2), - VERTEX_ATTRIB_ARRAY_STRIDE_ARB = ((int)0x8624), - PROGRAM_FORMAT_ARB = ((int)0x8876), - PROGRAM_STRING_ARB = ((int)0x8628), - VERTEX_ATTRIB_ARRAY_SIZE_ARB = ((int)0x8623), - MATRIX29_ARB = ((int)0x88DD), - MATRIX9_ARB = ((int)0x88C9), + MATRIX19_ARB = ((int)0x88D3), + MATRIX10_ARB = ((int)0x88CA), + MATRIX11_ARB = ((int)0x88CB), + MATRIX16_ARB = ((int)0x88D0), } public enum ARB_fragment_program { - MAX_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8872), - PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB = ((int)0x880A), - PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB = ((int)0x8809), - PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB = ((int)0x8808), - FRAGMENT_PROGRAM_ARB = ((int)0x8804), - MAX_PROGRAM_ALU_INSTRUCTIONS_ARB = ((int)0x880B), - MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB = ((int)0x880F), - MAX_PROGRAM_TEX_INSTRUCTIONS_ARB = ((int)0x880C), - MAX_PROGRAM_TEX_INDIRECTIONS_ARB = ((int)0x880D), - PROGRAM_ALU_INSTRUCTIONS_ARB = ((int)0x8805), - PROGRAM_TEX_INDIRECTIONS_ARB = ((int)0x8807), MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB = ((int)0x880E), + PROGRAM_ALU_INSTRUCTIONS_ARB = ((int)0x8805), + MAX_PROGRAM_TEX_INSTRUCTIONS_ARB = ((int)0x880C), MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB = ((int)0x8810), - MAX_TEXTURE_COORDS_ARB = ((int)0x8871), + MAX_PROGRAM_ALU_INSTRUCTIONS_ARB = ((int)0x880B), + MAX_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8872), + MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB = ((int)0x880F), + MAX_PROGRAM_TEX_INDIRECTIONS_ARB = ((int)0x880D), + PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB = ((int)0x8809), PROGRAM_TEX_INSTRUCTIONS_ARB = ((int)0x8806), + PROGRAM_TEX_INDIRECTIONS_ARB = ((int)0x8807), + PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB = ((int)0x880A), + FRAGMENT_PROGRAM_ARB = ((int)0x8804), + PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB = ((int)0x8808), + MAX_TEXTURE_COORDS_ARB = ((int)0x8871), } public enum ARB_vertex_buffer_object { - READ_ONLY_ARB = ((int)0x88B8), - BUFFER_ACCESS_ARB = ((int)0x88BB), - WRITE_ONLY_ARB = ((int)0x88B9), - DYNAMIC_DRAW_ARB = ((int)0x88E8), - ARRAY_BUFFER_BINDING_ARB = ((int)0x8894), - ELEMENT_ARRAY_BUFFER_ARB = ((int)0x8893), - READ_WRITE_ARB = ((int)0x88BA), - STREAM_READ_ARB = ((int)0x88E1), - STATIC_READ_ARB = ((int)0x88E5), - ARRAY_BUFFER_ARB = ((int)0x8892), - BUFFER_MAP_POINTER_ARB = ((int)0x88BD), - FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB = ((int)0x889D), - WEIGHT_ARRAY_BUFFER_BINDING_ARB = ((int)0x889E), - ELEMENT_ARRAY_BUFFER_BINDING_ARB = ((int)0x8895), - SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB = ((int)0x889C), - STATIC_DRAW_ARB = ((int)0x88E4), - STREAM_DRAW_ARB = ((int)0x88E0), - VERTEX_ARRAY_BUFFER_BINDING_ARB = ((int)0x8896), - BUFFER_MAPPED_ARB = ((int)0x88BC), - TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB = ((int)0x889A), - COLOR_ARRAY_BUFFER_BINDING_ARB = ((int)0x8898), - STATIC_COPY_ARB = ((int)0x88E6), - DYNAMIC_READ_ARB = ((int)0x88E9), - VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB = ((int)0x889F), - EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB = ((int)0x889B), NORMAL_ARRAY_BUFFER_BINDING_ARB = ((int)0x8897), - BUFFER_USAGE_ARB = ((int)0x8765), - BUFFER_SIZE_ARB = ((int)0x8764), - DYNAMIC_COPY_ARB = ((int)0x88EA), - INDEX_ARRAY_BUFFER_BINDING_ARB = ((int)0x8899), + READ_ONLY_ARB = ((int)0x88B8), + STATIC_DRAW_ARB = ((int)0x88E4), + STATIC_COPY_ARB = ((int)0x88E6), + BUFFER_MAP_POINTER_ARB = ((int)0x88BD), STREAM_COPY_ARB = ((int)0x88E2), + STATIC_READ_ARB = ((int)0x88E5), + READ_WRITE_ARB = ((int)0x88BA), + TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB = ((int)0x889A), + ARRAY_BUFFER_ARB = ((int)0x8892), + BUFFER_SIZE_ARB = ((int)0x8764), + BUFFER_ACCESS_ARB = ((int)0x88BB), + DYNAMIC_DRAW_ARB = ((int)0x88E8), + WRITE_ONLY_ARB = ((int)0x88B9), + VERTEX_ARRAY_BUFFER_BINDING_ARB = ((int)0x8896), + FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB = ((int)0x889D), + DYNAMIC_READ_ARB = ((int)0x88E9), + DYNAMIC_COPY_ARB = ((int)0x88EA), + STREAM_DRAW_ARB = ((int)0x88E0), + WEIGHT_ARRAY_BUFFER_BINDING_ARB = ((int)0x889E), + STREAM_READ_ARB = ((int)0x88E1), + COLOR_ARRAY_BUFFER_BINDING_ARB = ((int)0x8898), + BUFFER_MAPPED_ARB = ((int)0x88BC), + INDEX_ARRAY_BUFFER_BINDING_ARB = ((int)0x8899), + ELEMENT_ARRAY_BUFFER_BINDING_ARB = ((int)0x8895), + EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB = ((int)0x889B), + VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB = ((int)0x889F), + ARRAY_BUFFER_BINDING_ARB = ((int)0x8894), + SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB = ((int)0x889C), + BUFFER_USAGE_ARB = ((int)0x8765), + ELEMENT_ARRAY_BUFFER_ARB = ((int)0x8893), } public enum ARB_occlusion_query { - QUERY_COUNTER_BITS_ARB = ((int)0x8864), - SAMPLES_PASSED_ARB = ((int)0x8914), + QUERY_RESULT_ARB = ((int)0x8866), CURRENT_QUERY_ARB = ((int)0x8865), QUERY_RESULT_AVAILABLE_ARB = ((int)0x8867), - QUERY_RESULT_ARB = ((int)0x8866), + SAMPLES_PASSED_ARB = ((int)0x8914), + QUERY_COUNTER_BITS_ARB = ((int)0x8864), } public enum ARB_shader_objects { - INT_VEC3_ARB = ((int)0x8B54), - SAMPLER_2D_SHADOW_ARB = ((int)0x8B62), - INT_VEC2_ARB = ((int)0x8B53), - FLOAT_VEC3_ARB = ((int)0x8B51), - SAMPLER_CUBE_ARB = ((int)0x8B60), - SHADER_OBJECT_ARB = ((int)0x8B48), - FLOAT_MAT4_ARB = ((int)0x8B5C), - FLOAT_VEC4_ARB = ((int)0x8B52), - FLOAT_VEC2_ARB = ((int)0x8B50), - OBJECT_TYPE_ARB = ((int)0x8B4E), - FLOAT_MAT2_ARB = ((int)0x8B5A), - OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB = ((int)0x8B87), - OBJECT_INFO_LOG_LENGTH_ARB = ((int)0x8B84), - SAMPLER_2D_ARB = ((int)0x8B5E), - INT_VEC4_ARB = ((int)0x8B55), - OBJECT_ACTIVE_UNIFORMS_ARB = ((int)0x8B86), - OBJECT_SUBTYPE_ARB = ((int)0x8B4F), - SAMPLER_2D_RECT_ARB = ((int)0x8B63), - SAMPLER_3D_ARB = ((int)0x8B5F), - BOOL_VEC2_ARB = ((int)0x8B57), - OBJECT_DELETE_STATUS_ARB = ((int)0x8B80), - FLOAT_MAT3_ARB = ((int)0x8B5B), - OBJECT_SHADER_SOURCE_LENGTH_ARB = ((int)0x8B88), - OBJECT_COMPILE_STATUS_ARB = ((int)0x8B81), - SAMPLER_2D_RECT_SHADOW_ARB = ((int)0x8B64), - OBJECT_LINK_STATUS_ARB = ((int)0x8B82), - OBJECT_ATTACHED_OBJECTS_ARB = ((int)0x8B85), - SAMPLER_1D_ARB = ((int)0x8B5D), OBJECT_VALIDATE_STATUS_ARB = ((int)0x8B83), - PROGRAM_OBJECT_ARB = ((int)0x8B40), BOOL_VEC3_ARB = ((int)0x8B58), - BOOL_VEC4_ARB = ((int)0x8B59), - SAMPLER_1D_SHADOW_ARB = ((int)0x8B61), + SAMPLER_2D_RECT_ARB = ((int)0x8B63), + OBJECT_COMPILE_STATUS_ARB = ((int)0x8B81), + OBJECT_DELETE_STATUS_ARB = ((int)0x8B80), + OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB = ((int)0x8B87), + FLOAT_MAT2_ARB = ((int)0x8B5A), BOOL_ARB = ((int)0x8B56), + FLOAT_MAT4_ARB = ((int)0x8B5C), + OBJECT_SHADER_SOURCE_LENGTH_ARB = ((int)0x8B88), + SAMPLER_3D_ARB = ((int)0x8B5F), + OBJECT_INFO_LOG_LENGTH_ARB = ((int)0x8B84), + INT_VEC4_ARB = ((int)0x8B55), + FLOAT_MAT3_ARB = ((int)0x8B5B), + PROGRAM_OBJECT_ARB = ((int)0x8B40), + SAMPLER_1D_SHADOW_ARB = ((int)0x8B61), + OBJECT_TYPE_ARB = ((int)0x8B4E), + BOOL_VEC4_ARB = ((int)0x8B59), + BOOL_VEC2_ARB = ((int)0x8B57), + OBJECT_SUBTYPE_ARB = ((int)0x8B4F), + SAMPLER_1D_ARB = ((int)0x8B5D), + SAMPLER_2D_RECT_SHADOW_ARB = ((int)0x8B64), + SHADER_OBJECT_ARB = ((int)0x8B48), + FLOAT_VEC2_ARB = ((int)0x8B50), + SAMPLER_2D_SHADOW_ARB = ((int)0x8B62), + OBJECT_ATTACHED_OBJECTS_ARB = ((int)0x8B85), + FLOAT_VEC4_ARB = ((int)0x8B52), + OBJECT_ACTIVE_UNIFORMS_ARB = ((int)0x8B86), + SAMPLER_CUBE_ARB = ((int)0x8B60), + SAMPLER_2D_ARB = ((int)0x8B5E), + INT_VEC2_ARB = ((int)0x8B53), + OBJECT_LINK_STATUS_ARB = ((int)0x8B82), + INT_VEC3_ARB = ((int)0x8B54), + FLOAT_VEC3_ARB = ((int)0x8B51), } public enum ARB_vertex_shader { - MAX_VARYING_FLOATS_ARB = ((int)0x8B4B), - MAX_VERTEX_UNIFORM_COMPONENTS_ARB = ((int)0x8B4A), - OBJECT_ACTIVE_ATTRIBUTES_ARB = ((int)0x8B89), MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8B4D), VERTEX_SHADER_ARB = ((int)0x8B31), - OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB = ((int)0x8B8A), + OBJECT_ACTIVE_ATTRIBUTES_ARB = ((int)0x8B89), MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB = ((int)0x8B4C), + MAX_VERTEX_UNIFORM_COMPONENTS_ARB = ((int)0x8B4A), + MAX_VARYING_FLOATS_ARB = ((int)0x8B4B), + OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB = ((int)0x8B8A), } public enum ARB_fragment_shader { - FRAGMENT_SHADER_ARB = ((int)0x8B30), MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB = ((int)0x8B49), FRAGMENT_SHADER_DERIVATIVE_HINT_ARB = ((int)0x8B8B), + FRAGMENT_SHADER_ARB = ((int)0x8B30), } public enum ARB_shading_language_100 @@ -6422,40 +6422,40 @@ namespace OpenTK.OpenGL public enum ARB_draw_buffers { - DRAW_BUFFER3_ARB = ((int)0x8828), DRAW_BUFFER13_ARB = ((int)0x8832), DRAW_BUFFER4_ARB = ((int)0x8829), - DRAW_BUFFER14_ARB = ((int)0x8833), - DRAW_BUFFER7_ARB = ((int)0x882C), - MAX_DRAW_BUFFERS_ARB = ((int)0x8824), - DRAW_BUFFER15_ARB = ((int)0x8834), - DRAW_BUFFER2_ARB = ((int)0x8827), - DRAW_BUFFER10_ARB = ((int)0x882F), DRAW_BUFFER1_ARB = ((int)0x8826), - DRAW_BUFFER9_ARB = ((int)0x882E), - DRAW_BUFFER6_ARB = ((int)0x882B), - DRAW_BUFFER11_ARB = ((int)0x8830), - DRAW_BUFFER5_ARB = ((int)0x882A), - DRAW_BUFFER12_ARB = ((int)0x8831), + MAX_DRAW_BUFFERS_ARB = ((int)0x8824), + DRAW_BUFFER2_ARB = ((int)0x8827), DRAW_BUFFER0_ARB = ((int)0x8825), DRAW_BUFFER8_ARB = ((int)0x882D), + DRAW_BUFFER7_ARB = ((int)0x882C), + DRAW_BUFFER10_ARB = ((int)0x882F), + DRAW_BUFFER5_ARB = ((int)0x882A), + DRAW_BUFFER15_ARB = ((int)0x8834), + DRAW_BUFFER14_ARB = ((int)0x8833), + DRAW_BUFFER3_ARB = ((int)0x8828), + DRAW_BUFFER6_ARB = ((int)0x882B), + DRAW_BUFFER12_ARB = ((int)0x8831), + DRAW_BUFFER11_ARB = ((int)0x8830), + DRAW_BUFFER9_ARB = ((int)0x882E), } public enum ARB_texture_rectangle { TEXTURE_BINDING_RECTANGLE_ARB = ((int)0x84F6), - MAX_RECTANGLE_TEXTURE_SIZE_ARB = ((int)0x84F8), TEXTURE_RECTANGLE_ARB = ((int)0x84F5), + MAX_RECTANGLE_TEXTURE_SIZE_ARB = ((int)0x84F8), PROXY_TEXTURE_RECTANGLE_ARB = ((int)0x84F7), } public enum ARB_color_buffer_float { - CLAMP_VERTEX_COLOR_ARB = ((int)0x891A), - CLAMP_FRAGMENT_COLOR_ARB = ((int)0x891B), CLAMP_READ_COLOR_ARB = ((int)0x891C), - RGBA_FLOAT_MODE_ARB = ((int)0x8820), + CLAMP_FRAGMENT_COLOR_ARB = ((int)0x891B), FIXED_ONLY_ARB = ((int)0x891D), + CLAMP_VERTEX_COLOR_ARB = ((int)0x891A), + RGBA_FLOAT_MODE_ARB = ((int)0x8820), } public enum ARB_half_float_pixel @@ -6465,34 +6465,34 @@ namespace OpenTK.OpenGL public enum ARB_texture_float { - RGB32F_ARB = ((int)0x8815), - ALPHA32F_ARB = ((int)0x8816), - INTENSITY32F_ARB = ((int)0x8817), TEXTURE_LUMINANCE_TYPE_ARB = ((int)0x8C14), - LUMINANCE16F_ARB = ((int)0x881E), - RGBA16F_ARB = ((int)0x881A), - ALPHA16F_ARB = ((int)0x881C), - TEXTURE_GREEN_TYPE_ARB = ((int)0x8C11), - TEXTURE_ALPHA_TYPE_ARB = ((int)0x8C13), - RGBA32F_ARB = ((int)0x8814), - INTENSITY16F_ARB = ((int)0x881D), - TEXTURE_INTENSITY_TYPE_ARB = ((int)0x8C15), - LUMINANCE32F_ARB = ((int)0x8818), TEXTURE_BLUE_TYPE_ARB = ((int)0x8C12), - TEXTURE_RED_TYPE_ARB = ((int)0x8C10), - TEXTURE_DEPTH_TYPE_ARB = ((int)0x8C16), - RGB16F_ARB = ((int)0x881B), - LUMINANCE_ALPHA16F_ARB = ((int)0x881F), - UNSIGNED_NORMALIZED_ARB = ((int)0x8C17), LUMINANCE_ALPHA32F_ARB = ((int)0x8819), + TEXTURE_DEPTH_TYPE_ARB = ((int)0x8C16), + RGB32F_ARB = ((int)0x8815), + LUMINANCE16F_ARB = ((int)0x881E), + TEXTURE_RED_TYPE_ARB = ((int)0x8C10), + TEXTURE_GREEN_TYPE_ARB = ((int)0x8C11), + ALPHA16F_ARB = ((int)0x881C), + TEXTURE_INTENSITY_TYPE_ARB = ((int)0x8C15), + INTENSITY32F_ARB = ((int)0x8817), + TEXTURE_ALPHA_TYPE_ARB = ((int)0x8C13), + INTENSITY16F_ARB = ((int)0x881D), + LUMINANCE32F_ARB = ((int)0x8818), + LUMINANCE_ALPHA16F_ARB = ((int)0x881F), + RGBA16F_ARB = ((int)0x881A), + RGB16F_ARB = ((int)0x881B), + ALPHA32F_ARB = ((int)0x8816), + UNSIGNED_NORMALIZED_ARB = ((int)0x8C17), + RGBA32F_ARB = ((int)0x8814), } public enum ARB_pixel_buffer_object { - PIXEL_UNPACK_BUFFER_BINDING_ARB = ((int)0x88EF), - PIXEL_PACK_BUFFER_ARB = ((int)0x88EB), - PIXEL_UNPACK_BUFFER_ARB = ((int)0x88EC), PIXEL_PACK_BUFFER_BINDING_ARB = ((int)0x88ED), + PIXEL_PACK_BUFFER_ARB = ((int)0x88EB), + PIXEL_UNPACK_BUFFER_BINDING_ARB = ((int)0x88EF), + PIXEL_UNPACK_BUFFER_ARB = ((int)0x88EC), } public enum EXT_subtexture @@ -6525,10 +6525,10 @@ namespace OpenTK.OpenGL public enum SGIX_polynomial_ffd { - GEOMETRY_DEFORMATION_SGIX = ((int)0x8194), - DEFORMATIONS_MASK_SGIX = ((int)0x8196), MAX_DEFORMATION_ORDER_SGIX = ((int)0x8197), + GEOMETRY_DEFORMATION_SGIX = ((int)0x8194), TEXTURE_DEFORMATION_SGIX = ((int)0x8195), + DEFORMATIONS_MASK_SGIX = ((int)0x8196), } public enum SGIX_flush_raster @@ -6537,21 +6537,21 @@ namespace OpenTK.OpenGL public enum HP_image_transform { - IMAGE_ROTATE_ANGLE_HP = ((int)0x8159), - IMAGE_MAG_FILTER_HP = ((int)0x815C), - IMAGE_SCALE_Y_HP = ((int)0x8156), - IMAGE_CUBIC_WEIGHT_HP = ((int)0x815E), - IMAGE_ROTATE_ORIGIN_X_HP = ((int)0x815A), - IMAGE_TRANSLATE_Y_HP = ((int)0x8158), - CUBIC_HP = ((int)0x815F), IMAGE_TRANSFORM_2D_HP = ((int)0x8161), - IMAGE_SCALE_X_HP = ((int)0x8155), - AVERAGE_HP = ((int)0x8160), - PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = ((int)0x8163), IMAGE_MIN_FILTER_HP = ((int)0x815D), - IMAGE_ROTATE_ORIGIN_Y_HP = ((int)0x815B), + IMAGE_TRANSLATE_Y_HP = ((int)0x8158), IMAGE_TRANSLATE_X_HP = ((int)0x8157), + AVERAGE_HP = ((int)0x8160), POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = ((int)0x8162), + IMAGE_SCALE_Y_HP = ((int)0x8156), + IMAGE_SCALE_X_HP = ((int)0x8155), + CUBIC_HP = ((int)0x815F), + IMAGE_MAG_FILTER_HP = ((int)0x815C), + IMAGE_ROTATE_ORIGIN_Y_HP = ((int)0x815B), + IMAGE_ROTATE_ORIGIN_X_HP = ((int)0x815A), + PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP = ((int)0x8163), + IMAGE_CUBIC_WEIGHT_HP = ((int)0x815E), + IMAGE_ROTATE_ANGLE_HP = ((int)0x8159), } public enum INGR_palette_buffer @@ -6564,63 +6564,63 @@ namespace OpenTK.OpenGL public enum PGI_vertex_hints { - TEXCOORD4_BIT_PGI = unchecked((int)0x80000000), - MAX_VERTEX_HINT_PGI = ((int)0x1A22D), - COLOR4_BIT_PGI = ((int)0x00020000), - COLOR3_BIT_PGI = ((int)0x00010000), - VERTEX4_BIT_PGI = ((int)0x00000008), MAT_SPECULAR_BIT_PGI = ((int)0x04000000), - VERTEX_DATA_HINT_PGI = ((int)0x1A22A), - EDGEFLAG_BIT_PGI = ((int)0x00040000), - MAT_SHININESS_BIT_PGI = ((int)0x02000000), - MAT_DIFFUSE_BIT_PGI = ((int)0x00400000), - TEXCOORD3_BIT_PGI = ((int)0x40000000), - TEXCOORD1_BIT_PGI = ((int)0x10000000), + TEXCOORD2_BIT_PGI = ((int)0x20000000), VERTEX_CONSISTENT_HINT_PGI = ((int)0x1A22B), + MAT_SHININESS_BIT_PGI = ((int)0x02000000), + MAT_AMBIENT_BIT_PGI = ((int)0x00100000), + MATERIAL_SIDE_HINT_PGI = ((int)0x1A22C), + TEXCOORD3_BIT_PGI = ((int)0x40000000), + TEXCOORD4_BIT_PGI = unchecked((int)0x80000000), + MAT_COLOR_INDEXES_BIT_PGI = ((int)0x01000000), + MAX_VERTEX_HINT_PGI = ((int)0x1A22D), + VERTEX23_BIT_PGI = ((int)0x00000004), + TEXCOORD1_BIT_PGI = ((int)0x10000000), INDEX_BIT_PGI = ((int)0x00080000), + EDGEFLAG_BIT_PGI = ((int)0x00040000), + COLOR3_BIT_PGI = ((int)0x00010000), + VERTEX_DATA_HINT_PGI = ((int)0x1A22A), + MAT_DIFFUSE_BIT_PGI = ((int)0x00400000), NORMAL_BIT_PGI = ((int)0x08000000), MAT_EMISSION_BIT_PGI = ((int)0x00800000), - MAT_COLOR_INDEXES_BIT_PGI = ((int)0x01000000), - TEXCOORD2_BIT_PGI = ((int)0x20000000), - MATERIAL_SIDE_HINT_PGI = ((int)0x1A22C), - MAT_AMBIENT_BIT_PGI = ((int)0x00100000), + COLOR4_BIT_PGI = ((int)0x00020000), + VERTEX4_BIT_PGI = ((int)0x00000008), MAT_AMBIENT_AND_DIFFUSE_BIT_PGI = ((int)0x00200000), - VERTEX23_BIT_PGI = ((int)0x00000004), } public enum PGI_misc_hints { - RECLAIM_MEMORY_HINT_PGI = ((int)0x1A1FE), - ALWAYS_SOFT_HINT_PGI = ((int)0x1A20D), - ALLOW_DRAW_MEM_HINT_PGI = ((int)0x1A211), - ALWAYS_FAST_HINT_PGI = ((int)0x1A20C), - ALLOW_DRAW_WIN_HINT_PGI = ((int)0x1A20F), - PREFER_DOUBLEBUFFER_HINT_PGI = ((int)0x1A1F8), - NATIVE_GRAPHICS_HANDLE_PGI = ((int)0x1A202), - NATIVE_GRAPHICS_BEGIN_HINT_PGI = ((int)0x1A203), - WIDE_LINE_HINT_PGI = ((int)0x1A222), - CONSERVE_MEMORY_HINT_PGI = ((int)0x1A1FD), - NATIVE_GRAPHICS_END_HINT_PGI = ((int)0x1A204), - STRICT_DEPTHFUNC_HINT_PGI = ((int)0x1A216), - BACK_NORMALS_HINT_PGI = ((int)0x1A223), - STRICT_LIGHTING_HINT_PGI = ((int)0x1A217), - CLIP_NEAR_HINT_PGI = ((int)0x1A220), - ALLOW_DRAW_OBJ_HINT_PGI = ((int)0x1A20E), - ALLOW_DRAW_FRG_HINT_PGI = ((int)0x1A210), - STRICT_SCISSOR_HINT_PGI = ((int)0x1A218), FULL_STIPPLE_HINT_PGI = ((int)0x1A219), + BACK_NORMALS_HINT_PGI = ((int)0x1A223), + ALLOW_DRAW_MEM_HINT_PGI = ((int)0x1A211), + ALLOW_DRAW_WIN_HINT_PGI = ((int)0x1A20F), + ALWAYS_FAST_HINT_PGI = ((int)0x1A20C), + NATIVE_GRAPHICS_HANDLE_PGI = ((int)0x1A202), + CONSERVE_MEMORY_HINT_PGI = ((int)0x1A1FD), + PREFER_DOUBLEBUFFER_HINT_PGI = ((int)0x1A1F8), + STRICT_LIGHTING_HINT_PGI = ((int)0x1A217), CLIP_FAR_HINT_PGI = ((int)0x1A221), + CLIP_NEAR_HINT_PGI = ((int)0x1A220), + STRICT_SCISSOR_HINT_PGI = ((int)0x1A218), + ALLOW_DRAW_FRG_HINT_PGI = ((int)0x1A210), + ALWAYS_SOFT_HINT_PGI = ((int)0x1A20D), + NATIVE_GRAPHICS_BEGIN_HINT_PGI = ((int)0x1A203), + ALLOW_DRAW_OBJ_HINT_PGI = ((int)0x1A20E), + NATIVE_GRAPHICS_END_HINT_PGI = ((int)0x1A204), + RECLAIM_MEMORY_HINT_PGI = ((int)0x1A1FE), + STRICT_DEPTHFUNC_HINT_PGI = ((int)0x1A216), + WIDE_LINE_HINT_PGI = ((int)0x1A222), } public enum EXT_paletted_texture { COLOR_INDEX1_EXT = ((int)0x80E2), - COLOR_INDEX16_EXT = ((int)0x80E7), - COLOR_INDEX2_EXT = ((int)0x80E3), - COLOR_INDEX4_EXT = ((int)0x80E4), TEXTURE_INDEX_SIZE_EXT = ((int)0x80ED), - COLOR_INDEX12_EXT = ((int)0x80E6), COLOR_INDEX8_EXT = ((int)0x80E5), + COLOR_INDEX4_EXT = ((int)0x80E4), + COLOR_INDEX12_EXT = ((int)0x80E6), + COLOR_INDEX2_EXT = ((int)0x80E3), + COLOR_INDEX16_EXT = ((int)0x80E7), } public enum EXT_clip_volume_hint @@ -6634,28 +6634,28 @@ namespace OpenTK.OpenGL public enum EXT_index_material { - INDEX_MATERIAL_EXT = ((int)0x81B8), INDEX_MATERIAL_FACE_EXT = ((int)0x81BA), + INDEX_MATERIAL_EXT = ((int)0x81B8), INDEX_MATERIAL_PARAMETER_EXT = ((int)0x81B9), } public enum EXT_index_func { - INDEX_TEST_REF_EXT = ((int)0x81B7), - INDEX_TEST_EXT = ((int)0x81B5), INDEX_TEST_FUNC_EXT = ((int)0x81B6), + INDEX_TEST_EXT = ((int)0x81B5), + INDEX_TEST_REF_EXT = ((int)0x81B7), } public enum EXT_index_array_formats { IUI_N3F_V2F_EXT = ((int)0x81AF), - IUI_V2F_EXT = ((int)0x81AD), + T2F_IUI_V3F_EXT = ((int)0x81B2), + T2F_IUI_V2F_EXT = ((int)0x81B1), IUI_N3F_V3F_EXT = ((int)0x81B0), + T2F_IUI_N3F_V3F_EXT = ((int)0x81B4), T2F_IUI_N3F_V2F_EXT = ((int)0x81B3), IUI_V3F_EXT = ((int)0x81AE), - T2F_IUI_N3F_V3F_EXT = ((int)0x81B4), - T2F_IUI_V2F_EXT = ((int)0x81B1), - T2F_IUI_V3F_EXT = ((int)0x81B2), + IUI_V2F_EXT = ((int)0x81AD), } public enum EXT_compiled_vertex_array @@ -6666,9 +6666,9 @@ namespace OpenTK.OpenGL public enum EXT_cull_vertex { + CULL_VERTEX_EXT = ((int)0x81AA), CULL_VERTEX_OBJECT_POSITION_EXT = ((int)0x81AC), CULL_VERTEX_EYE_POSITION_EXT = ((int)0x81AB), - CULL_VERTEX_EXT = ((int)0x81AA), } public enum IBM_rasterpos_clip @@ -6679,8 +6679,8 @@ namespace OpenTK.OpenGL public enum HP_texture_lighting { TEXTURE_LIGHTING_MODE_HP = ((int)0x8167), - TEXTURE_POST_SPECULAR_HP = ((int)0x8168), TEXTURE_PRE_SPECULAR_HP = ((int)0x8169), + TEXTURE_POST_SPECULAR_HP = ((int)0x8168), } public enum EXT_draw_range_elements @@ -6691,8 +6691,8 @@ namespace OpenTK.OpenGL public enum WIN_phong_shading { - PHONG_HINT_WIN = ((int)0x80EB), PHONG_WIN = ((int)0x80EA), + PHONG_HINT_WIN = ((int)0x80EB), } public enum WIN_specular_fog @@ -6703,15 +6703,15 @@ namespace OpenTK.OpenGL public enum EXT_light_texture { ATTENUATION_EXT = ((int)0x834D), - TEXTURE_APPLICATION_MODE_EXT = ((int)0x834F), - FRAGMENT_NORMAL_EXT = ((int)0x834A), - SHADOW_ATTENUATION_EXT = ((int)0x834E), - TEXTURE_MATERIAL_FACE_EXT = ((int)0x8351), FRAGMENT_DEPTH_EXT = ((int)EXT_fog_coord.FRAGMENT_DEPTH_EXT), - TEXTURE_MATERIAL_PARAMETER_EXT = ((int)0x8352), - FRAGMENT_MATERIAL_EXT = ((int)0x8349), TEXTURE_LIGHT_EXT = ((int)0x8350), + FRAGMENT_NORMAL_EXT = ((int)0x834A), + FRAGMENT_MATERIAL_EXT = ((int)0x8349), + TEXTURE_MATERIAL_PARAMETER_EXT = ((int)0x8352), + TEXTURE_MATERIAL_FACE_EXT = ((int)0x8351), + SHADOW_ATTENUATION_EXT = ((int)0x834E), FRAGMENT_COLOR_EXT = ((int)0x834C), + TEXTURE_APPLICATION_MODE_EXT = ((int)0x834F), } public enum SGIX_async @@ -6725,8 +6725,8 @@ namespace OpenTK.OpenGL public enum HP_occlusion_test { - OCCLUSION_TEST_RESULT_HP = ((int)0x8166), OCCLUSION_TEST_HP = ((int)0x8165), + OCCLUSION_TEST_RESULT_HP = ((int)0x8166), } public enum EXT_pixel_transform_color_table @@ -6736,12 +6736,12 @@ namespace OpenTK.OpenGL public enum EXT_secondary_color { SECONDARY_COLOR_ARRAY_SIZE_EXT = ((int)0x845A), + SECONDARY_COLOR_ARRAY_POINTER_EXT = ((int)0x845D), SECONDARY_COLOR_ARRAY_STRIDE_EXT = ((int)0x845C), SECONDARY_COLOR_ARRAY_EXT = ((int)0x845E), - SECONDARY_COLOR_ARRAY_POINTER_EXT = ((int)0x845D), - CURRENT_SECONDARY_COLOR_EXT = ((int)0x8459), - SECONDARY_COLOR_ARRAY_TYPE_EXT = ((int)0x845B), COLOR_SUM_EXT = ((int)0x8458), + SECONDARY_COLOR_ARRAY_TYPE_EXT = ((int)0x845B), + CURRENT_SECONDARY_COLOR_EXT = ((int)0x8459), } public enum EXT_texture_perturb_normal @@ -6756,63 +6756,63 @@ namespace OpenTK.OpenGL public enum EXT_fog_coord { - FOG_COORDINATE_ARRAY_STRIDE_EXT = ((int)0x8455), FOG_COORDINATE_ARRAY_POINTER_EXT = ((int)0x8456), + FOG_COORDINATE_ARRAY_STRIDE_EXT = ((int)0x8455), + FOG_COORDINATE_SOURCE_EXT = ((int)0x8450), + FOG_COORDINATE_EXT = ((int)0x8451), + FOG_COORDINATE_ARRAY_TYPE_EXT = ((int)0x8454), FOG_COORDINATE_ARRAY_EXT = ((int)0x8457), CURRENT_FOG_COORDINATE_EXT = ((int)0x8453), - FOG_COORDINATE_ARRAY_TYPE_EXT = ((int)0x8454), - FOG_COORDINATE_SOURCE_EXT = ((int)0x8450), FRAGMENT_DEPTH_EXT = ((int)0x8452), - FOG_COORDINATE_EXT = ((int)0x8451), } public enum REND_screen_coordinates { - INVERTED_SCREEN_W_REND = ((int)0x8491), SCREEN_COORDINATES_REND = ((int)0x8490), + INVERTED_SCREEN_W_REND = ((int)0x8491), } public enum EXT_coordinate_frame { - TANGENT_ARRAY_TYPE_EXT = ((int)0x843E), - BINORMAL_ARRAY_TYPE_EXT = ((int)0x8440), - BINORMAL_ARRAY_POINTER_EXT = ((int)0x8443), - MAP1_BINORMAL_EXT = ((int)0x8446), - CURRENT_BINORMAL_EXT = ((int)0x843C), - TANGENT_ARRAY_EXT = ((int)0x8439), - BINORMAL_ARRAY_EXT = ((int)0x843A), BINORMAL_ARRAY_STRIDE_EXT = ((int)0x8441), - MAP2_BINORMAL_EXT = ((int)0x8447), + BINORMAL_ARRAY_TYPE_EXT = ((int)0x8440), MAP1_TANGENT_EXT = ((int)0x8444), - TANGENT_ARRAY_STRIDE_EXT = ((int)0x843F), - CURRENT_TANGENT_EXT = ((int)0x843B), - MAP2_TANGENT_EXT = ((int)0x8445), TANGENT_ARRAY_POINTER_EXT = ((int)0x8442), + CURRENT_TANGENT_EXT = ((int)0x843B), + MAP1_BINORMAL_EXT = ((int)0x8446), + TANGENT_ARRAY_TYPE_EXT = ((int)0x843E), + CURRENT_BINORMAL_EXT = ((int)0x843C), + MAP2_TANGENT_EXT = ((int)0x8445), + MAP2_BINORMAL_EXT = ((int)0x8447), + BINORMAL_ARRAY_EXT = ((int)0x843A), + TANGENT_ARRAY_STRIDE_EXT = ((int)0x843F), + TANGENT_ARRAY_EXT = ((int)0x8439), + BINORMAL_ARRAY_POINTER_EXT = ((int)0x8443), } public enum EXT_texture_env_combine { - OPERAND2_RGB_EXT = ((int)0x8592), - SOURCE2_ALPHA_EXT = ((int)0x858A), - ADD_SIGNED_EXT = ((int)0x8574), - SOURCE2_RGB_EXT = ((int)0x8582), - OPERAND1_ALPHA_EXT = ((int)0x8599), SOURCE0_RGB_EXT = ((int)0x8580), - INTERPOLATE_EXT = ((int)0x8575), + COMBINE_RGB_EXT = ((int)0x8571), SOURCE1_RGB_EXT = ((int)0x8581), CONSTANT_EXT = ((int)0x8576), - COMBINE_RGB_EXT = ((int)0x8571), - COMBINE_ALPHA_EXT = ((int)0x8572), + SOURCE1_ALPHA_EXT = ((int)0x8589), + SOURCE2_ALPHA_EXT = ((int)0x858A), + SOURCE2_RGB_EXT = ((int)0x8582), OPERAND0_RGB_EXT = ((int)0x8590), OPERAND0_ALPHA_EXT = ((int)0x8598), RGB_SCALE_EXT = ((int)0x8573), - SOURCE0_ALPHA_EXT = ((int)0x8588), - SOURCE1_ALPHA_EXT = ((int)0x8589), - PREVIOUS_EXT = ((int)0x8578), OPERAND1_RGB_EXT = ((int)0x8591), - COMBINE_EXT = ((int)0x8570), - PRIMARY_COLOR_EXT = ((int)0x8577), + SOURCE0_ALPHA_EXT = ((int)0x8588), OPERAND2_ALPHA_EXT = ((int)0x859A), + INTERPOLATE_EXT = ((int)0x8575), + COMBINE_EXT = ((int)0x8570), + OPERAND1_ALPHA_EXT = ((int)0x8599), + OPERAND2_RGB_EXT = ((int)0x8592), + PREVIOUS_EXT = ((int)0x8578), + ADD_SIGNED_EXT = ((int)0x8574), + PRIMARY_COLOR_EXT = ((int)0x8577), + COMBINE_ALPHA_EXT = ((int)0x8572), } public enum APPLE_specular_vector @@ -6833,8 +6833,8 @@ namespace OpenTK.OpenGL public enum SUNX_constant_data { - UNPACK_CONSTANT_DATA_SUNX = ((int)0x81D5), TEXTURE_CONSTANT_DATA_SUNX = ((int)0x81D6), + UNPACK_CONSTANT_DATA_SUNX = ((int)0x81D5), } public enum SUN_global_alpha @@ -6845,23 +6845,23 @@ namespace OpenTK.OpenGL public enum SUN_triangle_list { - RESTART_SUN = ((int)0x0001), R1UI_N3F_V3F_SUN = ((int)0x85C7), - R1UI_C4F_N3F_V3F_SUN = ((int)0x85C8), - R1UI_T2F_N3F_V3F_SUN = ((int)0x85CA), - REPLACEMENT_CODE_ARRAY_STRIDE_SUN = ((int)0x85C2), - REPLACEMENT_CODE_ARRAY_POINTER_SUN = ((int)0x85C3), - R1UI_T2F_C4F_N3F_V3F_SUN = ((int)0x85CB), - REPLACEMENT_CODE_ARRAY_TYPE_SUN = ((int)0x85C1), - R1UI_V3F_SUN = ((int)0x85C4), - TRIANGLE_LIST_SUN = ((int)0x81D7), - REPLACEMENT_CODE_ARRAY_SUN = ((int)0x85C0), - REPLACE_OLDEST_SUN = ((int)0x0003), REPLACE_MIDDLE_SUN = ((int)0x0002), - R1UI_C4UB_V3F_SUN = ((int)0x85C5), + REPLACE_OLDEST_SUN = ((int)0x0003), + R1UI_V3F_SUN = ((int)0x85C4), REPLACEMENT_CODE_SUN = ((int)0x81D8), - R1UI_C3F_V3F_SUN = ((int)0x85C6), + R1UI_T2F_N3F_V3F_SUN = ((int)0x85CA), + RESTART_SUN = ((int)0x0001), + REPLACEMENT_CODE_ARRAY_STRIDE_SUN = ((int)0x85C2), + R1UI_T2F_C4F_N3F_V3F_SUN = ((int)0x85CB), + R1UI_C4F_N3F_V3F_SUN = ((int)0x85C8), R1UI_T2F_V3F_SUN = ((int)0x85C9), + TRIANGLE_LIST_SUN = ((int)0x81D7), + REPLACEMENT_CODE_ARRAY_TYPE_SUN = ((int)0x85C1), + R1UI_C3F_V3F_SUN = ((int)0x85C6), + R1UI_C4UB_V3F_SUN = ((int)0x85C5), + REPLACEMENT_CODE_ARRAY_SUN = ((int)0x85C0), + REPLACEMENT_CODE_ARRAY_POINTER_SUN = ((int)0x85C3), } public enum SUN_vertex @@ -6870,22 +6870,22 @@ namespace OpenTK.OpenGL public enum EXT_blend_func_separate { + BLEND_SRC_ALPHA_EXT = ((int)0x80CB), BLEND_DST_RGB_EXT = ((int)0x80C8), BLEND_DST_ALPHA_EXT = ((int)0x80CA), BLEND_SRC_RGB_EXT = ((int)0x80C9), - BLEND_SRC_ALPHA_EXT = ((int)0x80CB), } public enum INGR_color_clamp { - BLUE_MAX_CLAMP_INGR = ((int)0x8566), BLUE_MIN_CLAMP_INGR = ((int)0x8562), - ALPHA_MAX_CLAMP_INGR = ((int)0x8567), - GREEN_MIN_CLAMP_INGR = ((int)0x8561), - ALPHA_MIN_CLAMP_INGR = ((int)0x8563), - RED_MIN_CLAMP_INGR = ((int)0x8560), - GREEN_MAX_CLAMP_INGR = ((int)0x8565), RED_MAX_CLAMP_INGR = ((int)0x8564), + ALPHA_MAX_CLAMP_INGR = ((int)0x8567), + ALPHA_MIN_CLAMP_INGR = ((int)0x8563), + GREEN_MAX_CLAMP_INGR = ((int)0x8565), + BLUE_MAX_CLAMP_INGR = ((int)0x8566), + GREEN_MIN_CLAMP_INGR = ((int)0x8561), + RED_MIN_CLAMP_INGR = ((int)0x8560), } public enum INGR_interlace_read @@ -6895,38 +6895,38 @@ namespace OpenTK.OpenGL public enum EXT_stencil_wrap { - INCR_WRAP_EXT = ((int)0x8507), DECR_WRAP_EXT = ((int)0x8508), + INCR_WRAP_EXT = ((int)0x8507), } public enum EXT_422_pixels { GL_422_AVERAGE_EXT = ((int)0x80CE), - GL_422_REV_AVERAGE_EXT = ((int)0x80CF), GL_422_REV_EXT = ((int)0x80CD), GL_422_EXT = ((int)0x80CC), + GL_422_REV_AVERAGE_EXT = ((int)0x80CF), } public enum NV_texgen_reflection { - REFLECTION_MAP_NV = ((int)0x8512), NORMAL_MAP_NV = ((int)0x8511), + REFLECTION_MAP_NV = ((int)0x8512), } public enum EXT_texture_cube_map { - MAX_CUBE_MAP_TEXTURE_SIZE_EXT = ((int)0x851C), - TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT = ((int)0x8518), - REFLECTION_MAP_EXT = ((int)0x8512), - TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT = ((int)0x851A), - TEXTURE_CUBE_MAP_POSITIVE_Z_EXT = ((int)0x8519), - TEXTURE_CUBE_MAP_POSITIVE_Y_EXT = ((int)0x8517), - TEXTURE_CUBE_MAP_EXT = ((int)0x8513), TEXTURE_CUBE_MAP_NEGATIVE_X_EXT = ((int)0x8516), - PROXY_TEXTURE_CUBE_MAP_EXT = ((int)0x851B), - NORMAL_MAP_EXT = ((int)0x8511), + TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT = ((int)0x8518), + TEXTURE_CUBE_MAP_POSITIVE_Y_EXT = ((int)0x8517), + TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT = ((int)0x851A), TEXTURE_BINDING_CUBE_MAP_EXT = ((int)0x8514), + REFLECTION_MAP_EXT = ((int)0x8512), + TEXTURE_CUBE_MAP_EXT = ((int)0x8513), + MAX_CUBE_MAP_TEXTURE_SIZE_EXT = ((int)0x851C), + TEXTURE_CUBE_MAP_POSITIVE_Z_EXT = ((int)0x8519), + PROXY_TEXTURE_CUBE_MAP_EXT = ((int)0x851B), TEXTURE_CUBE_MAP_POSITIVE_X_EXT = ((int)0x8515), + NORMAL_MAP_EXT = ((int)0x8511), } public enum SUN_convolution_border_modes @@ -6940,9 +6940,9 @@ namespace OpenTK.OpenGL public enum EXT_texture_lod_bias { - TEXTURE_LOD_BIAS_EXT = ((int)0x8501), - TEXTURE_FILTER_CONTROL_EXT = ((int)0x8500), MAX_TEXTURE_LOD_BIAS_EXT = ((int)0x84FD), + TEXTURE_FILTER_CONTROL_EXT = ((int)0x8500), + TEXTURE_LOD_BIAS_EXT = ((int)0x8501), } public enum EXT_texture_filter_anisotropic @@ -6953,19 +6953,19 @@ namespace OpenTK.OpenGL public enum EXT_vertex_weighting { - VERTEX_WEIGHTING_EXT = ((int)0x8509), - MODELVIEW1_EXT = ((int)0x850A), - MODELVIEW1_STACK_DEPTH_EXT = ((int)0x8502), - MODELVIEW1_MATRIX_EXT = ((int)0x8506), - VERTEX_WEIGHT_ARRAY_EXT = ((int)0x850C), - VERTEX_WEIGHT_ARRAY_POINTER_EXT = ((int)0x8510), - MODELVIEW0_STACK_DEPTH_EXT = ((int)All.MODELVIEW_STACK_DEPTH), - VERTEX_WEIGHT_ARRAY_TYPE_EXT = ((int)0x850E), CURRENT_VERTEX_WEIGHT_EXT = ((int)0x850B), - VERTEX_WEIGHT_ARRAY_SIZE_EXT = ((int)0x850D), MODELVIEW0_MATRIX_EXT = ((int)All.MODELVIEW_MATRIX), + VERTEX_WEIGHT_ARRAY_EXT = ((int)0x850C), + MODELVIEW1_MATRIX_EXT = ((int)0x8506), + VERTEX_WEIGHT_ARRAY_TYPE_EXT = ((int)0x850E), VERTEX_WEIGHT_ARRAY_STRIDE_EXT = ((int)0x850F), + MODELVIEW1_EXT = ((int)0x850A), + VERTEX_WEIGHTING_EXT = ((int)0x8509), MODELVIEW0_EXT = ((int)All.MODELVIEW), + MODELVIEW1_STACK_DEPTH_EXT = ((int)0x8502), + VERTEX_WEIGHT_ARRAY_POINTER_EXT = ((int)0x8510), + VERTEX_WEIGHT_ARRAY_SIZE_EXT = ((int)0x850D), + MODELVIEW0_STACK_DEPTH_EXT = ((int)All.MODELVIEW_STACK_DEPTH), } public enum NV_light_max_exponent @@ -6976,85 +6976,85 @@ namespace OpenTK.OpenGL public enum NV_vertex_array_range { - VERTEX_ARRAY_RANGE_VALID_NV = ((int)0x851F), - VERTEX_ARRAY_RANGE_POINTER_NV = ((int)0x8521), MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV = ((int)0x8520), + VERTEX_ARRAY_RANGE_VALID_NV = ((int)0x851F), VERTEX_ARRAY_RANGE_LENGTH_NV = ((int)0x851E), + VERTEX_ARRAY_RANGE_POINTER_NV = ((int)0x8521), VERTEX_ARRAY_RANGE_NV = ((int)0x851D), } public enum NV_register_combiners { - CONSTANT_COLOR1_NV = ((int)0x852B), - SCALE_BY_TWO_NV = ((int)0x853E), - COLOR_SUM_CLAMP_NV = ((int)0x854F), - SCALE_BY_FOUR_NV = ((int)0x853F), - TEXTURE1_ARB = ((int)ARB_multitexture.TEXTURE1_ARB), - SECONDARY_COLOR_NV = ((int)0x852D), - NONE = ((int)DrawBufferMode.NONE), - MAX_GENERAL_COMBINERS_NV = ((int)0x854D), - HALF_BIAS_NEGATE_NV = ((int)0x853B), - ZERO = ((int)BlendingFactorDest.ZERO), - UNSIGNED_IDENTITY_NV = ((int)0x8536), - COMBINER1_NV = ((int)0x8551), - FOG = ((int)GetPName.FOG), - BIAS_BY_NEGATIVE_ONE_HALF_NV = ((int)0x8541), - COMBINER_COMPONENT_USAGE_NV = ((int)0x8544), - SPARE1_NV = ((int)0x852F), - TEXTURE0_ARB = ((int)ARB_multitexture.TEXTURE0_ARB), - EXPAND_NORMAL_NV = ((int)0x8538), - VARIABLE_C_NV = ((int)0x8525), - COMBINER6_NV = ((int)0x8556), - VARIABLE_G_NV = ((int)0x8529), COMBINER_MAPPING_NV = ((int)0x8543), - SIGNED_NEGATE_NV = ((int)0x853D), - VARIABLE_E_NV = ((int)0x8527), - HALF_BIAS_NORMAL_NV = ((int)0x853A), - SIGNED_IDENTITY_NV = ((int)0x853C), - REGISTER_COMBINERS_NV = ((int)0x8522), - EXPAND_NEGATE_NV = ((int)0x8539), - COMBINER3_NV = ((int)0x8553), - COMBINER_AB_OUTPUT_NV = ((int)0x854A), - CONSTANT_COLOR0_NV = ((int)0x852A), - COMBINER4_NV = ((int)0x8554), - COMBINER_INPUT_NV = ((int)0x8542), - COMBINER_CD_OUTPUT_NV = ((int)0x854B), - COMBINER_AB_DOT_PRODUCT_NV = ((int)0x8545), - COMBINER2_NV = ((int)0x8552), - COMBINER7_NV = ((int)0x8557), - COMBINER_SUM_OUTPUT_NV = ((int)0x854C), - SCALE_BY_ONE_HALF_NV = ((int)0x8540), - VARIABLE_F_NV = ((int)0x8528), SPARE0_PLUS_SECONDARY_COLOR_NV = ((int)0x8532), + COMBINER_CD_OUTPUT_NV = ((int)0x854B), + ZERO = ((int)BlendingFactorDest.ZERO), + COMBINER_INPUT_NV = ((int)0x8542), + COMBINER5_NV = ((int)0x8555), + SIGNED_NEGATE_NV = ((int)0x853D), + COMBINER_SUM_OUTPUT_NV = ((int)0x854C), + SCALE_BY_TWO_NV = ((int)0x853E), + REGISTER_COMBINERS_NV = ((int)0x8522), + COMBINER6_NV = ((int)0x8556), + SCALE_BY_FOUR_NV = ((int)0x853F), + E_TIMES_F_NV = ((int)0x8531), + PRIMARY_COLOR_NV = ((int)0x852C), + COMBINER2_NV = ((int)0x8552), + COMBINER3_NV = ((int)0x8553), + COMBINER0_NV = ((int)0x8550), + COMBINER1_NV = ((int)0x8551), + VARIABLE_F_NV = ((int)0x8528), + FOG = ((int)GetPName.FOG), + SIGNED_IDENTITY_NV = ((int)0x853C), + SECONDARY_COLOR_NV = ((int)0x852D), + SCALE_BY_ONE_HALF_NV = ((int)0x8540), + COMBINER_AB_OUTPUT_NV = ((int)0x854A), + NONE = ((int)DrawBufferMode.NONE), + CONSTANT_COLOR0_NV = ((int)0x852A), + COMBINER_CD_DOT_PRODUCT_NV = ((int)0x8546), + TEXTURE0_ARB = ((int)ARB_multitexture.TEXTURE0_ARB), UNSIGNED_INVERT_NV = ((int)0x8537), NUM_GENERAL_COMBINERS_NV = ((int)0x854E), - COMBINER_MUX_SUM_NV = ((int)0x8547), - SPARE0_NV = ((int)0x852E), - DISCARD_NV = ((int)0x8530), - COMBINER_SCALE_NV = ((int)0x8548), - VARIABLE_D_NV = ((int)0x8526), - PRIMARY_COLOR_NV = ((int)0x852C), - COMBINER_CD_DOT_PRODUCT_NV = ((int)0x8546), - E_TIMES_F_NV = ((int)0x8531), - COMBINER0_NV = ((int)0x8550), COMBINER_BIAS_NV = ((int)0x8549), - COMBINER5_NV = ((int)0x8555), VARIABLE_B_NV = ((int)0x8524), + EXPAND_NORMAL_NV = ((int)0x8538), + VARIABLE_C_NV = ((int)0x8525), + HALF_BIAS_NORMAL_NV = ((int)0x853A), + COMBINER_COMPONENT_USAGE_NV = ((int)0x8544), + COMBINER_SCALE_NV = ((int)0x8548), VARIABLE_A_NV = ((int)0x8523), + HALF_BIAS_NEGATE_NV = ((int)0x853B), + DISCARD_NV = ((int)0x8530), + COMBINER_AB_DOT_PRODUCT_NV = ((int)0x8545), + UNSIGNED_IDENTITY_NV = ((int)0x8536), + EXPAND_NEGATE_NV = ((int)0x8539), + VARIABLE_D_NV = ((int)0x8526), + BIAS_BY_NEGATIVE_ONE_HALF_NV = ((int)0x8541), + VARIABLE_E_NV = ((int)0x8527), + COMBINER_MUX_SUM_NV = ((int)0x8547), + MAX_GENERAL_COMBINERS_NV = ((int)0x854D), + COMBINER7_NV = ((int)0x8557), + COMBINER4_NV = ((int)0x8554), + COLOR_SUM_CLAMP_NV = ((int)0x854F), + TEXTURE1_ARB = ((int)ARB_multitexture.TEXTURE1_ARB), + SPARE1_NV = ((int)0x852F), + CONSTANT_COLOR1_NV = ((int)0x852B), + SPARE0_NV = ((int)0x852E), + VARIABLE_G_NV = ((int)0x8529), } public enum NV_fog_distance { - FOG_DISTANCE_MODE_NV = ((int)0x855A), EYE_PLANE = ((int)TextureGenParameter.EYE_PLANE), + FOG_DISTANCE_MODE_NV = ((int)0x855A), EYE_RADIAL_NV = ((int)0x855B), EYE_PLANE_ABSOLUTE_NV = ((int)0x855C), } public enum NV_texgen_emboss { - EMBOSS_LIGHT_NV = ((int)0x855D), EMBOSS_CONSTANT_NV = ((int)0x855E), + EMBOSS_LIGHT_NV = ((int)0x855D), EMBOSS_MAP_NV = ((int)0x855F), } @@ -7064,11 +7064,11 @@ namespace OpenTK.OpenGL public enum NV_texture_env_combine4 { - SOURCE3_RGB_NV = ((int)0x8583), - OPERAND3_ALPHA_NV = ((int)0x859B), COMBINE4_NV = ((int)0x8503), + SOURCE3_RGB_NV = ((int)0x8583), SOURCE3_ALPHA_NV = ((int)0x858B), OPERAND3_RGB_NV = ((int)0x8593), + OPERAND3_ALPHA_NV = ((int)0x859B), } public enum MESA_resize_buffers @@ -7090,58 +7090,58 @@ namespace OpenTK.OpenGL public enum IBM_vertex_array_lists { - FOG_COORDINATE_ARRAY_LIST_IBM = ((int)103076), - VERTEX_ARRAY_LIST_STRIDE_IBM = ((int)103080), + INDEX_ARRAY_LIST_IBM = ((int)103073), FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM = ((int)103086), + SECONDARY_COLOR_ARRAY_LIST_IBM = ((int)103077), NORMAL_ARRAY_LIST_IBM = ((int)103071), - SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM = ((int)103087), + COLOR_ARRAY_LIST_STRIDE_IBM = ((int)103082), + TEXTURE_COORD_ARRAY_LIST_IBM = ((int)103074), EDGE_FLAG_ARRAY_LIST_STRIDE_IBM = ((int)103085), COLOR_ARRAY_LIST_IBM = ((int)103072), - TEXTURE_COORD_ARRAY_LIST_IBM = ((int)103074), - COLOR_ARRAY_LIST_STRIDE_IBM = ((int)103082), - NORMAL_ARRAY_LIST_STRIDE_IBM = ((int)103081), - TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM = ((int)103084), INDEX_ARRAY_LIST_STRIDE_IBM = ((int)103083), - INDEX_ARRAY_LIST_IBM = ((int)103073), - SECONDARY_COLOR_ARRAY_LIST_IBM = ((int)103077), EDGE_FLAG_ARRAY_LIST_IBM = ((int)103075), + SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM = ((int)103087), + TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM = ((int)103084), + FOG_COORDINATE_ARRAY_LIST_IBM = ((int)103076), VERTEX_ARRAY_LIST_IBM = ((int)103070), + VERTEX_ARRAY_LIST_STRIDE_IBM = ((int)103080), + NORMAL_ARRAY_LIST_STRIDE_IBM = ((int)103081), } public enum SGIX_ycrcb_subsample { PIXEL_SUBSAMPLE_2424_SGIX = ((int)0x85A3), - PIXEL_SUBSAMPLE_4242_SGIX = ((int)0x85A4), - PIXEL_SUBSAMPLE_4444_SGIX = ((int)0x85A2), PACK_SUBSAMPLE_RATE_SGIX = ((int)0x85A0), + PIXEL_SUBSAMPLE_4444_SGIX = ((int)0x85A2), + PIXEL_SUBSAMPLE_4242_SGIX = ((int)0x85A4), UNPACK_SUBSAMPLE_RATE_SGIX = ((int)0x85A1), } public enum SGIX_ycrcba { - YCRCB_SGIX = ((int)0x8318), YCRCBA_SGIX = ((int)0x8319), + YCRCB_SGIX = ((int)0x8318), } public enum SGI_depth_pass_instrument { - DEPTH_PASS_INSTRUMENT_SGIX = ((int)0x8310), DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX = ((int)0x8311), + DEPTH_PASS_INSTRUMENT_SGIX = ((int)0x8310), DEPTH_PASS_INSTRUMENT_MAX_SGIX = ((int)0x8312), } public enum GL_3DFX_texture_compression_FXT1 { - COMPRESSED_RGB_FXT1_3DFX = ((int)0x86B0), COMPRESSED_RGBA_FXT1_3DFX = ((int)0x86B1), + COMPRESSED_RGB_FXT1_3DFX = ((int)0x86B0), } public enum GL_3DFX_multisample { - SAMPLES_3DFX = ((int)0x86B4), SAMPLE_BUFFERS_3DFX = ((int)0x86B3), - MULTISAMPLE_3DFX = ((int)0x86B2), MULTISAMPLE_BIT_3DFX = ((int)0x20000000), + MULTISAMPLE_3DFX = ((int)0x86B2), + SAMPLES_3DFX = ((int)0x86B4), } public enum GL_3DFX_tbuffer @@ -7150,42 +7150,42 @@ namespace OpenTK.OpenGL public enum EXT_multisample { - SAMPLES_EXT = ((int)0x80A9), SAMPLE_MASK_EXT = ((int)0x80A0), - GL_4PASS_2_EXT = ((int)0x80A6), - SAMPLE_BUFFERS_EXT = ((int)0x80A8), + MULTISAMPLE_EXT = ((int)0x809D), GL_4PASS_3_EXT = ((int)0x80A7), - GL_4PASS_1_EXT = ((int)0x80A5), - SAMPLE_MASK_VALUE_EXT = ((int)0x80AA), - GL_2PASS_1_EXT = ((int)0x80A3), SAMPLE_PATTERN_EXT = ((int)0x80AC), + SAMPLE_ALPHA_TO_MASK_EXT = ((int)0x809E), + SAMPLES_EXT = ((int)0x80A9), + SAMPLE_MASK_INVERT_EXT = ((int)0x80AB), + GL_4PASS_1_EXT = ((int)0x80A5), + MULTISAMPLE_BIT_EXT = ((int)0x20000000), + GL_4PASS_2_EXT = ((int)0x80A6), + SAMPLE_MASK_VALUE_EXT = ((int)0x80AA), + GL_2PASS_0_EXT = ((int)0x80A2), + SAMPLE_BUFFERS_EXT = ((int)0x80A8), GL_4PASS_0_EXT = ((int)0x80A4), + GL_2PASS_1_EXT = ((int)0x80A3), GL_1PASS_EXT = ((int)0x80A1), SAMPLE_ALPHA_TO_ONE_EXT = ((int)0x809F), - GL_2PASS_0_EXT = ((int)0x80A2), - MULTISAMPLE_BIT_EXT = ((int)0x20000000), - SAMPLE_ALPHA_TO_MASK_EXT = ((int)0x809E), - SAMPLE_MASK_INVERT_EXT = ((int)0x80AB), - MULTISAMPLE_EXT = ((int)0x809D), } public enum EXT_texture_env_dot3 { - DOT3_RGBA_EXT = ((int)0x8741), DOT3_RGB_EXT = ((int)0x8740), + DOT3_RGBA_EXT = ((int)0x8741), } public enum ATI_texture_mirror_once { - MIRROR_CLAMP_TO_EDGE_ATI = ((int)0x8743), MIRROR_CLAMP_ATI = ((int)0x8742), + MIRROR_CLAMP_TO_EDGE_ATI = ((int)0x8743), } public enum NV_fence { ALL_COMPLETED_NV = ((int)0x84F2), - FENCE_STATUS_NV = ((int)0x84F3), FENCE_CONDITION_NV = ((int)0x84F4), + FENCE_STATUS_NV = ((int)0x84F3), } public enum IBM_texture_mirrored_repeat @@ -7195,36 +7195,36 @@ namespace OpenTK.OpenGL public enum NV_evaluators { - EVAL_VERTEX_ATTRIB9_NV = ((int)0x86CF), - EVAL_VERTEX_ATTRIB8_NV = ((int)0x86CE), - EVAL_VERTEX_ATTRIB12_NV = ((int)0x86D2), - MAX_RATIONAL_EVAL_ORDER_NV = ((int)0x86D7), - EVAL_VERTEX_ATTRIB5_NV = ((int)0x86CB), EVAL_VERTEX_ATTRIB4_NV = ((int)0x86CA), - EVAL_VERTEX_ATTRIB7_NV = ((int)0x86CD), - EVAL_FRACTIONAL_TESSELLATION_NV = ((int)0x86C5), - MAP_ATTRIB_V_ORDER_NV = ((int)0x86C4), - EVAL_VERTEX_ATTRIB14_NV = ((int)0x86D4), - MAP_ATTRIB_U_ORDER_NV = ((int)0x86C3), - EVAL_TRIANGULAR_2D_NV = ((int)0x86C1), - EVAL_VERTEX_ATTRIB2_NV = ((int)0x86C8), + EVAL_VERTEX_ATTRIB5_NV = ((int)0x86CB), EVAL_VERTEX_ATTRIB15_NV = ((int)0x86D5), - EVAL_VERTEX_ATTRIB13_NV = ((int)0x86D3), - EVAL_VERTEX_ATTRIB11_NV = ((int)0x86D1), - EVAL_VERTEX_ATTRIB6_NV = ((int)0x86CC), - EVAL_VERTEX_ATTRIB1_NV = ((int)0x86C7), - EVAL_VERTEX_ATTRIB0_NV = ((int)0x86C6), - EVAL_VERTEX_ATTRIB3_NV = ((int)0x86C9), - MAP_TESSELLATION_NV = ((int)0x86C2), - EVAL_2D_NV = ((int)0x86C0), - EVAL_VERTEX_ATTRIB10_NV = ((int)0x86D0), MAX_MAP_TESSELLATION_NV = ((int)0x86D6), + EVAL_VERTEX_ATTRIB3_NV = ((int)0x86C9), + EVAL_VERTEX_ATTRIB12_NV = ((int)0x86D2), + EVAL_VERTEX_ATTRIB14_NV = ((int)0x86D4), + EVAL_VERTEX_ATTRIB13_NV = ((int)0x86D3), + MAX_RATIONAL_EVAL_ORDER_NV = ((int)0x86D7), + MAP_TESSELLATION_NV = ((int)0x86C2), + MAP_ATTRIB_U_ORDER_NV = ((int)0x86C3), + EVAL_VERTEX_ATTRIB8_NV = ((int)0x86CE), + EVAL_VERTEX_ATTRIB11_NV = ((int)0x86D1), + EVAL_VERTEX_ATTRIB9_NV = ((int)0x86CF), + EVAL_VERTEX_ATTRIB7_NV = ((int)0x86CD), + EVAL_VERTEX_ATTRIB10_NV = ((int)0x86D0), + EVAL_VERTEX_ATTRIB2_NV = ((int)0x86C8), + EVAL_VERTEX_ATTRIB0_NV = ((int)0x86C6), + EVAL_2D_NV = ((int)0x86C0), + EVAL_VERTEX_ATTRIB1_NV = ((int)0x86C7), + MAP_ATTRIB_V_ORDER_NV = ((int)0x86C4), + EVAL_TRIANGULAR_2D_NV = ((int)0x86C1), + EVAL_FRACTIONAL_TESSELLATION_NV = ((int)0x86C5), + EVAL_VERTEX_ATTRIB6_NV = ((int)0x86CC), } public enum NV_packed_depth_stencil { - UNSIGNED_INT_24_8_NV = ((int)0x84FA), DEPTH_STENCIL_NV = ((int)0x84F9), + UNSIGNED_INT_24_8_NV = ((int)0x84FA), } public enum NV_register_combiners2 @@ -7238,87 +7238,87 @@ namespace OpenTK.OpenGL public enum NV_texture_rectangle { - TEXTURE_RECTANGLE_NV = ((int)0x84F5), TEXTURE_BINDING_RECTANGLE_NV = ((int)0x84F6), - MAX_RECTANGLE_TEXTURE_SIZE_NV = ((int)0x84F8), PROXY_TEXTURE_RECTANGLE_NV = ((int)0x84F7), + MAX_RECTANGLE_TEXTURE_SIZE_NV = ((int)0x84F8), + TEXTURE_RECTANGLE_NV = ((int)0x84F5), } public enum NV_texture_shader { - TEXTURE_SHADER_NV = ((int)0x86DE), - DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV = ((int)0x86F1), - CONST_EYE_NV = ((int)0x86E5), - DOT_PRODUCT_NV = ((int)0x86EC), - MAGNITUDE_BIAS_NV = ((int)0x8718), - SHADER_OPERATION_NV = ((int)0x86DF), - OFFSET_TEXTURE_2D_NV = ((int)0x86E8), - DOT_PRODUCT_REFLECT_CUBE_MAP_NV = ((int)0x86F2), - UNSIGNED_INT_S8_S8_8_8_NV = ((int)0x86DA), - SIGNED_RGBA8_NV = ((int)0x86FC), - SIGNED_LUMINANCE_NV = ((int)0x8701), - SIGNED_HILO16_NV = ((int)0x86FA), - SIGNED_RGB_UNSIGNED_ALPHA_NV = ((int)0x870C), - TEXTURE_MAG_SIZE_NV = ((int)0x871F), - UNSIGNED_INT_8_8_S8_S8_REV_NV = ((int)0x86DB), - HILO16_NV = ((int)0x86F8), - DSDT8_MAG8_INTENSITY8_NV = ((int)0x870B), - VIBRANCE_SCALE_NV = ((int)0x8713), - DOT_PRODUCT_TEXTURE_RECTANGLE_NV = ((int)0x864E), - HILO_NV = ((int)0x86F4), - DOT_PRODUCT_TEXTURE_CUBE_MAP_NV = ((int)0x86F0), - DSDT8_MAG8_NV = ((int)0x870A), - SIGNED_ALPHA_NV = ((int)0x8705), - DT_BIAS_NV = ((int)0x8717), - DSDT_MAG_NV = ((int)0x86F6), - DOT_PRODUCT_TEXTURE_2D_NV = ((int)0x86EE), - LO_SCALE_NV = ((int)0x870F), - SIGNED_INTENSITY_NV = ((int)0x8707), - TEXTURE_HI_SIZE_NV = ((int)0x871B), - DSDT8_NV = ((int)0x8709), - TEXTURE_BORDER_VALUES_NV = ((int)0x871A), - SIGNED_ALPHA8_NV = ((int)0x8706), - OFFSET_TEXTURE_BIAS_NV = ((int)0x86E3), - OFFSET_TEXTURE_SCALE_NV = ((int)0x86E2), - OFFSET_TEXTURE_2D_BIAS_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_BIAS_NV), - VIBRANCE_BIAS_NV = ((int)0x8719), - OFFSET_TEXTURE_MATRIX_NV = ((int)0x86E1), - OFFSET_TEXTURE_RECTANGLE_SCALE_NV = ((int)0x864D), - MAGNITUDE_SCALE_NV = ((int)0x8712), - SIGNED_RGB8_UNSIGNED_ALPHA8_NV = ((int)0x870D), - TEXTURE_DS_SIZE_NV = ((int)0x871D), - DSDT_MAG_INTENSITY_NV = ((int)0x86DC), - SIGNED_LUMINANCE8_NV = ((int)0x8702), - TEXTURE_LO_SIZE_NV = ((int)0x871C), - SHADER_CONSISTENT_NV = ((int)0x86DD), - RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV = ((int)0x86D9), - SIGNED_HILO_NV = ((int)0x86F9), - DSDT_NV = ((int)0x86F5), - CULL_FRAGMENT_NV = ((int)0x86E7), - DOT_PRODUCT_DEPTH_REPLACE_NV = ((int)0x86ED), - PREVIOUS_TEXTURE_INPUT_NV = ((int)0x86E4), - SIGNED_RGB8_NV = ((int)0x86FF), - DS_SCALE_NV = ((int)0x8710), - PASS_THROUGH_NV = ((int)0x86E6), - SIGNED_INTENSITY8_NV = ((int)0x8708), - TEXTURE_DT_SIZE_NV = ((int)0x871E), - DS_BIAS_NV = ((int)0x8716), - HI_SCALE_NV = ((int)0x870E), - HI_BIAS_NV = ((int)0x8714), - LO_BIAS_NV = ((int)0x8715), - OFFSET_TEXTURE_RECTANGLE_NV = ((int)0x864C), - OFFSET_TEXTURE_2D_SCALE_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_SCALE_NV), DEPENDENT_GB_TEXTURE_2D_NV = ((int)0x86EA), - SIGNED_LUMINANCE8_ALPHA8_NV = ((int)0x8704), + DS_SCALE_NV = ((int)0x8710), + DSDT_MAG_INTENSITY_NV = ((int)0x86DC), + SIGNED_HILO_NV = ((int)0x86F9), DEPENDENT_AR_TEXTURE_2D_NV = ((int)0x86E9), - DSDT_MAG_VIB_NV = ((int)0x86F7), - OFFSET_TEXTURE_2D_MATRIX_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_MATRIX_NV), - SIGNED_RGB_NV = ((int)0x86FE), - DT_SCALE_NV = ((int)0x8711), - SIGNED_RGBA_NV = ((int)0x86FB), - CULL_MODES_NV = ((int)0x86E0), + OFFSET_TEXTURE_SCALE_NV = ((int)0x86E2), + MAGNITUDE_SCALE_NV = ((int)0x8712), + CULL_FRAGMENT_NV = ((int)0x86E7), + OFFSET_TEXTURE_2D_SCALE_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_SCALE_NV), + TEXTURE_DT_SIZE_NV = ((int)0x871E), + OFFSET_TEXTURE_2D_NV = ((int)0x86E8), + UNSIGNED_INT_S8_S8_8_8_NV = ((int)0x86DA), + VIBRANCE_SCALE_NV = ((int)0x8713), + PREVIOUS_TEXTURE_INPUT_NV = ((int)0x86E4), + SIGNED_LUMINANCE_NV = ((int)0x8701), + DS_BIAS_NV = ((int)0x8716), + SIGNED_RGB8_NV = ((int)0x86FF), + DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV = ((int)0x86F1), + DSDT8_MAG8_INTENSITY8_NV = ((int)0x870B), + VIBRANCE_BIAS_NV = ((int)0x8719), + SIGNED_ALPHA8_NV = ((int)0x8706), + LO_BIAS_NV = ((int)0x8715), + UNSIGNED_INT_8_8_S8_S8_REV_NV = ((int)0x86DB), + DOT_PRODUCT_NV = ((int)0x86EC), + DOT_PRODUCT_TEXTURE_2D_NV = ((int)0x86EE), + SIGNED_RGB8_UNSIGNED_ALPHA8_NV = ((int)0x870D), + DOT_PRODUCT_TEXTURE_RECTANGLE_NV = ((int)0x864E), + DT_BIAS_NV = ((int)0x8717), SIGNED_LUMINANCE_ALPHA_NV = ((int)0x8703), + OFFSET_TEXTURE_BIAS_NV = ((int)0x86E3), + OFFSET_TEXTURE_2D_MATRIX_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_MATRIX_NV), + HILO16_NV = ((int)0x86F8), + TEXTURE_BORDER_VALUES_NV = ((int)0x871A), + SIGNED_ALPHA_NV = ((int)0x8705), + OFFSET_TEXTURE_MATRIX_NV = ((int)0x86E1), + TEXTURE_SHADER_NV = ((int)0x86DE), + OFFSET_TEXTURE_RECTANGLE_NV = ((int)0x864C), + HI_BIAS_NV = ((int)0x8714), + DSDT8_NV = ((int)0x8709), + SHADER_CONSISTENT_NV = ((int)0x86DD), + DSDT_MAG_NV = ((int)0x86F6), + TEXTURE_LO_SIZE_NV = ((int)0x871C), + DOT_PRODUCT_REFLECT_CUBE_MAP_NV = ((int)0x86F2), + DSDT8_MAG8_NV = ((int)0x870A), + SIGNED_RGBA8_NV = ((int)0x86FC), + DOT_PRODUCT_TEXTURE_CUBE_MAP_NV = ((int)0x86F0), + CULL_MODES_NV = ((int)0x86E0), + SIGNED_RGB_NV = ((int)0x86FE), + OFFSET_TEXTURE_RECTANGLE_SCALE_NV = ((int)0x864D), + DOT_PRODUCT_DEPTH_REPLACE_NV = ((int)0x86ED), + CONST_EYE_NV = ((int)0x86E5), + SIGNED_RGBA_NV = ((int)0x86FB), + RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV = ((int)0x86D9), + SIGNED_INTENSITY8_NV = ((int)0x8708), + SHADER_OPERATION_NV = ((int)0x86DF), + PASS_THROUGH_NV = ((int)0x86E6), + DSDT_NV = ((int)0x86F5), + SIGNED_RGB_UNSIGNED_ALPHA_NV = ((int)0x870C), + OFFSET_TEXTURE_2D_BIAS_NV = ((int)NV_texture_shader.OFFSET_TEXTURE_BIAS_NV), + TEXTURE_MAG_SIZE_NV = ((int)0x871F), + SIGNED_LUMINANCE8_ALPHA8_NV = ((int)0x8704), + SIGNED_HILO16_NV = ((int)0x86FA), + SIGNED_INTENSITY_NV = ((int)0x8707), + HILO_NV = ((int)0x86F4), DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV = ((int)0x86F3), + LO_SCALE_NV = ((int)0x870F), + MAGNITUDE_BIAS_NV = ((int)0x8718), + HI_SCALE_NV = ((int)0x870E), + TEXTURE_DS_SIZE_NV = ((int)0x871D), + DT_SCALE_NV = ((int)0x8711), + SIGNED_LUMINANCE8_NV = ((int)0x8702), + DSDT_MAG_VIB_NV = ((int)0x86F7), + TEXTURE_HI_SIZE_NV = ((int)0x871B), } public enum NV_texture_shader2 @@ -7333,89 +7333,89 @@ namespace OpenTK.OpenGL public enum NV_vertex_program { - ATTRIB_ARRAY_SIZE_NV = ((int)0x8623), VERTEX_PROGRAM_TWO_SIDE_NV = ((int)0x8643), - PROGRAM_TARGET_NV = ((int)0x8646), - VERTEX_ATTRIB_ARRAY11_NV = ((int)0x865B), - PROGRAM_ERROR_POSITION_NV = ((int)0x864B), - MAP2_VERTEX_ATTRIB4_4_NV = ((int)0x8674), - VERTEX_ATTRIB_ARRAY6_NV = ((int)0x8656), - VERTEX_ATTRIB_ARRAY3_NV = ((int)0x8653), - CURRENT_ATTRIB_NV = ((int)0x8626), - MAP1_VERTEX_ATTRIB2_4_NV = ((int)0x8662), - VERTEX_PROGRAM_POINT_SIZE_NV = ((int)0x8642), - MATRIX0_NV = ((int)0x8630), - CURRENT_MATRIX_NV = ((int)0x8641), - MAX_TRACK_MATRICES_NV = ((int)0x862F), - VERTEX_ATTRIB_ARRAY2_NV = ((int)0x8652), - MAP2_VERTEX_ATTRIB6_4_NV = ((int)0x8676), - VERTEX_ATTRIB_ARRAY5_NV = ((int)0x8655), - TRACK_MATRIX_NV = ((int)0x8648), - MAP2_VERTEX_ATTRIB0_4_NV = ((int)0x8670), - MAP1_VERTEX_ATTRIB9_4_NV = ((int)0x8669), - MATRIX5_NV = ((int)0x8635), - PROGRAM_STRING_NV = ((int)0x8628), - IDENTITY_NV = ((int)0x862A), - VERTEX_ATTRIB_ARRAY13_NV = ((int)0x865D), - MAP2_VERTEX_ATTRIB14_4_NV = ((int)0x867E), - MAP2_VERTEX_ATTRIB15_4_NV = ((int)0x867F), - PROGRAM_LENGTH_NV = ((int)0x8627), - ATTRIB_ARRAY_STRIDE_NV = ((int)0x8624), - MATRIX2_NV = ((int)0x8632), - MAP2_VERTEX_ATTRIB2_4_NV = ((int)0x8672), - MATRIX1_NV = ((int)0x8631), - VERTEX_ATTRIB_ARRAY10_NV = ((int)0x865A), - PROGRAM_RESIDENT_NV = ((int)0x8647), - MAP1_VERTEX_ATTRIB11_4_NV = ((int)0x866B), - ATTRIB_ARRAY_POINTER_NV = ((int)0x8645), - MAP2_VERTEX_ATTRIB9_4_NV = ((int)0x8679), - VERTEX_STATE_PROGRAM_NV = ((int)0x8621), - MAP2_VERTEX_ATTRIB8_4_NV = ((int)0x8678), - INVERSE_TRANSPOSE_NV = ((int)0x862D), - MATRIX7_NV = ((int)0x8637), - MAP1_VERTEX_ATTRIB7_4_NV = ((int)0x8667), - MAX_TRACK_MATRIX_STACK_DEPTH_NV = ((int)0x862E), - VERTEX_ATTRIB_ARRAY15_NV = ((int)0x865F), - TRACK_MATRIX_TRANSFORM_NV = ((int)0x8649), - MAP1_VERTEX_ATTRIB10_4_NV = ((int)0x866A), - VERTEX_ATTRIB_ARRAY8_NV = ((int)0x8658), - MAP1_VERTEX_ATTRIB1_4_NV = ((int)0x8661), - MAP1_VERTEX_ATTRIB8_4_NV = ((int)0x8668), - TRANSPOSE_NV = ((int)0x862C), - MATRIX4_NV = ((int)0x8634), - MAP1_VERTEX_ATTRIB5_4_NV = ((int)0x8665), - INVERSE_NV = ((int)0x862B), - MAP2_VERTEX_ATTRIB5_4_NV = ((int)0x8675), - VERTEX_PROGRAM_BINDING_NV = ((int)0x864A), - MAP1_VERTEX_ATTRIB3_4_NV = ((int)0x8663), - CURRENT_MATRIX_STACK_DEPTH_NV = ((int)0x8640), - MAP1_VERTEX_ATTRIB13_4_NV = ((int)0x866D), MAP1_VERTEX_ATTRIB12_4_NV = ((int)0x866C), - MAP2_VERTEX_ATTRIB12_4_NV = ((int)0x867C), - MAP2_VERTEX_ATTRIB13_4_NV = ((int)0x867D), + ATTRIB_ARRAY_SIZE_NV = ((int)0x8623), + MATRIX7_NV = ((int)0x8637), + MAP2_VERTEX_ATTRIB14_4_NV = ((int)0x867E), + VERTEX_ATTRIB_ARRAY2_NV = ((int)0x8652), + MAP2_VERTEX_ATTRIB15_4_NV = ((int)0x867F), VERTEX_ATTRIB_ARRAY9_NV = ((int)0x8659), - PROGRAM_PARAMETER_NV = ((int)0x8644), - MAP2_VERTEX_ATTRIB1_4_NV = ((int)0x8671), - MATRIX6_NV = ((int)0x8636), - VERTEX_PROGRAM_NV = ((int)0x8620), - MAP1_VERTEX_ATTRIB4_4_NV = ((int)0x8664), - MODELVIEW_PROJECTION_NV = ((int)0x8629), - MAP2_VERTEX_ATTRIB10_4_NV = ((int)0x867A), - MAP2_VERTEX_ATTRIB11_4_NV = ((int)0x867B), - MAP2_VERTEX_ATTRIB7_4_NV = ((int)0x8677), - VERTEX_ATTRIB_ARRAY14_NV = ((int)0x865E), - VERTEX_ATTRIB_ARRAY4_NV = ((int)0x8654), - VERTEX_ATTRIB_ARRAY1_NV = ((int)0x8651), + MAP2_VERTEX_ATTRIB12_4_NV = ((int)0x867C), MAP2_VERTEX_ATTRIB3_4_NV = ((int)0x8673), - MAP1_VERTEX_ATTRIB6_4_NV = ((int)0x8666), - ATTRIB_ARRAY_TYPE_NV = ((int)0x8625), - MATRIX3_NV = ((int)0x8633), - VERTEX_ATTRIB_ARRAY12_NV = ((int)0x865C), - VERTEX_ATTRIB_ARRAY7_NV = ((int)0x8657), + VERTEX_PROGRAM_POINT_SIZE_NV = ((int)0x8642), + MODELVIEW_PROJECTION_NV = ((int)0x8629), + MAP2_VERTEX_ATTRIB2_4_NV = ((int)0x8672), + MAP2_VERTEX_ATTRIB11_4_NV = ((int)0x867B), + VERTEX_ATTRIB_ARRAY8_NV = ((int)0x8658), + CURRENT_MATRIX_NV = ((int)0x8641), + VERTEX_PROGRAM_BINDING_NV = ((int)0x864A), VERTEX_ATTRIB_ARRAY0_NV = ((int)0x8650), - MAP1_VERTEX_ATTRIB0_4_NV = ((int)0x8660), - MAP1_VERTEX_ATTRIB15_4_NV = ((int)0x866F), + MAP2_VERTEX_ATTRIB1_4_NV = ((int)0x8671), + VERTEX_ATTRIB_ARRAY7_NV = ((int)0x8657), + PROGRAM_PARAMETER_NV = ((int)0x8644), + VERTEX_PROGRAM_NV = ((int)0x8620), + ATTRIB_ARRAY_POINTER_NV = ((int)0x8645), + PROGRAM_STRING_NV = ((int)0x8628), + MAP2_VERTEX_ATTRIB0_4_NV = ((int)0x8670), + VERTEX_ATTRIB_ARRAY4_NV = ((int)0x8654), + MAP1_VERTEX_ATTRIB7_4_NV = ((int)0x8667), + PROGRAM_TARGET_NV = ((int)0x8646), + MAP1_VERTEX_ATTRIB11_4_NV = ((int)0x866B), + MAP2_VERTEX_ATTRIB7_4_NV = ((int)0x8677), + VERTEX_ATTRIB_ARRAY6_NV = ((int)0x8656), + MAP1_VERTEX_ATTRIB8_4_NV = ((int)0x8668), + VERTEX_ATTRIB_ARRAY5_NV = ((int)0x8655), + VERTEX_STATE_PROGRAM_NV = ((int)0x8621), + MAP1_VERTEX_ATTRIB9_4_NV = ((int)0x8669), + IDENTITY_NV = ((int)0x862A), + MAP2_VERTEX_ATTRIB6_4_NV = ((int)0x8676), + MATRIX4_NV = ((int)0x8634), + PROGRAM_RESIDENT_NV = ((int)0x8647), + MAP1_VERTEX_ATTRIB5_4_NV = ((int)0x8665), + MAP2_VERTEX_ATTRIB4_4_NV = ((int)0x8674), + MAP1_VERTEX_ATTRIB6_4_NV = ((int)0x8666), + MAP1_VERTEX_ATTRIB13_4_NV = ((int)0x866D), + MAP2_VERTEX_ATTRIB5_4_NV = ((int)0x8675), + MAP1_VERTEX_ATTRIB10_4_NV = ((int)0x866A), + MAP1_VERTEX_ATTRIB1_4_NV = ((int)0x8661), + MAP2_VERTEX_ATTRIB13_4_NV = ((int)0x867D), + VERTEX_ATTRIB_ARRAY3_NV = ((int)0x8653), + ATTRIB_ARRAY_TYPE_NV = ((int)0x8625), MAP1_VERTEX_ATTRIB14_4_NV = ((int)0x866E), + MAP1_VERTEX_ATTRIB2_4_NV = ((int)0x8662), + TRACK_MATRIX_TRANSFORM_NV = ((int)0x8649), + MATRIX0_NV = ((int)0x8630), + MAP1_VERTEX_ATTRIB3_4_NV = ((int)0x8663), + MAP2_VERTEX_ATTRIB10_4_NV = ((int)0x867A), + INVERSE_NV = ((int)0x862B), + VERTEX_ATTRIB_ARRAY14_NV = ((int)0x865E), + VERTEX_ATTRIB_ARRAY15_NV = ((int)0x865F), + VERTEX_ATTRIB_ARRAY12_NV = ((int)0x865C), + MAX_TRACK_MATRICES_NV = ((int)0x862F), + MAP1_VERTEX_ATTRIB4_4_NV = ((int)0x8664), + VERTEX_ATTRIB_ARRAY11_NV = ((int)0x865B), + VERTEX_ATTRIB_ARRAY13_NV = ((int)0x865D), + VERTEX_ATTRIB_ARRAY10_NV = ((int)0x865A), + MATRIX6_NV = ((int)0x8636), + PROGRAM_LENGTH_NV = ((int)0x8627), + MAP1_VERTEX_ATTRIB0_4_NV = ((int)0x8660), + VERTEX_ATTRIB_ARRAY1_NV = ((int)0x8651), + MAP1_VERTEX_ATTRIB15_4_NV = ((int)0x866F), + MAP2_VERTEX_ATTRIB9_4_NV = ((int)0x8679), + INVERSE_TRANSPOSE_NV = ((int)0x862D), + PROGRAM_ERROR_POSITION_NV = ((int)0x864B), + TRACK_MATRIX_NV = ((int)0x8648), + MAP2_VERTEX_ATTRIB8_4_NV = ((int)0x8678), + CURRENT_MATRIX_STACK_DEPTH_NV = ((int)0x8640), + MATRIX1_NV = ((int)0x8631), + ATTRIB_ARRAY_STRIDE_NV = ((int)0x8624), + MATRIX3_NV = ((int)0x8633), + MATRIX5_NV = ((int)0x8635), + TRANSPOSE_NV = ((int)0x862C), + MATRIX2_NV = ((int)0x8632), + CURRENT_ATTRIB_NV = ((int)0x8626), + MAX_TRACK_MATRIX_STACK_DEPTH_NV = ((int)0x862E), } public enum SGIX_scalebias_hint @@ -7431,310 +7431,310 @@ namespace OpenTK.OpenGL public enum OML_subsample { - FORMAT_SUBSAMPLE_244_244_OML = ((int)0x8983), FORMAT_SUBSAMPLE_24_24_OML = ((int)0x8982), + FORMAT_SUBSAMPLE_244_244_OML = ((int)0x8983), } public enum OML_resample { PACK_RESAMPLE_OML = ((int)0x8984), - RESAMPLE_REPLICATE_OML = ((int)0x8986), - UNPACK_RESAMPLE_OML = ((int)0x8985), RESAMPLE_AVERAGE_OML = ((int)0x8988), - RESAMPLE_ZERO_FILL_OML = ((int)0x8987), + RESAMPLE_REPLICATE_OML = ((int)0x8986), RESAMPLE_DECIMATE_OML = ((int)0x8989), + UNPACK_RESAMPLE_OML = ((int)0x8985), + RESAMPLE_ZERO_FILL_OML = ((int)0x8987), } public enum NV_copy_depth_to_color { - DEPTH_STENCIL_TO_RGBA_NV = ((int)0x886E), DEPTH_STENCIL_TO_BGRA_NV = ((int)0x886F), + DEPTH_STENCIL_TO_RGBA_NV = ((int)0x886E), } public enum ATI_envmap_bumpmap { - DU8DV8_ATI = ((int)0x877A), BUMP_TARGET_ATI = ((int)0x877C), BUMP_ROT_MATRIX_ATI = ((int)0x8775), + DU8DV8_ATI = ((int)0x877A), BUMP_NUM_TEX_UNITS_ATI = ((int)0x8777), - BUMP_TEX_UNITS_ATI = ((int)0x8778), - BUMP_ENVMAP_ATI = ((int)0x877B), - DUDV_ATI = ((int)0x8779), BUMP_ROT_MATRIX_SIZE_ATI = ((int)0x8776), + BUMP_ENVMAP_ATI = ((int)0x877B), + BUMP_TEX_UNITS_ATI = ((int)0x8778), + DUDV_ATI = ((int)0x8779), } public enum ATI_fragment_shader { - CON_2_ATI = ((int)0x8943), - MUL_ATI = ((int)0x8964), - CON_21_ATI = ((int)0x8956), - CON_24_ATI = ((int)0x8959), - CND0_ATI = ((int)0x896B), - NUM_LOOPBACK_COMPONENTS_ATI = ((int)0x8974), - CON_8_ATI = ((int)0x8949), - REG_28_ATI = ((int)0x893D), - REG_10_ATI = ((int)0x892B), - REG_2_ATI = ((int)0x8923), - FRAGMENT_SHADER_ATI = ((int)0x8920), - CON_1_ATI = ((int)0x8942), - NUM_INSTRUCTIONS_PER_PASS_ATI = ((int)0x8971), - REG_13_ATI = ((int)0x892E), - REG_11_ATI = ((int)0x892C), - REG_3_ATI = ((int)0x8924), - GREEN_BIT_ATI = ((int)0x00000002), - REG_8_ATI = ((int)0x8929), - CON_28_ATI = ((int)0x895D), REG_16_ATI = ((int)0x8931), + CON_12_ATI = ((int)0x894D), + REG_14_ATI = ((int)0x892F), + CON_14_ATI = ((int)0x894F), + HALF_BIT_ATI = ((int)0x00000008), + NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI = ((int)0x8973), + REG_25_ATI = ((int)0x893A), + REG_10_ATI = ((int)0x892B), + CON_6_ATI = ((int)0x8947), + REG_15_ATI = ((int)0x8930), + REG_2_ATI = ((int)0x8923), NUM_FRAGMENT_CONSTANTS_ATI = ((int)0x896F), + QUARTER_BIT_ATI = ((int)0x00000010), REG_19_ATI = ((int)0x8934), - DOT2_ADD_ATI = ((int)0x896C), - RED_BIT_ATI = ((int)0x00000001), - SWIZZLE_STRQ_ATI = ((int)0x897A), - SUB_ATI = ((int)0x8965), - CON_5_ATI = ((int)0x8946), - SWIZZLE_STR_ATI = ((int)0x8976), - LERP_ATI = ((int)0x8969), - MOV_ATI = ((int)0x8961), + CON_27_ATI = ((int)0x895C), + NUM_INSTRUCTIONS_PER_PASS_ATI = ((int)0x8971), + FRAGMENT_SHADER_ATI = ((int)0x8920), + NUM_PASSES_ATI = ((int)0x8970), + REG_28_ATI = ((int)0x893D), + CON_1_ATI = ((int)0x8942), + REG_3_ATI = ((int)0x8924), + CON_9_ATI = ((int)0x894A), + CON_4_ATI = ((int)0x8945), + CON_18_ATI = ((int)0x8953), GL_2X_BIT_ATI = ((int)0x00000001), REG_27_ATI = ((int)0x893C), - REG_25_ATI = ((int)0x893A), - SECONDARY_INTERPOLATOR_ATI = ((int)0x896D), - SWIZZLE_STQ_DQ_ATI = ((int)0x8979), - SWIZZLE_STRQ_DQ_ATI = ((int)0x897B), - CON_30_ATI = ((int)0x895F), - REG_4_ATI = ((int)0x8925), - MAD_ATI = ((int)0x8968), + REG_22_ATI = ((int)0x8937), + REG_21_ATI = ((int)0x8936), + SWIZZLE_STR_DR_ATI = ((int)0x8978), + REG_20_ATI = ((int)0x8935), + CON_21_ATI = ((int)0x8956), + MUL_ATI = ((int)0x8964), + SATURATE_BIT_ATI = ((int)0x00000040), REG_0_ATI = ((int)0x8921), - REG_5_ATI = ((int)0x8926), - CON_0_ATI = ((int)0x8941), + MOV_ATI = ((int)0x8961), + SWIZZLE_STQ_DQ_ATI = ((int)0x8979), + SWIZZLE_STQ_ATI = ((int)0x8977), + SWIZZLE_STR_ATI = ((int)0x8976), + REG_8_ATI = ((int)0x8929), + CON_10_ATI = ((int)0x894B), + CON_7_ATI = ((int)0x8948), + DOT2_ADD_ATI = ((int)0x896C), + CON_16_ATI = ((int)0x8951), + CON_22_ATI = ((int)0x8957), + REG_31_ATI = ((int)0x8940), + MAD_ATI = ((int)0x8968), + COLOR_ALPHA_PAIRING_ATI = ((int)0x8975), + CON_24_ATI = ((int)0x8959), + REG_30_ATI = ((int)0x893F), + CON_13_ATI = ((int)0x894E), REG_1_ATI = ((int)0x8922), CON_15_ATI = ((int)0x8950), REG_18_ATI = ((int)0x8933), - CON_17_ATI = ((int)0x8952), - HALF_BIT_ATI = ((int)0x00000008), - CON_25_ATI = ((int)0x895A), - CON_27_ATI = ((int)0x895C), - CND_ATI = ((int)0x896A), - NUM_PASSES_ATI = ((int)0x8970), - CON_7_ATI = ((int)0x8948), - REG_24_ATI = ((int)0x8939), - REG_22_ATI = ((int)0x8937), - ADD_ATI = ((int)0x8963), - GL_8X_BIT_ATI = ((int)0x00000004), - CON_4_ATI = ((int)0x8945), - BIAS_BIT_ATI = ((int)0x00000008), - CON_16_ATI = ((int)0x8951), - CON_10_ATI = ((int)0x894B), - REG_17_ATI = ((int)0x8932), - REG_15_ATI = ((int)0x8930), - NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI = ((int)0x8973), - CON_26_ATI = ((int)0x895B), - CON_20_ATI = ((int)0x8955), - NUM_INSTRUCTIONS_TOTAL_ATI = ((int)0x8972), - COMP_BIT_ATI = ((int)0x00000002), - COLOR_ALPHA_PAIRING_ATI = ((int)0x8975), + SECONDARY_INTERPOLATOR_ATI = ((int)0x896D), REG_9_ATI = ((int)0x892A), - EIGHTH_BIT_ATI = ((int)0x00000020), - QUARTER_BIT_ATI = ((int)0x00000010), + BLUE_BIT_ATI = ((int)0x00000004), + CON_2_ATI = ((int)0x8943), + LERP_ATI = ((int)0x8969), + REG_17_ATI = ((int)0x8932), + REG_12_ATI = ((int)0x892D), + REG_11_ATI = ((int)0x892C), + CND0_ATI = ((int)0x896B), + REG_6_ATI = ((int)0x8927), + REG_23_ATI = ((int)0x8938), + CON_29_ATI = ((int)0x895E), + SWIZZLE_STRQ_DQ_ATI = ((int)0x897B), + NEGATE_BIT_ATI = ((int)0x00000004), + CON_31_ATI = ((int)0x8960), + CON_5_ATI = ((int)0x8946), + GL_8X_BIT_ATI = ((int)0x00000004), + CON_8_ATI = ((int)0x8949), + COMP_BIT_ATI = ((int)0x00000002), + REG_26_ATI = ((int)0x893B), + CON_26_ATI = ((int)0x895B), + REG_24_ATI = ((int)0x8939), + BIAS_BIT_ATI = ((int)0x00000008), + RED_BIT_ATI = ((int)0x00000001), + CON_28_ATI = ((int)0x895D), + CND_ATI = ((int)0x896A), + CON_17_ATI = ((int)0x8952), + REG_7_ATI = ((int)0x8928), GL_4X_BIT_ATI = ((int)0x00000002), CON_19_ATI = ((int)0x8954), - CON_3_ATI = ((int)0x8944), - CON_31_ATI = ((int)0x8960), - CON_29_ATI = ((int)0x895E), - CON_13_ATI = ((int)0x894E), - CON_14_ATI = ((int)0x894F), - CON_6_ATI = ((int)0x8947), - REG_14_ATI = ((int)0x892F), - REG_12_ATI = ((int)0x892D), - SWIZZLE_STQ_ATI = ((int)0x8977), - CON_23_ATI = ((int)0x8958), + EIGHTH_BIT_ATI = ((int)0x00000020), + CON_30_ATI = ((int)0x895F), + NUM_LOOPBACK_COMPONENTS_ATI = ((int)0x8974), + REG_4_ATI = ((int)0x8925), + CON_0_ATI = ((int)0x8941), + ADD_ATI = ((int)0x8963), + GREEN_BIT_ATI = ((int)0x00000002), DOT3_ATI = ((int)0x8966), - SWIZZLE_STR_DR_ATI = ((int)0x8978), - BLUE_BIT_ATI = ((int)0x00000004), - REG_20_ATI = ((int)0x8935), - CON_18_ATI = ((int)0x8953), - REG_30_ATI = ((int)0x893F), - DOT4_ATI = ((int)0x8967), - CON_9_ATI = ((int)0x894A), - NUM_FRAGMENT_REGISTERS_ATI = ((int)0x896E), - REG_23_ATI = ((int)0x8938), - NEGATE_BIT_ATI = ((int)0x00000004), - REG_21_ATI = ((int)0x8936), - CON_11_ATI = ((int)0x894C), - REG_6_ATI = ((int)0x8927), - CON_12_ATI = ((int)0x894D), - REG_26_ATI = ((int)0x893B), + CON_20_ATI = ((int)0x8955), REG_29_ATI = ((int)0x893E), - REG_31_ATI = ((int)0x8940), - REG_7_ATI = ((int)0x8928), - CON_22_ATI = ((int)0x8957), - SATURATE_BIT_ATI = ((int)0x00000040), + CON_11_ATI = ((int)0x894C), + CON_3_ATI = ((int)0x8944), + NUM_INSTRUCTIONS_TOTAL_ATI = ((int)0x8972), + SUB_ATI = ((int)0x8965), + NUM_FRAGMENT_REGISTERS_ATI = ((int)0x896E), + REG_13_ATI = ((int)0x892E), + CON_23_ATI = ((int)0x8958), + DOT4_ATI = ((int)0x8967), + SWIZZLE_STRQ_ATI = ((int)0x897A), + REG_5_ATI = ((int)0x8926), + CON_25_ATI = ((int)0x895A), } public enum ATI_pn_triangles { - PN_TRIANGLES_NORMAL_MODE_ATI = ((int)0x87F3), - PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI = ((int)0x87F8), - PN_TRIANGLES_POINT_MODE_ATI = ((int)0x87F2), - PN_TRIANGLES_ATI = ((int)0x87F0), PN_TRIANGLES_TESSELATION_LEVEL_ATI = ((int)0x87F4), + PN_TRIANGLES_POINT_MODE_ATI = ((int)0x87F2), + PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI = ((int)0x87F8), + PN_TRIANGLES_ATI = ((int)0x87F0), + PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI = ((int)0x87F7), PN_TRIANGLES_POINT_MODE_CUBIC_ATI = ((int)0x87F6), + PN_TRIANGLES_NORMAL_MODE_ATI = ((int)0x87F3), MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI = ((int)0x87F1), PN_TRIANGLES_POINT_MODE_LINEAR_ATI = ((int)0x87F5), - PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI = ((int)0x87F7), } public enum ATI_vertex_array_object { + ARRAY_OBJECT_BUFFER_ATI = ((int)0x8766), + PRESERVE_ATI = ((int)0x8762), + DISCARD_ATI = ((int)0x8763), STATIC_ATI = ((int)0x8760), - OBJECT_BUFFER_USAGE_ATI = ((int)0x8765), ARRAY_OBJECT_OFFSET_ATI = ((int)0x8767), OBJECT_BUFFER_SIZE_ATI = ((int)0x8764), - ARRAY_OBJECT_BUFFER_ATI = ((int)0x8766), + OBJECT_BUFFER_USAGE_ATI = ((int)0x8765), DYNAMIC_ATI = ((int)0x8761), - DISCARD_ATI = ((int)0x8763), - PRESERVE_ATI = ((int)0x8762), } public enum EXT_vertex_shader { - LOCAL_CONSTANT_VALUE_EXT = ((int)0x87EC), - VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87CF), - OP_FLOOR_EXT = ((int)0x878F), - VERTEX_SHADER_EXT = ((int)0x8780), - OUTPUT_TEXTURE_COORD11_EXT = ((int)0x87A8), - OUTPUT_TEXTURE_COORD10_EXT = ((int)0x87A7), - OUTPUT_TEXTURE_COORD13_EXT = ((int)0x87AA), - OUTPUT_TEXTURE_COORD12_EXT = ((int)0x87A9), - VARIANT_ARRAY_EXT = ((int)0x87E8), - VARIANT_ARRAY_TYPE_EXT = ((int)0x87E7), - MAX_VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87C7), - Y_EXT = ((int)0x87D6), - INVARIANT_DATATYPE_EXT = ((int)0x87EB), - VARIANT_ARRAY_STRIDE_EXT = ((int)0x87E6), - MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT = ((int)0x87CE), - OUTPUT_TEXTURE_COORD4_EXT = ((int)0x87A1), - OUTPUT_TEXTURE_COORD31_EXT = ((int)0x87BC), - OUTPUT_TEXTURE_COORD30_EXT = ((int)0x87BB), - OUTPUT_FOG_EXT = ((int)0x87BD), - LOCAL_CONSTANT_DATATYPE_EXT = ((int)0x87ED), - OP_POWER_EXT = ((int)0x8793), - NORMALIZED_RANGE_EXT = ((int)0x87E0), - NEGATIVE_Y_EXT = ((int)0x87DA), - NEGATIVE_W_EXT = ((int)0x87DC), - OP_MADD_EXT = ((int)0x8788), - OUTPUT_TEXTURE_COORD20_EXT = ((int)0x87B1), - OUTPUT_TEXTURE_COORD1_EXT = ((int)0x879E), - OP_RECIP_SQRT_EXT = ((int)0x8795), - INVARIANT_VALUE_EXT = ((int)0x87EA), - OP_CROSS_PRODUCT_EXT = ((int)0x8797), - OP_MIN_EXT = ((int)0x878B), - Z_EXT = ((int)0x87D7), - OP_CLAMP_EXT = ((int)0x878E), - NEGATIVE_Z_EXT = ((int)0x87DB), - VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87D1), - OP_MAX_EXT = ((int)0x878A), - MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87CC), - VARIANT_EXT = ((int)0x87C1), OP_INDEX_EXT = ((int)0x8782), - ONE_EXT = ((int)0x87DE), - VARIANT_DATATYPE_EXT = ((int)0x87E5), - MAX_VERTEX_SHADER_LOCALS_EXT = ((int)0x87C9), - OUTPUT_TEXTURE_COORD5_EXT = ((int)0x87A2), OP_MOV_EXT = ((int)0x8799), - FULL_RANGE_EXT = ((int)0x87E1), - NEGATIVE_ONE_EXT = ((int)0x87DF), - OUTPUT_TEXTURE_COORD25_EXT = ((int)0x87B6), - OUTPUT_TEXTURE_COORD24_EXT = ((int)0x87B5), - MAX_VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87C5), - OUTPUT_TEXTURE_COORD26_EXT = ((int)0x87B7), - OP_ROUND_EXT = ((int)0x8790), - OUTPUT_TEXTURE_COORD0_EXT = ((int)0x879D), - OP_SUB_EXT = ((int)0x8796), - VERTEX_SHADER_OPTIMIZED_EXT = ((int)0x87D4), - VERTEX_SHADER_VARIANTS_EXT = ((int)0x87D0), - OUTPUT_TEXTURE_COORD8_EXT = ((int)0x87A5), - VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87D2), - OUTPUT_TEXTURE_COORD2_EXT = ((int)0x879F), - VECTOR_EXT = ((int)0x87BF), - MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87CA), OP_MULTIPLY_MATRIX_EXT = ((int)0x8798), + VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87CF), + VERTEX_SHADER_OPTIMIZED_EXT = ((int)0x87D4), + OUTPUT_FOG_EXT = ((int)0x87BD), + Y_EXT = ((int)0x87D6), + OP_ROUND_EXT = ((int)0x8790), + OUTPUT_TEXTURE_COORD28_EXT = ((int)0x87B9), + INVARIANT_EXT = ((int)0x87C2), + MAX_VERTEX_SHADER_VARIANTS_EXT = ((int)0x87C6), + OP_POWER_EXT = ((int)0x8793), + CURRENT_VERTEX_EXT = ((int)0x87E2), + OUTPUT_TEXTURE_COORD1_EXT = ((int)0x879E), + OUTPUT_TEXTURE_COORD29_EXT = ((int)0x87BA), + LOCAL_EXT = ((int)0x87C4), + OUTPUT_TEXTURE_COORD4_EXT = ((int)0x87A1), + OUTPUT_TEXTURE_COORD20_EXT = ((int)0x87B1), + VARIANT_ARRAY_POINTER_EXT = ((int)0x87E9), + Z_EXT = ((int)0x87D7), + VARIANT_ARRAY_STRIDE_EXT = ((int)0x87E6), VARIANT_VALUE_EXT = ((int)0x87E4), MVP_MATRIX_EXT = ((int)0x87E3), - OUTPUT_TEXTURE_COORD27_EXT = ((int)0x87B8), - OUTPUT_TEXTURE_COORD15_EXT = ((int)0x87AC), - OUTPUT_TEXTURE_COORD14_EXT = ((int)0x87AB), - OUTPUT_TEXTURE_COORD17_EXT = ((int)0x87AE), - OUTPUT_TEXTURE_COORD16_EXT = ((int)0x87AD), - OP_EXP_BASE_2_EXT = ((int)0x8791), - MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT = ((int)0x87CB), - INVARIANT_EXT = ((int)0x87C2), - MATRIX_EXT = ((int)0x87C0), - LOCAL_EXT = ((int)0x87C4), - OP_MUL_EXT = ((int)0x8786), - CURRENT_VERTEX_EXT = ((int)0x87E2), - X_EXT = ((int)0x87D5), - OUTPUT_TEXTURE_COORD6_EXT = ((int)0x87A3), - OP_FRAC_EXT = ((int)0x8789), - VARIANT_ARRAY_POINTER_EXT = ((int)0x87E9), - OP_NEGATE_EXT = ((int)0x8783), - OP_RECIP_EXT = ((int)0x8794), - OUTPUT_COLOR1_EXT = ((int)0x879C), - MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87C8), - OUTPUT_TEXTURE_COORD29_EXT = ((int)0x87BA), - OUTPUT_TEXTURE_COORD28_EXT = ((int)0x87B9), - ZERO_EXT = ((int)0x87DD), - MAX_VERTEX_SHADER_VARIANTS_EXT = ((int)0x87C6), - OUTPUT_TEXTURE_COORD9_EXT = ((int)0x87A6), - OUTPUT_TEXTURE_COORD3_EXT = ((int)0x87A0), - OUTPUT_COLOR0_EXT = ((int)0x879B), - SCALAR_EXT = ((int)0x87BE), - OUTPUT_TEXTURE_COORD21_EXT = ((int)0x87B2), - OP_SET_GE_EXT = ((int)0x878C), - OP_LOG_BASE_2_EXT = ((int)0x8792), - OUTPUT_TEXTURE_COORD22_EXT = ((int)0x87B3), - VERTEX_SHADER_LOCALS_EXT = ((int)0x87D3), - LOCAL_CONSTANT_EXT = ((int)0x87C3), - MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87CD), - OP_DOT3_EXT = ((int)0x8784), - W_EXT = ((int)0x87D8), - OP_DOT4_EXT = ((int)0x8785), - OP_ADD_EXT = ((int)0x8787), VERTEX_SHADER_BINDING_EXT = ((int)0x8781), OUTPUT_TEXTURE_COORD19_EXT = ((int)0x87B0), + INVARIANT_VALUE_EXT = ((int)0x87EA), + OUTPUT_TEXTURE_COORD21_EXT = ((int)0x87B2), + MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87C8), + OUTPUT_TEXTURE_COORD3_EXT = ((int)0x87A0), + OUTPUT_TEXTURE_COORD10_EXT = ((int)0x87A7), + OP_MUL_EXT = ((int)0x8786), + NEGATIVE_ONE_EXT = ((int)0x87DF), + OP_CROSS_PRODUCT_EXT = ((int)0x8797), + VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87D2), OUTPUT_TEXTURE_COORD18_EXT = ((int)0x87AF), + OP_NEGATE_EXT = ((int)0x8783), + OUTPUT_TEXTURE_COORD6_EXT = ((int)0x87A3), + VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87D1), + OUTPUT_TEXTURE_COORD11_EXT = ((int)0x87A8), + W_EXT = ((int)0x87D8), OP_SET_LT_EXT = ((int)0x878D), - OUTPUT_VERTEX_EXT = ((int)0x879A), + ONE_EXT = ((int)0x87DE), + VARIANT_ARRAY_EXT = ((int)0x87E8), + OUTPUT_COLOR1_EXT = ((int)0x879C), + OUTPUT_TEXTURE_COORD13_EXT = ((int)0x87AA), + OUTPUT_TEXTURE_COORD24_EXT = ((int)0x87B5), + X_EXT = ((int)0x87D5), + ZERO_EXT = ((int)0x87DD), + LOCAL_CONSTANT_DATATYPE_EXT = ((int)0x87ED), + SCALAR_EXT = ((int)0x87BE), + OUTPUT_TEXTURE_COORD30_EXT = ((int)0x87BB), + VARIANT_ARRAY_TYPE_EXT = ((int)0x87E7), + VERTEX_SHADER_VARIANTS_EXT = ((int)0x87D0), + OUTPUT_TEXTURE_COORD5_EXT = ((int)0x87A2), + NEGATIVE_W_EXT = ((int)0x87DC), + OUTPUT_TEXTURE_COORD25_EXT = ((int)0x87B6), + MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87CD), + OP_FLOOR_EXT = ((int)0x878F), + NEGATIVE_Y_EXT = ((int)0x87DA), + MAX_VERTEX_SHADER_INVARIANTS_EXT = ((int)0x87C7), + OUTPUT_TEXTURE_COORD8_EXT = ((int)0x87A5), + OP_RECIP_EXT = ((int)0x8794), + OUTPUT_TEXTURE_COORD31_EXT = ((int)0x87BC), + OUTPUT_TEXTURE_COORD14_EXT = ((int)0x87AB), NEGATIVE_X_EXT = ((int)0x87D9), + MAX_VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87C5), + VARIANT_DATATYPE_EXT = ((int)0x87E5), + OUTPUT_VERTEX_EXT = ((int)0x879A), + OP_ADD_EXT = ((int)0x8787), + OUTPUT_TEXTURE_COORD0_EXT = ((int)0x879D), + OUTPUT_TEXTURE_COORD15_EXT = ((int)0x87AC), + OP_MADD_EXT = ((int)0x8788), + OP_DOT3_EXT = ((int)0x8784), + MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT = ((int)0x87CE), OUTPUT_TEXTURE_COORD7_EXT = ((int)0x87A4), + LOCAL_CONSTANT_EXT = ((int)0x87C3), + VECTOR_EXT = ((int)0x87BF), + VERTEX_SHADER_EXT = ((int)0x8780), + NORMALIZED_RANGE_EXT = ((int)0x87E0), + VARIANT_EXT = ((int)0x87C1), + OUTPUT_TEXTURE_COORD26_EXT = ((int)0x87B7), + OP_MAX_EXT = ((int)0x878A), + OP_CLAMP_EXT = ((int)0x878E), + INVARIANT_DATATYPE_EXT = ((int)0x87EB), + MAX_VERTEX_SHADER_LOCALS_EXT = ((int)0x87C9), + OUTPUT_TEXTURE_COORD22_EXT = ((int)0x87B3), + OP_SET_GE_EXT = ((int)0x878C), + OP_FRAC_EXT = ((int)0x8789), + VERTEX_SHADER_LOCALS_EXT = ((int)0x87D3), + MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT = ((int)0x87CA), + LOCAL_CONSTANT_VALUE_EXT = ((int)0x87EC), + OUTPUT_TEXTURE_COORD27_EXT = ((int)0x87B8), + NEGATIVE_Z_EXT = ((int)0x87DB), + OP_RECIP_SQRT_EXT = ((int)0x8795), + MATRIX_EXT = ((int)0x87C0), + OP_EXP_BASE_2_EXT = ((int)0x8791), + OUTPUT_TEXTURE_COORD16_EXT = ((int)0x87AD), OUTPUT_TEXTURE_COORD23_EXT = ((int)0x87B4), + OUTPUT_COLOR0_EXT = ((int)0x879B), + OP_MIN_EXT = ((int)0x878B), + OP_DOT4_EXT = ((int)0x8785), + OUTPUT_TEXTURE_COORD12_EXT = ((int)0x87A9), + OP_SUB_EXT = ((int)0x8796), + MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT = ((int)0x87CB), + MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT = ((int)0x87CC), + OUTPUT_TEXTURE_COORD2_EXT = ((int)0x879F), + OUTPUT_TEXTURE_COORD17_EXT = ((int)0x87AE), + OP_LOG_BASE_2_EXT = ((int)0x8792), + OUTPUT_TEXTURE_COORD9_EXT = ((int)0x87A6), + FULL_RANGE_EXT = ((int)0x87E1), } public enum ATI_vertex_streams { - VERTEX_STREAM5_ATI = ((int)0x8771), - VERTEX_STREAM2_ATI = ((int)0x876E), - VERTEX_SOURCE_ATI = ((int)0x8774), - VERTEX_STREAM3_ATI = ((int)0x876F), - VERTEX_STREAM0_ATI = ((int)0x876C), VERTEX_STREAM6_ATI = ((int)0x8772), VERTEX_STREAM1_ATI = ((int)0x876D), - VERTEX_STREAM7_ATI = ((int)0x8773), + VERTEX_STREAM3_ATI = ((int)0x876F), MAX_VERTEX_STREAMS_ATI = ((int)0x876B), VERTEX_STREAM4_ATI = ((int)0x8770), + VERTEX_STREAM0_ATI = ((int)0x876C), + VERTEX_STREAM2_ATI = ((int)0x876E), + VERTEX_SOURCE_ATI = ((int)0x8774), + VERTEX_STREAM7_ATI = ((int)0x8773), + VERTEX_STREAM5_ATI = ((int)0x8771), } public enum ATI_element_array { + ELEMENT_ARRAY_POINTER_ATI = ((int)0x876A), ELEMENT_ARRAY_ATI = ((int)0x8768), ELEMENT_ARRAY_TYPE_ATI = ((int)0x8769), - ELEMENT_ARRAY_POINTER_ATI = ((int)0x876A), } public enum SUN_mesh_array { - QUAD_MESH_SUN = ((int)0x8614), TRIANGLE_MESH_SUN = ((int)0x8615), + QUAD_MESH_SUN = ((int)0x8614), } public enum SUN_slice_accum @@ -7754,38 +7754,38 @@ namespace OpenTK.OpenGL public enum NV_occlusion_query { - PIXEL_COUNTER_BITS_NV = ((int)0x8864), - PIXEL_COUNT_NV = ((int)0x8866), - PIXEL_COUNT_AVAILABLE_NV = ((int)0x8867), CURRENT_OCCLUSION_QUERY_ID_NV = ((int)0x8865), + PIXEL_COUNT_NV = ((int)0x8866), + PIXEL_COUNTER_BITS_NV = ((int)0x8864), + PIXEL_COUNT_AVAILABLE_NV = ((int)0x8867), } public enum NV_point_sprite { + COORD_REPLACE_NV = ((int)0x8862), POINT_SPRITE_R_MODE_NV = ((int)0x8863), POINT_SPRITE_NV = ((int)0x8861), - COORD_REPLACE_NV = ((int)0x8862), } public enum NV_texture_shader3 { - OFFSET_HILO_TEXTURE_2D_NV = ((int)0x8854), - DEPENDENT_HILO_TEXTURE_2D_NV = ((int)0x8858), - DOT_PRODUCT_PASS_THROUGH_NV = ((int)0x885B), - OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV = ((int)0x8856), - OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV = ((int)0x8853), - SIGNED_HILO8_NV = ((int)0x885F), - DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV = ((int)0x885D), - DOT_PRODUCT_TEXTURE_1D_NV = ((int)0x885C), - DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV = ((int)0x885A), - OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV = ((int)0x8851), - OFFSET_PROJECTIVE_TEXTURE_2D_NV = ((int)0x8850), - OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV = ((int)0x8857), - FORCE_BLUE_TO_ONE_NV = ((int)0x8860), - OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV = ((int)0x8852), DEPENDENT_RGB_TEXTURE_3D_NV = ((int)0x8859), + DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV = ((int)0x885D), + SIGNED_HILO8_NV = ((int)0x885F), + FORCE_BLUE_TO_ONE_NV = ((int)0x8860), + OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV = ((int)0x8857), + OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV = ((int)0x8853), + DEPENDENT_HILO_TEXTURE_2D_NV = ((int)0x8858), HILO8_NV = ((int)0x885E), + OFFSET_PROJECTIVE_TEXTURE_2D_NV = ((int)0x8850), + DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV = ((int)0x885A), + OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV = ((int)0x8856), + OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV = ((int)0x8851), OFFSET_HILO_TEXTURE_RECTANGLE_NV = ((int)0x8855), + OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV = ((int)0x8852), + OFFSET_HILO_TEXTURE_2D_NV = ((int)0x8854), + DOT_PRODUCT_PASS_THROUGH_NV = ((int)0x885B), + DOT_PRODUCT_TEXTURE_1D_NV = ((int)0x885C), } public enum NV_vertex_program1_1 @@ -7798,8 +7798,8 @@ namespace OpenTK.OpenGL public enum EXT_stencil_two_side { - STENCIL_TEST_TWO_SIDE_EXT = ((int)0x8910), ACTIVE_STENCIL_FACE_EXT = ((int)0x8911), + STENCIL_TEST_TWO_SIDE_EXT = ((int)0x8910), } public enum ATI_text_fragment_shader @@ -7814,15 +7814,15 @@ namespace OpenTK.OpenGL public enum APPLE_element_array { - ELEMENT_ARRAY_TYPE_APPLE = ((int)0x8769), ELEMENT_ARRAY_POINTER_APPLE = ((int)0x876A), ELEMENT_ARRAY_APPLE = ((int)0x8768), + ELEMENT_ARRAY_TYPE_APPLE = ((int)0x8769), } public enum APPLE_fence { - FENCE_APPLE = ((int)0x8A0B), DRAW_PIXELS_APPLE = ((int)0x8A0A), + FENCE_APPLE = ((int)0x8A0B), } public enum APPLE_vertex_array_object @@ -7832,48 +7832,48 @@ namespace OpenTK.OpenGL public enum APPLE_vertex_array_range { - STORAGE_CACHED_APPLE = ((int)0x85BE), - VERTEX_ARRAY_RANGE_LENGTH_APPLE = ((int)0x851E), STORAGE_SHARED_APPLE = ((int)0x85BF), - VERTEX_ARRAY_RANGE_POINTER_APPLE = ((int)0x8521), VERTEX_ARRAY_RANGE_APPLE = ((int)0x851D), VERTEX_ARRAY_STORAGE_HINT_APPLE = ((int)0x851F), + VERTEX_ARRAY_RANGE_LENGTH_APPLE = ((int)0x851E), + VERTEX_ARRAY_RANGE_POINTER_APPLE = ((int)0x8521), + STORAGE_CACHED_APPLE = ((int)0x85BE), } public enum APPLE_ycbcr_422 { - UNSIGNED_SHORT_8_8_APPLE = ((int)0x85BA), - YCBCR_422_APPLE = ((int)0x85B9), UNSIGNED_SHORT_8_8_REV_APPLE = ((int)0x85BB), + YCBCR_422_APPLE = ((int)0x85B9), + UNSIGNED_SHORT_8_8_APPLE = ((int)0x85BA), } public enum S3_s3tc { - RGB_S3TC = ((int)0x83A0), - RGBA4_S3TC = ((int)0x83A3), RGB4_S3TC = ((int)0x83A1), RGBA_S3TC = ((int)0x83A2), + RGB_S3TC = ((int)0x83A0), + RGBA4_S3TC = ((int)0x83A3), } public enum ATI_draw_buffers { - MAX_DRAW_BUFFERS_ATI = ((int)0x8824), DRAW_BUFFER9_ATI = ((int)0x882E), DRAW_BUFFER10_ATI = ((int)0x882F), DRAW_BUFFER6_ATI = ((int)0x882B), - DRAW_BUFFER11_ATI = ((int)0x8830), - DRAW_BUFFER14_ATI = ((int)0x8833), - DRAW_BUFFER1_ATI = ((int)0x8826), - DRAW_BUFFER3_ATI = ((int)0x8828), - DRAW_BUFFER8_ATI = ((int)0x882D), - DRAW_BUFFER5_ATI = ((int)0x882A), - DRAW_BUFFER13_ATI = ((int)0x8832), - DRAW_BUFFER0_ATI = ((int)0x8825), - DRAW_BUFFER7_ATI = ((int)0x882C), - DRAW_BUFFER12_ATI = ((int)0x8831), DRAW_BUFFER4_ATI = ((int)0x8829), + DRAW_BUFFER14_ATI = ((int)0x8833), + DRAW_BUFFER3_ATI = ((int)0x8828), + DRAW_BUFFER5_ATI = ((int)0x882A), + DRAW_BUFFER0_ATI = ((int)0x8825), + DRAW_BUFFER12_ATI = ((int)0x8831), + DRAW_BUFFER11_ATI = ((int)0x8830), + DRAW_BUFFER8_ATI = ((int)0x882D), DRAW_BUFFER15_ATI = ((int)0x8834), + DRAW_BUFFER7_ATI = ((int)0x882C), + DRAW_BUFFER13_ATI = ((int)0x8832), DRAW_BUFFER2_ATI = ((int)0x8827), + DRAW_BUFFER1_ATI = ((int)0x8826), + MAX_DRAW_BUFFERS_ATI = ((int)0x8824), } public enum ATI_pixel_format_float @@ -7884,54 +7884,54 @@ namespace OpenTK.OpenGL public enum ATI_texture_env_combine3 { - MODULATE_SIGNED_ADD_ATI = ((int)0x8745), MODULATE_ADD_ATI = ((int)0x8744), + MODULATE_SIGNED_ADD_ATI = ((int)0x8745), MODULATE_SUBTRACT_ATI = ((int)0x8746), } public enum ATI_texture_float { - RGB_FLOAT16_ATI = ((int)0x881B), - INTENSITY_FLOAT16_ATI = ((int)0x881D), - INTENSITY_FLOAT32_ATI = ((int)0x8817), - LUMINANCE_ALPHA_FLOAT16_ATI = ((int)0x881F), - RGB_FLOAT32_ATI = ((int)0x8815), - RGBA_FLOAT16_ATI = ((int)0x881A), - LUMINANCE_ALPHA_FLOAT32_ATI = ((int)0x8819), - RGBA_FLOAT32_ATI = ((int)0x8814), ALPHA_FLOAT32_ATI = ((int)0x8816), + INTENSITY_FLOAT32_ATI = ((int)0x8817), LUMINANCE_FLOAT32_ATI = ((int)0x8818), + LUMINANCE_ALPHA_FLOAT16_ATI = ((int)0x881F), ALPHA_FLOAT16_ATI = ((int)0x881C), + LUMINANCE_ALPHA_FLOAT32_ATI = ((int)0x8819), + RGBA_FLOAT16_ATI = ((int)0x881A), + RGBA_FLOAT32_ATI = ((int)0x8814), LUMINANCE_FLOAT16_ATI = ((int)0x881E), + RGB_FLOAT32_ATI = ((int)0x8815), + INTENSITY_FLOAT16_ATI = ((int)0x881D), + RGB_FLOAT16_ATI = ((int)0x881B), } public enum NV_float_buffer { + FLOAT_R16_NV = ((int)0x8884), FLOAT_RG_NV = ((int)0x8881), FLOAT_RGB_NV = ((int)0x8882), - FLOAT_RGB32_NV = ((int)0x8889), - FLOAT_RGBA16_NV = ((int)0x888A), - TEXTURE_FLOAT_COMPONENTS_NV = ((int)0x888C), - FLOAT_CLEAR_COLOR_VALUE_NV = ((int)0x888D), - FLOAT_R16_NV = ((int)0x8884), - FLOAT_RGBA_NV = ((int)0x8883), - FLOAT_RG16_NV = ((int)0x8886), - FLOAT_RGBA_MODE_NV = ((int)0x888E), - FLOAT_RGBA32_NV = ((int)0x888B), FLOAT_R32_NV = ((int)0x8885), - FLOAT_RG32_NV = ((int)0x8887), - FLOAT_RGB16_NV = ((int)0x8888), + FLOAT_RG16_NV = ((int)0x8886), FLOAT_R_NV = ((int)0x8880), + FLOAT_CLEAR_COLOR_VALUE_NV = ((int)0x888D), + FLOAT_RGB32_NV = ((int)0x8889), + FLOAT_RGBA_MODE_NV = ((int)0x888E), + TEXTURE_FLOAT_COMPONENTS_NV = ((int)0x888C), + FLOAT_RGBA_NV = ((int)0x8883), + FLOAT_RGBA16_NV = ((int)0x888A), + FLOAT_RGBA32_NV = ((int)0x888B), + FLOAT_RGB16_NV = ((int)0x8888), + FLOAT_RG32_NV = ((int)0x8887), } public enum NV_fragment_program { - PROGRAM_ERROR_STRING_NV = ((int)0x8874), - FRAGMENT_PROGRAM_BINDING_NV = ((int)0x8873), - MAX_TEXTURE_COORDS_NV = ((int)0x8871), - MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV = ((int)0x8868), - MAX_TEXTURE_IMAGE_UNITS_NV = ((int)0x8872), FRAGMENT_PROGRAM_NV = ((int)0x8870), + MAX_TEXTURE_IMAGE_UNITS_NV = ((int)0x8872), + PROGRAM_ERROR_STRING_NV = ((int)0x8874), + MAX_TEXTURE_COORDS_NV = ((int)0x8871), + FRAGMENT_PROGRAM_BINDING_NV = ((int)0x8873), + MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV = ((int)0x8868), } public enum NV_half_float @@ -7941,12 +7941,12 @@ namespace OpenTK.OpenGL public enum NV_pixel_data_range { - READ_PIXEL_DATA_RANGE_NV = ((int)0x8879), - READ_PIXEL_DATA_RANGE_POINTER_NV = ((int)0x887D), + READ_PIXEL_DATA_RANGE_LENGTH_NV = ((int)0x887B), WRITE_PIXEL_DATA_RANGE_NV = ((int)0x8878), WRITE_PIXEL_DATA_RANGE_POINTER_NV = ((int)0x887C), + READ_PIXEL_DATA_RANGE_POINTER_NV = ((int)0x887D), WRITE_PIXEL_DATA_RANGE_LENGTH_NV = ((int)0x887A), - READ_PIXEL_DATA_RANGE_LENGTH_NV = ((int)0x887B), + READ_PIXEL_DATA_RANGE_NV = ((int)0x8879), } public enum NV_primitive_restart @@ -7971,9 +7971,9 @@ namespace OpenTK.OpenGL public enum ATI_separate_stencil { STENCIL_BACK_PASS_DEPTH_FAIL_ATI = ((int)0x8802), - STENCIL_BACK_FUNC_ATI = ((int)0x8800), - STENCIL_BACK_FAIL_ATI = ((int)0x8801), STENCIL_BACK_PASS_DEPTH_PASS_ATI = ((int)0x8803), + STENCIL_BACK_FAIL_ATI = ((int)0x8801), + STENCIL_BACK_FUNC_ATI = ((int)0x8800), } public enum ATI_vertex_attrib_array_object @@ -7982,8 +7982,8 @@ namespace OpenTK.OpenGL public enum OES_read_format { - IMPLEMENTATION_COLOR_READ_FORMAT_OES = ((int)0x8B9B), IMPLEMENTATION_COLOR_READ_TYPE_OES = ((int)0x8B9A), + IMPLEMENTATION_COLOR_READ_FORMAT_OES = ((int)0x8B9B), } public enum EXT_depth_bounds_test @@ -7994,15 +7994,15 @@ namespace OpenTK.OpenGL public enum EXT_texture_mirror_clamp { - MIRROR_CLAMP_TO_EDGE_EXT = ((int)0x8743), MIRROR_CLAMP_TO_BORDER_EXT = ((int)0x8912), + MIRROR_CLAMP_TO_EDGE_EXT = ((int)0x8743), MIRROR_CLAMP_EXT = ((int)0x8742), } public enum EXT_blend_equation_separate { - BLEND_EQUATION_ALPHA_EXT = ((int)0x883D), BLEND_EQUATION_RGB_EXT = ((int)ARB_imaging.BLEND_EQUATION), + BLEND_EQUATION_ALPHA_EXT = ((int)0x883D), } public enum MESA_pack_invert @@ -8020,9 +8020,9 @@ namespace OpenTK.OpenGL public enum EXT_pixel_buffer_object { PIXEL_UNPACK_BUFFER_EXT = ((int)0x88EC), - PIXEL_PACK_BUFFER_BINDING_EXT = ((int)0x88ED), - PIXEL_UNPACK_BUFFER_BINDING_EXT = ((int)0x88EF), PIXEL_PACK_BUFFER_EXT = ((int)0x88EB), + PIXEL_UNPACK_BUFFER_BINDING_EXT = ((int)0x88EF), + PIXEL_PACK_BUFFER_BINDING_EXT = ((int)0x88ED), } public enum NV_fragment_program_option @@ -8031,11 +8031,11 @@ namespace OpenTK.OpenGL public enum NV_fragment_program2 { - MAX_PROGRAM_LOOP_COUNT_NV = ((int)0x88F8), + MAX_PROGRAM_IF_DEPTH_NV = ((int)0x88F6), MAX_PROGRAM_LOOP_DEPTH_NV = ((int)0x88F7), MAX_PROGRAM_CALL_DEPTH_NV = ((int)0x88F5), - MAX_PROGRAM_IF_DEPTH_NV = ((int)0x88F6), MAX_PROGRAM_EXEC_INSTRUCTIONS_NV = ((int)0x88F4), + MAX_PROGRAM_LOOP_COUNT_NV = ((int)0x88F8), } public enum NV_vertex_program2_option @@ -8051,57 +8051,57 @@ namespace OpenTK.OpenGL public enum EXT_framebuffer_object { - STENCIL_INDEX8_EXT = ((int)0x8D48), - RENDERBUFFER_EXT = ((int)0x8D41), - COLOR_ATTACHMENT13_EXT = ((int)0x8CED), - COLOR_ATTACHMENT2_EXT = ((int)0x8CE2), - RENDERBUFFER_ALPHA_SIZE_EXT = ((int)0x8D53), - RENDERBUFFER_BINDING_EXT = ((int)0x8CA7), - MAX_RENDERBUFFER_SIZE_EXT = ((int)0x84E8), - STENCIL_INDEX4_EXT = ((int)0x8D47), - FRAMEBUFFER_BINDING_EXT = ((int)0x8CA6), - FRAMEBUFFER_EXT = ((int)0x8D40), - MAX_COLOR_ATTACHMENTS_EXT = ((int)0x8CDF), - FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT = ((int)0x8CD2), - RENDERBUFFER_DEPTH_SIZE_EXT = ((int)0x8D54), - FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT = ((int)0x8CD6), - COLOR_ATTACHMENT4_EXT = ((int)0x8CE4), - FRAMEBUFFER_INCOMPLETE_FORMATS_EXT = ((int)0x8CDA), - FRAMEBUFFER_COMPLETE_EXT = ((int)0x8CD5), - FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT = ((int)0x8CD4), - DEPTH_ATTACHMENT_EXT = ((int)0x8D00), - COLOR_ATTACHMENT8_EXT = ((int)0x8CE8), - COLOR_ATTACHMENT6_EXT = ((int)0x8CE6), - FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT = ((int)0x8CD7), - STENCIL_INDEX16_EXT = ((int)0x8D49), - COLOR_ATTACHMENT10_EXT = ((int)0x8CEA), + FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT = ((int)0x8CDC), + COLOR_ATTACHMENT3_EXT = ((int)0x8CE3), COLOR_ATTACHMENT1_EXT = ((int)0x8CE1), FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT = ((int)0x8CD0), - FRAMEBUFFER_UNSUPPORTED_EXT = ((int)0x8CDD), - COLOR_ATTACHMENT11_EXT = ((int)0x8CEB), - RENDERBUFFER_RED_SIZE_EXT = ((int)0x8D50), - COLOR_ATTACHMENT3_EXT = ((int)0x8CE3), - COLOR_ATTACHMENT12_EXT = ((int)0x8CEC), + FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT = ((int)0x8CD4), + RENDERBUFFER_EXT = ((int)0x8D41), + COLOR_ATTACHMENT15_EXT = ((int)0x8CEF), + COLOR_ATTACHMENT13_EXT = ((int)0x8CED), RENDERBUFFER_HEIGHT_EXT = ((int)0x8D43), - FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT = ((int)0x8CDB), + COLOR_ATTACHMENT14_EXT = ((int)0x8CEE), + COLOR_ATTACHMENT12_EXT = ((int)0x8CEC), RENDERBUFFER_INTERNAL_FORMAT_EXT = ((int)0x8D44), - FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT = ((int)0x8CDC), + RENDERBUFFER_ALPHA_SIZE_EXT = ((int)0x8D53), + FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT = ((int)0x8CD9), + STENCIL_INDEX4_EXT = ((int)0x8D47), + FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT = ((int)0x8CD2), + COLOR_ATTACHMENT6_EXT = ((int)0x8CE6), + FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT = ((int)0x8CD7), + FRAMEBUFFER_INCOMPLETE_FORMATS_EXT = ((int)0x8CDA), + FRAMEBUFFER_BINDING_EXT = ((int)0x8CA6), + COLOR_ATTACHMENT8_EXT = ((int)0x8CE8), + FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT = ((int)0x8CD6), + COLOR_ATTACHMENT2_EXT = ((int)0x8CE2), + COLOR_ATTACHMENT9_EXT = ((int)0x8CE9), + FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT = ((int)0x8CD3), + FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT = ((int)0x8CDB), + MAX_COLOR_ATTACHMENTS_EXT = ((int)0x8CDF), + RENDERBUFFER_GREEN_SIZE_EXT = ((int)0x8D51), + STENCIL_INDEX8_EXT = ((int)0x8D48), + COLOR_ATTACHMENT7_EXT = ((int)0x8CE7), + MAX_RENDERBUFFER_SIZE_EXT = ((int)0x84E8), + STENCIL_INDEX1_EXT = ((int)0x8D46), + DEPTH_ATTACHMENT_EXT = ((int)0x8D00), + COLOR_ATTACHMENT0_EXT = ((int)0x8CE0), + INVALID_FRAMEBUFFER_OPERATION_EXT = ((int)0x0506), RENDERBUFFER_BLUE_SIZE_EXT = ((int)0x8D52), + FRAMEBUFFER_EXT = ((int)0x8D40), + RENDERBUFFER_WIDTH_EXT = ((int)0x8D42), + STENCIL_INDEX16_EXT = ((int)0x8D49), + RENDERBUFFER_DEPTH_SIZE_EXT = ((int)0x8D54), + COLOR_ATTACHMENT5_EXT = ((int)0x8CE5), + FRAMEBUFFER_UNSUPPORTED_EXT = ((int)0x8CDD), + RENDERBUFFER_RED_SIZE_EXT = ((int)0x8D50), + COLOR_ATTACHMENT11_EXT = ((int)0x8CEB), + FRAMEBUFFER_COMPLETE_EXT = ((int)0x8CD5), + COLOR_ATTACHMENT4_EXT = ((int)0x8CE4), + COLOR_ATTACHMENT10_EXT = ((int)0x8CEA), + RENDERBUFFER_BINDING_EXT = ((int)0x8CA7), RENDERBUFFER_STENCIL_SIZE_EXT = ((int)0x8D55), FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT = ((int)0x8CD1), - INVALID_FRAMEBUFFER_OPERATION_EXT = ((int)0x0506), - COLOR_ATTACHMENT14_EXT = ((int)0x8CEE), STENCIL_ATTACHMENT_EXT = ((int)0x8D20), - RENDERBUFFER_WIDTH_EXT = ((int)0x8D42), - FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT = ((int)0x8CD9), - COLOR_ATTACHMENT5_EXT = ((int)0x8CE5), - COLOR_ATTACHMENT15_EXT = ((int)0x8CEF), - COLOR_ATTACHMENT0_EXT = ((int)0x8CE0), - FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT = ((int)0x8CD3), - STENCIL_INDEX1_EXT = ((int)0x8D46), - COLOR_ATTACHMENT9_EXT = ((int)0x8CE9), - COLOR_ATTACHMENT7_EXT = ((int)0x8CE7), - RENDERBUFFER_GREEN_SIZE_EXT = ((int)0x8D51), } public enum GREMEDY_string_marker @@ -8112,8 +8112,8 @@ namespace OpenTK.OpenGL { DEPTH_STENCIL_EXT = ((int)0x84F9), TEXTURE_STENCIL_SIZE_EXT = ((int)0x88F1), - DEPTH24_STENCIL8_EXT = ((int)0x88F0), UNSIGNED_INT_24_8_EXT = ((int)0x84FA), + DEPTH24_STENCIL8_EXT = ((int)0x88F0), } public enum EXT_stencil_clear_tag @@ -8124,47 +8124,47 @@ namespace OpenTK.OpenGL public enum EXT_texture_sRGB { - COMPRESSED_SLUMINANCE_EXT = ((int)0x8C4A), - SLUMINANCE_EXT = ((int)0x8C46), - SLUMINANCE_ALPHA_EXT = ((int)0x8C44), - SLUMINANCE8_ALPHA8_EXT = ((int)0x8C45), - SRGB_EXT = ((int)0x8C40), - COMPRESSED_SRGB_ALPHA_EXT = ((int)0x8C49), - SRGB8_EXT = ((int)0x8C41), - COMPRESSED_SLUMINANCE_ALPHA_EXT = ((int)0x8C4B), - COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = ((int)0x8C4E), - SRGB_ALPHA_EXT = ((int)0x8C42), COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT = ((int)0x8C4F), - COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = ((int)0x8C4D), - COMPRESSED_SRGB_EXT = ((int)0x8C48), - SRGB8_ALPHA8_EXT = ((int)0x8C43), - SLUMINANCE8_EXT = ((int)0x8C47), + SRGB8_EXT = ((int)0x8C41), + SLUMINANCE8_ALPHA8_EXT = ((int)0x8C45), + COMPRESSED_SRGB_ALPHA_EXT = ((int)0x8C49), + SLUMINANCE_EXT = ((int)0x8C46), COMPRESSED_SRGB_S3TC_DXT1_EXT = ((int)0x8C4C), + SLUMINANCE_ALPHA_EXT = ((int)0x8C44), + COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT = ((int)0x8C4D), + SRGB8_ALPHA8_EXT = ((int)0x8C43), + SRGB_ALPHA_EXT = ((int)0x8C42), + SRGB_EXT = ((int)0x8C40), + COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT = ((int)0x8C4E), + SLUMINANCE8_EXT = ((int)0x8C47), + COMPRESSED_SLUMINANCE_ALPHA_EXT = ((int)0x8C4B), + COMPRESSED_SRGB_EXT = ((int)0x8C48), + COMPRESSED_SLUMINANCE_EXT = ((int)0x8C4A), } public enum EXT_framebuffer_blit { - READ_FRAMEBUFFER_EXT = ((int)0x8CA8), DRAW_FRAMEBUFFER_BINDING_EXT = ((int)0x8CAA), - DRAW_FRAMEBUFFER_EXT = ((int)0x8CA9), READ_FRAMEBUFFER_BINDING_EXT = ((int)EXT_framebuffer_object.FRAMEBUFFER_BINDING_EXT), + READ_FRAMEBUFFER_EXT = ((int)0x8CA8), + DRAW_FRAMEBUFFER_EXT = ((int)0x8CA9), } public enum EXT_framebuffer_multisample { - MAX_SAMPLES_EXT = ((int)0x8D57), - FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT = ((int)0x8D56), RENDERBUFFER_SAMPLES_EXT = ((int)0x8CAB), + FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT = ((int)0x8D56), + MAX_SAMPLES_EXT = ((int)0x8D57), } public enum MESAX_texture_stack { - TEXTURE_2D_STACK_MESAX = ((int)0x875A), - PROXY_TEXTURE_1D_STACK_MESAX = ((int)0x875B), - PROXY_TEXTURE_2D_STACK_MESAX = ((int)0x875C), TEXTURE_1D_STACK_MESAX = ((int)0x8759), - TEXTURE_2D_STACK_BINDING_MESAX = ((int)0x875E), + PROXY_TEXTURE_2D_STACK_MESAX = ((int)0x875C), + TEXTURE_2D_STACK_MESAX = ((int)0x875A), TEXTURE_1D_STACK_BINDING_MESAX = ((int)0x875D), + PROXY_TEXTURE_1D_STACK_MESAX = ((int)0x875B), + TEXTURE_2D_STACK_BINDING_MESAX = ((int)0x875E), } public enum EXT_timer_query @@ -8184,58 +8184,58 @@ namespace OpenTK.OpenGL public enum NV_gpu_program4 { - MAX_PROGRAM_TEXEL_OFFSET_NV = ((int)0x8905), - MAX_PROGRAM_GENERIC_ATTRIBS_NV = ((int)0x8DA5), - MAX_PROGRAM_ATTRIB_COMPONENTS_NV = ((int)0x8908), - MIN_PROGRAM_TEXEL_OFFSET_NV = ((int)0x8904), - PROGRAM_RESULT_COMPONENTS_NV = ((int)0x8907), MAX_PROGRAM_RESULT_COMPONENTS_NV = ((int)0x8909), - MAX_PROGRAM_GENERIC_RESULTS_NV = ((int)0x8DA6), PROGRAM_ATTRIB_COMPONENTS_NV = ((int)0x8906), + MAX_PROGRAM_ATTRIB_COMPONENTS_NV = ((int)0x8908), + MAX_PROGRAM_GENERIC_ATTRIBS_NV = ((int)0x8DA5), + PROGRAM_RESULT_COMPONENTS_NV = ((int)0x8907), + MIN_PROGRAM_TEXEL_OFFSET_NV = ((int)0x8904), + MAX_PROGRAM_GENERIC_RESULTS_NV = ((int)0x8DA6), + MAX_PROGRAM_TEXEL_OFFSET_NV = ((int)0x8905), } public enum NV_geometry_program4 { - GEOMETRY_VERTICES_OUT_EXT = ((int)0x8DDA), - TRIANGLES_ADJACENCY_EXT = ((int)0x000C), + GEOMETRY_PROGRAM_NV = ((int)0x8C26), + FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT = ((int)0x8DA8), LINES_ADJACENCY_EXT = ((int)0x000A), + MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT = ((int)0x8C29), + MAX_PROGRAM_OUTPUT_VERTICES_NV = ((int)0x8C27), LINE_STRIP_ADJACENCY_EXT = ((int)0x000B), FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT = ((int)0x8CD4), - MAX_PROGRAM_OUTPUT_VERTICES_NV = ((int)0x8C27), - GEOMETRY_PROGRAM_NV = ((int)0x8C26), - PROGRAM_POINT_SIZE_EXT = ((int)0x8642), - GEOMETRY_OUTPUT_TYPE_EXT = ((int)0x8DDC), - FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT = ((int)0x8DA8), - GEOMETRY_INPUT_TYPE_EXT = ((int)0x8DDB), - FRAMEBUFFER_ATTACHMENT_LAYERED_EXT = ((int)0x8DA7), - TRIANGLE_STRIP_ADJACENCY_EXT = ((int)0x000D), - MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV = ((int)0x8C28), FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT = ((int)0x8DA9), - MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT = ((int)0x8C29), + GEOMETRY_INPUT_TYPE_EXT = ((int)0x8DDB), + TRIANGLE_STRIP_ADJACENCY_EXT = ((int)0x000D), + TRIANGLES_ADJACENCY_EXT = ((int)0x000C), + GEOMETRY_OUTPUT_TYPE_EXT = ((int)0x8DDC), + MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV = ((int)0x8C28), + PROGRAM_POINT_SIZE_EXT = ((int)0x8642), + GEOMETRY_VERTICES_OUT_EXT = ((int)0x8DDA), + FRAMEBUFFER_ATTACHMENT_LAYERED_EXT = ((int)0x8DA7), } public enum EXT_geometry_shader4 { - MAX_GEOMETRY_VARYING_COMPONENTS_EXT = ((int)0x8DDD), - MAX_GEOMETRY_OUTPUT_VERTICES_EXT = ((int)0x8DE0), - PROGRAM_POINT_SIZE_EXT = ((int)NV_geometry_program4.PROGRAM_POINT_SIZE_EXT), MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT = ((int)0x8DE1), - FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT = ((int)NV_geometry_program4.FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT), - TRIANGLES_ADJACENCY_EXT = ((int)NV_geometry_program4.TRIANGLES_ADJACENCY_EXT), + MAX_GEOMETRY_OUTPUT_VERTICES_EXT = ((int)0x8DE0), FRAMEBUFFER_ATTACHMENT_LAYERED_EXT = ((int)NV_geometry_program4.FRAMEBUFFER_ATTACHMENT_LAYERED_EXT), - LINES_ADJACENCY_EXT = ((int)NV_geometry_program4.LINES_ADJACENCY_EXT), FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT = ((int)NV_geometry_program4.FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT), GEOMETRY_INPUT_TYPE_EXT = ((int)NV_geometry_program4.GEOMETRY_INPUT_TYPE_EXT), - FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT = ((int)NV_geometry_program4.FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT), - MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT = ((int)NV_geometry_program4.MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT), - MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT = ((int)0x8DDF), - LINE_STRIP_ADJACENCY_EXT = ((int)NV_geometry_program4.LINE_STRIP_ADJACENCY_EXT), - MAX_VERTEX_VARYING_COMPONENTS_EXT = ((int)0x8DDE), + LINES_ADJACENCY_EXT = ((int)NV_geometry_program4.LINES_ADJACENCY_EXT), + GEOMETRY_VERTICES_OUT_EXT = ((int)NV_geometry_program4.GEOMETRY_VERTICES_OUT_EXT), GEOMETRY_SHADER_EXT = ((int)0x8DD9), MAX_VARYING_COMPONENTS_EXT = ((int)0x8B4B), + FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT = ((int)NV_geometry_program4.FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT), + MAX_VERTEX_VARYING_COMPONENTS_EXT = ((int)0x8DDE), + FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT = ((int)NV_geometry_program4.FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT), TRIANGLE_STRIP_ADJACENCY_EXT = ((int)NV_geometry_program4.TRIANGLE_STRIP_ADJACENCY_EXT), - GEOMETRY_VERTICES_OUT_EXT = ((int)NV_geometry_program4.GEOMETRY_VERTICES_OUT_EXT), + PROGRAM_POINT_SIZE_EXT = ((int)NV_geometry_program4.PROGRAM_POINT_SIZE_EXT), + MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT = ((int)0x8DDF), + LINE_STRIP_ADJACENCY_EXT = ((int)NV_geometry_program4.LINE_STRIP_ADJACENCY_EXT), + MAX_GEOMETRY_VARYING_COMPONENTS_EXT = ((int)0x8DDD), GEOMETRY_OUTPUT_TYPE_EXT = ((int)NV_geometry_program4.GEOMETRY_OUTPUT_TYPE_EXT), + MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT = ((int)NV_geometry_program4.MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT), + TRIANGLES_ADJACENCY_EXT = ((int)NV_geometry_program4.TRIANGLES_ADJACENCY_EXT), } public enum NV_vertex_program4 @@ -8245,31 +8245,31 @@ namespace OpenTK.OpenGL public enum EXT_gpu_shader4 { + SAMPLER_1D_ARRAY_SHADOW_EXT = ((int)0x8DC3), + UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT = ((int)0x8DD6), + INT_SAMPLER_2D_EXT = ((int)0x8DCA), + INT_SAMPLER_3D_EXT = ((int)0x8DCB), + UNSIGNED_INT_VEC4_EXT = ((int)0x8DC8), + UNSIGNED_INT_SAMPLER_CUBE_EXT = ((int)0x8DD4), + INT_SAMPLER_2D_ARRAY_EXT = ((int)0x8DCF), + SAMPLER_2D_ARRAY_SHADOW_EXT = ((int)0x8DC4), + UNSIGNED_INT_SAMPLER_2D_RECT_EXT = ((int)0x8DD5), + INT_SAMPLER_1D_ARRAY_EXT = ((int)0x8DCE), + INT_SAMPLER_2D_RECT_EXT = ((int)0x8DCD), + SAMPLER_2D_ARRAY_EXT = ((int)0x8DC1), + UNSIGNED_INT_VEC2_EXT = ((int)0x8DC6), UNSIGNED_INT_VEC3_EXT = ((int)0x8DC7), + UNSIGNED_INT_SAMPLER_3D_EXT = ((int)0x8DD3), + SAMPLER_CUBE_SHADOW_EXT = ((int)0x8DC5), + UNSIGNED_INT_SAMPLER_BUFFER_EXT = ((int)0x8DD8), + UNSIGNED_INT_SAMPLER_1D_EXT = ((int)0x8DD1), + INT_SAMPLER_1D_EXT = ((int)0x8DC9), + INT_SAMPLER_CUBE_EXT = ((int)0x8DCC), + UNSIGNED_INT_SAMPLER_2D_EXT = ((int)0x8DD2), + SAMPLER_1D_ARRAY_EXT = ((int)0x8DC0), SAMPLER_BUFFER_EXT = ((int)0x8DC2), INT_SAMPLER_BUFFER_EXT = ((int)0x8DD0), - UNSIGNED_INT_SAMPLER_2D_EXT = ((int)0x8DD2), - UNSIGNED_INT_VEC4_EXT = ((int)0x8DC8), - SAMPLER_2D_ARRAY_SHADOW_EXT = ((int)0x8DC4), - INT_SAMPLER_2D_EXT = ((int)0x8DCA), - INT_SAMPLER_CUBE_EXT = ((int)0x8DCC), - SAMPLER_1D_ARRAY_SHADOW_EXT = ((int)0x8DC3), UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT = ((int)0x8DD7), - INT_SAMPLER_2D_RECT_EXT = ((int)0x8DCD), - INT_SAMPLER_2D_ARRAY_EXT = ((int)0x8DCF), - SAMPLER_2D_ARRAY_EXT = ((int)0x8DC1), - SAMPLER_1D_ARRAY_EXT = ((int)0x8DC0), - SAMPLER_CUBE_SHADOW_EXT = ((int)0x8DC5), - UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT = ((int)0x8DD6), - UNSIGNED_INT_SAMPLER_1D_EXT = ((int)0x8DD1), - INT_SAMPLER_1D_ARRAY_EXT = ((int)0x8DCE), - INT_SAMPLER_3D_EXT = ((int)0x8DCB), - UNSIGNED_INT_SAMPLER_2D_RECT_EXT = ((int)0x8DD5), - UNSIGNED_INT_SAMPLER_3D_EXT = ((int)0x8DD3), - UNSIGNED_INT_SAMPLER_CUBE_EXT = ((int)0x8DD4), - UNSIGNED_INT_VEC2_EXT = ((int)0x8DC6), - UNSIGNED_INT_SAMPLER_BUFFER_EXT = ((int)0x8DD8), - INT_SAMPLER_1D_EXT = ((int)0x8DC9), } public enum EXT_draw_instanced @@ -8278,47 +8278,47 @@ namespace OpenTK.OpenGL public enum EXT_packed_float { - RGBA_SIGNED_COMPONENTS_EXT = ((int)0x8C3C), R11F_G11F_B10F_EXT = ((int)0x8C3A), + RGBA_SIGNED_COMPONENTS_EXT = ((int)0x8C3C), UNSIGNED_INT_10F_11F_11F_REV_EXT = ((int)0x8C3B), } public enum EXT_texture_array { - TEXTURE_BINDING_2D_ARRAY_EXT = ((int)0x8C1D), - TEXTURE_2D_ARRAY_EXT = ((int)0x8C1A), - FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT = ((int)NV_geometry_program4.FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT), TEXTURE_1D_ARRAY_EXT = ((int)0x8C18), - COMPARE_REF_DEPTH_TO_TEXTURE_EXT = ((int)0x884E), PROXY_TEXTURE_1D_ARRAY_EXT = ((int)0x8C19), - PROXY_TEXTURE_2D_ARRAY_EXT = ((int)0x8C1B), + TEXTURE_BINDING_2D_ARRAY_EXT = ((int)0x8C1D), TEXTURE_BINDING_1D_ARRAY_EXT = ((int)0x8C1C), MAX_ARRAY_TEXTURE_LAYERS_EXT = ((int)0x88FF), + COMPARE_REF_DEPTH_TO_TEXTURE_EXT = ((int)0x884E), + PROXY_TEXTURE_2D_ARRAY_EXT = ((int)0x8C1B), + TEXTURE_2D_ARRAY_EXT = ((int)0x8C1A), + FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT = ((int)NV_geometry_program4.FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT), } public enum EXT_texture_buffer_object { + MAX_TEXTURE_BUFFER_SIZE_EXT = ((int)0x8C2B), + TEXTURE_BUFFER_FORMAT_EXT = ((int)0x8C2E), TEXTURE_BUFFER_EXT = ((int)0x8C2A), TEXTURE_BINDING_BUFFER_EXT = ((int)0x8C2C), - MAX_TEXTURE_BUFFER_SIZE_EXT = ((int)0x8C2B), TEXTURE_BUFFER_DATA_STORE_BINDING_EXT = ((int)0x8C2D), - TEXTURE_BUFFER_FORMAT_EXT = ((int)0x8C2E), } public enum EXT_texture_compression_latc { - COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT = ((int)0x8C71), - COMPRESSED_LUMINANCE_LATC1_EXT = ((int)0x8C70), COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT = ((int)0x8C72), + COMPRESSED_LUMINANCE_LATC1_EXT = ((int)0x8C70), + COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT = ((int)0x8C71), COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT = ((int)0x8C73), } public enum EXT_texture_compression_rgtc { - COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT = ((int)0x8DBE), - COMPRESSED_SIGNED_RED_RGTC1_EXT = ((int)0x8DBC), - COMPRESSED_RED_RGTC1_EXT = ((int)0x8DBB), COMPRESSED_RED_GREEN_RGTC2_EXT = ((int)0x8DBD), + COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT = ((int)0x8DBE), + COMPRESSED_RED_RGTC1_EXT = ((int)0x8DBB), + COMPRESSED_SIGNED_RED_RGTC1_EXT = ((int)0x8DBC), } public enum EXT_texture_shared_exponent @@ -8331,9 +8331,9 @@ namespace OpenTK.OpenGL public enum NV_depth_buffer_float { DEPTH_BUFFER_FLOAT_MODE_NV = ((int)0x8DAF), - DEPTH32F_STENCIL8_NV = ((int)0x8DAC), DEPTH_COMPONENT32F_NV = ((int)0x8DAB), FLOAT_32_UNSIGNED_INT_24_8_REV_NV = ((int)0x8DAD), + DEPTH32F_STENCIL8_NV = ((int)0x8DAC), } public enum NV_fragment_program4 @@ -8342,10 +8342,10 @@ namespace OpenTK.OpenGL public enum NV_framebuffer_multisample_coverage { - MULTISAMPLE_COVERAGE_MODES_NV = ((int)0x8E12), - MAX_MULTISAMPLE_COVERAGE_MODES_NV = ((int)0x8E11), - RENDERBUFFER_COVERAGE_SAMPLES_NV = ((int)0x8CAB), RENDERBUFFER_COLOR_SAMPLES_NV = ((int)0x8E10), + MULTISAMPLE_COVERAGE_MODES_NV = ((int)0x8E12), + RENDERBUFFER_COVERAGE_SAMPLES_NV = ((int)0x8CAB), + MAX_MULTISAMPLE_COVERAGE_MODES_NV = ((int)0x8E11), } public enum EXT_framebuffer_sRGB @@ -8360,11 +8360,11 @@ namespace OpenTK.OpenGL public enum NV_parameter_buffer_object { + MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV = ((int)0x8DA0), GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA3), MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV = ((int)0x8DA1), - VERTEX_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA2), - MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV = ((int)0x8DA0), FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA4), + VERTEX_PROGRAM_PARAMETER_BUFFER_NV = ((int)0x8DA2), } public enum EXT_draw_buffers2 @@ -8373,92 +8373,92 @@ namespace OpenTK.OpenGL public enum NV_transform_feedback { + TEXTURE_COORD_NV = ((int)0x8C79), + BACK_PRIMARY_COLOR_NV = ((int)0x8C77), + PRIMITIVES_GENERATED_NV = ((int)0x8C87), + TRANSFORM_FEEDBACK_BUFFER_BINDING_NV = ((int)0x8C8F), + ACTIVE_VARYINGS_NV = ((int)0x8C81), + BACK_SECONDARY_COLOR_NV = ((int)0x8C78), + TRANSFORM_FEEDBACK_VARYINGS_NV = ((int)0x8C83), + RASTERIZER_DISCARD_NV = ((int)0x8C89), + SEPARATE_ATTRIBS_NV = ((int)0x8C8D), + ACTIVE_VARYING_MAX_LENGTH_NV = ((int)0x8C82), + MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV = ((int)0x8C80), + CLIP_DISTANCE_NV = ((int)0x8C7A), + MAX_TRANSFORM_FEEDBACK_INTERLEAVED_ATTRIBS_NV = ((int)0x8C8A), TRANSFORM_FEEDBACK_RECORD_NV = ((int)0x8C86), TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV = ((int)0x8C88), - VERTEX_ID_NV = ((int)0x8C7B), - PRIMITIVES_GENERATED_NV = ((int)0x8C87), + TRANSFORM_FEEDBACK_BUFFER_START_NV = ((int)0x8C84), + TRANSFORM_FEEDBACK_BUFFER_MODE_NV = ((int)0x8C7F), + MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV = ((int)0x8C8B), + GENERIC_ATTRIB_NV = ((int)0x8C7D), + TRANSFORM_FEEDBACK_BUFFER_NV = ((int)0x8C8E), TRANSFORM_FEEDBACK_ATTRIBS_NV = ((int)0x8C7E), - RASTERIZER_DISCARD_NV = ((int)0x8C89), - MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV = ((int)0x8C80), + VERTEX_ID_NV = ((int)0x8C7B), TRANSFORM_FEEDBACK_BUFFER_SIZE_NV = ((int)0x8C85), PRIMITIVE_ID_NV = ((int)0x8C7C), - TRANSFORM_FEEDBACK_BUFFER_NV = ((int)0x8C8E), - BACK_SECONDARY_COLOR_NV = ((int)0x8C78), - CLIP_DISTANCE_NV = ((int)0x8C7A), INTERLEAVED_ATTRIBS_NV = ((int)0x8C8C), - TRANSFORM_FEEDBACK_BUFFER_START_NV = ((int)0x8C84), - TRANSFORM_FEEDBACK_BUFFER_BINDING_NV = ((int)0x8C8F), - TEXTURE_COORD_NV = ((int)0x8C79), - TRANSFORM_FEEDBACK_VARYINGS_NV = ((int)0x8C83), - ACTIVE_VARYINGS_NV = ((int)0x8C81), - BACK_PRIMARY_COLOR_NV = ((int)0x8C77), - ACTIVE_VARYING_MAX_LENGTH_NV = ((int)0x8C82), - MAX_TRANSFORM_FEEDBACK_INTERLEAVED_ATTRIBS_NV = ((int)0x8C8A), - TRANSFORM_FEEDBACK_BUFFER_MODE_NV = ((int)0x8C7F), - GENERIC_ATTRIB_NV = ((int)0x8C7D), - SEPARATE_ATTRIBS_NV = ((int)0x8C8D), - MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV = ((int)0x8C8B), } public enum EXT_bindable_uniform { + MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT = ((int)0x8DE4), + MAX_BINDABLE_UNIFORM_SIZE_EXT = ((int)0x8DED), MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT = ((int)0x8DE3), UNIFORM_BUFFER_EXT = ((int)0x8DEE), - MAX_BINDABLE_UNIFORM_SIZE_EXT = ((int)0x8DED), - MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT = ((int)0x8DE4), UNIFORM_BUFFER_BINDING_EXT = ((int)0x8DEF), MAX_VERTEX_BINDABLE_UNIFORMS_EXT = ((int)0x8DE2), } public enum EXT_texture_integer { - LUMINANCE_ALPHA8I_EXT = ((int)0x8D93), - ALPHA16I_EXT = ((int)0x8D8A), - LUMINANCE_ALPHA16UI_EXT = ((int)0x8D7B), - ALPHA32I_EXT = ((int)0x8D84), - INTENSITY16I_EXT = ((int)0x8D8B), - LUMINANCE_ALPHA32I_EXT = ((int)0x8D87), - LUMINANCE32I_EXT = ((int)0x8D86), - RGB8I_EXT = ((int)0x8D8F), - ALPHA_INTEGER_EXT = ((int)0x8D97), - LUMINANCE_ALPHA_INTEGER_EXT = ((int)0x8D9D), - INTENSITY8UI_EXT = ((int)0x8D7F), - RGBA_INTEGER_MODE_EXT = ((int)0x8D9E), - INTENSITY32I_EXT = ((int)0x8D85), RED_INTEGER_EXT = ((int)0x8D94), - BLUE_INTEGER_EXT = ((int)0x8D96), - RGBA16UI_EXT = ((int)0x8D76), ALPHA16UI_EXT = ((int)0x8D78), - RGBA_INTEGER_EXT = ((int)0x8D99), - RGBA8I_EXT = ((int)0x8D8E), - RGBA8UI_EXT = ((int)0x8D7C), - RGB16I_EXT = ((int)0x8D89), - BGR_INTEGER_EXT = ((int)0x8D9A), - GREEN_INTEGER_EXT = ((int)0x8D95), - ALPHA32UI_EXT = ((int)0x8D72), - RGB_INTEGER_EXT = ((int)0x8D98), - RGB8UI_EXT = ((int)0x8D7D), - ALPHA8UI_EXT = ((int)0x8D7E), - LUMINANCE_ALPHA8UI_EXT = ((int)0x8D81), - LUMINANCE_ALPHA32UI_EXT = ((int)0x8D75), - LUMINANCE32UI_EXT = ((int)0x8D74), - LUMINANCE8I_EXT = ((int)0x8D92), - LUMINANCE_INTEGER_EXT = ((int)0x8D9C), - INTENSITY32UI_EXT = ((int)0x8D73), LUMINANCE16I_EXT = ((int)0x8D8C), + LUMINANCE_ALPHA_INTEGER_EXT = ((int)0x8D9D), + LUMINANCE32I_EXT = ((int)0x8D86), + RGBA16UI_EXT = ((int)0x8D76), + RGB32UI_EXT = ((int)0x8D71), + ALPHA32UI_EXT = ((int)0x8D72), RGBA32I_EXT = ((int)0x8D82), - INTENSITY16UI_EXT = ((int)0x8D79), - RGBA32UI_EXT = ((int)0x8D70), - INTENSITY8I_EXT = ((int)0x8D91), - LUMINANCE16UI_EXT = ((int)0x8D7A), - RGB32I_EXT = ((int)0x8D83), + BLUE_INTEGER_EXT = ((int)0x8D96), LUMINANCE_ALPHA16I_EXT = ((int)0x8D8D), + RGB8I_EXT = ((int)0x8D8F), + INTENSITY16I_EXT = ((int)0x8D8B), + ALPHA32I_EXT = ((int)0x8D84), + RGB32I_EXT = ((int)0x8D83), + RGB8UI_EXT = ((int)0x8D7D), + LUMINANCE32UI_EXT = ((int)0x8D74), + LUMINANCE16UI_EXT = ((int)0x8D7A), + RGB16I_EXT = ((int)0x8D89), LUMINANCE8UI_EXT = ((int)0x8D80), + INTENSITY16UI_EXT = ((int)0x8D79), + LUMINANCE_ALPHA8UI_EXT = ((int)0x8D81), RGBA16I_EXT = ((int)0x8D88), BGRA_INTEGER_EXT = ((int)0x8D9B), - RGB32UI_EXT = ((int)0x8D71), - RGB16UI_EXT = ((int)0x8D77), + LUMINANCE_ALPHA8I_EXT = ((int)0x8D93), + RGBA8I_EXT = ((int)0x8D8E), + LUMINANCE_INTEGER_EXT = ((int)0x8D9C), + BGR_INTEGER_EXT = ((int)0x8D9A), + GREEN_INTEGER_EXT = ((int)0x8D95), + ALPHA8UI_EXT = ((int)0x8D7E), + LUMINANCE8I_EXT = ((int)0x8D92), ALPHA8I_EXT = ((int)0x8D90), + RGBA32UI_EXT = ((int)0x8D70), + RGBA_INTEGER_MODE_EXT = ((int)0x8D9E), + RGB_INTEGER_EXT = ((int)0x8D98), + LUMINANCE_ALPHA32I_EXT = ((int)0x8D87), + ALPHA16I_EXT = ((int)0x8D8A), + INTENSITY32UI_EXT = ((int)0x8D73), + RGBA8UI_EXT = ((int)0x8D7C), + RGB16UI_EXT = ((int)0x8D77), + RGBA_INTEGER_EXT = ((int)0x8D99), + INTENSITY8I_EXT = ((int)0x8D91), + ALPHA_INTEGER_EXT = ((int)0x8D97), + LUMINANCE_ALPHA32UI_EXT = ((int)0x8D75), + INTENSITY32I_EXT = ((int)0x8D85), + INTENSITY8UI_EXT = ((int)0x8D7F), + LUMINANCE_ALPHA16UI_EXT = ((int)0x8D7B), } }