diff --git a/Source/OpenTK/Graphics/GL/AutoGeneratedAttribute.cs b/Source/OpenTK/Graphics/GL/AutoGeneratedAttribute.cs
new file mode 100644
index 00000000..a078370b
--- /dev/null
+++ b/Source/OpenTK/Graphics/GL/AutoGeneratedAttribute.cs
@@ -0,0 +1,61 @@
+#region License
+//
+// The Open Toolkit Library License
+//
+// Copyright (c) 2006 - 2008 the Open Toolkit library, except where noted.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights to
+// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+// the Software, and to permit persons to whom the Software is furnished to do
+// so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in all
+// copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+//
+#endregion
+
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace OpenTK.Graphics
+{
+ ///
+ /// Indicates that this function is generated automatically by a tool.
+ ///
+ public sealed class AutoGeneratedAttribute : Attribute
+ {
+ ///
+ /// Specifies the category of this OpenGL function.
+ ///
+ public string Category;
+
+ ///
+ /// Specifies the version of this OpenGL function.
+ ///
+ public string Version;
+
+ ///
+ /// Specifies the entry point of the OpenGL function.
+ ///
+ public string EntryPoint;
+
+ ///
+ /// Constructs a new AutoGeneratedAttribute instance.
+ ///
+ public AutoGeneratedAttribute()
+ {
+ }
+ }
+}
diff --git a/Source/OpenTK/Graphics/GL/GL.cs b/Source/OpenTK/Graphics/GL/GL.cs
index 6776d1bb..290fb827 100644
--- a/Source/OpenTK/Graphics/GL/GL.cs
+++ b/Source/OpenTK/Graphics/GL/GL.cs
@@ -1,3 +1,30 @@
+#region License
+//
+// The Open Toolkit Library License
+//
+// Copyright (c) 2006 - 2008 the Open Toolkit library, except where noted.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights to
+// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+// the Software, and to permit persons to whom the Software is furnished to do
+// so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in all
+// copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+//
+#endregion
+
namespace OpenTK.Graphics
{
using System;
@@ -9,18 +36,21 @@ namespace OpenTK.Graphics
{
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glNewList")]
public static
void NewList(UInt32 list, OpenTK.Graphics.ListMode mode)
{
Delegates.glNewList((UInt32)list, (OpenTK.Graphics.ListMode)mode);
}
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glNewList")]
public static
void NewList(Int32 list, OpenTK.Graphics.ListMode mode)
{
Delegates.glNewList((UInt32)list, (OpenTK.Graphics.ListMode)mode);
}
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glEndList")]
public static
void EndList()
{
@@ -28,18 +58,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glCallList")]
public static
void CallList(UInt32 list)
{
Delegates.glCallList((UInt32)list);
}
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glCallList")]
public static
void CallList(Int32 list)
{
Delegates.glCallList((UInt32)list);
}
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glCallLists")]
public static
void CallLists(Int32 n, OpenTK.Graphics.ListNameType type, IntPtr lists)
{
@@ -49,6 +82,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glCallLists")]
public static
void CallLists(Int32 n, OpenTK.Graphics.ListNameType type, [In, Out] object lists)
{
@@ -67,18 +101,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glDeleteLists")]
public static
void DeleteLists(UInt32 list, Int32 range)
{
Delegates.glDeleteLists((UInt32)list, (Int32)range);
}
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glDeleteLists")]
public static
void DeleteLists(Int32 list, Int32 range)
{
Delegates.glDeleteLists((UInt32)list, (Int32)range);
}
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glGenLists")]
public static
Int32 GenLists(Int32 range)
{
@@ -86,24 +123,28 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glListBase")]
public static
void ListBase(UInt32 @base)
{
Delegates.glListBase((UInt32)@base);
}
+ [AutoGenerated(Category = "DisplayList", Version = "1.0", EntryPoint = "glListBase")]
public static
void ListBase(Int32 @base)
{
Delegates.glListBase((UInt32)@base);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glBegin")]
public static
void Begin(OpenTK.Graphics.BeginMode mode)
{
Delegates.glBegin((OpenTK.Graphics.BeginMode)mode);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glBitmap")]
public static
void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, Byte[] bitmap)
{
@@ -116,6 +157,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glBitmap")]
public static
void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, ref Byte bitmap)
{
@@ -129,6 +171,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glBitmap")]
public static
unsafe void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, Byte* bitmap)
{
@@ -136,6 +179,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3b")]
public static
void Color3(SByte red, SByte green, SByte blue)
{
@@ -143,6 +187,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3bv")]
public static
void Color3(SByte[] v)
{
@@ -156,6 +201,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3bv")]
public static
void Color3(ref SByte v)
{
@@ -169,18 +215,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3bv")]
public static
unsafe void Color3(SByte* v)
{
Delegates.glColor3bv((SByte*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3d")]
public static
void Color3(Double red, Double green, Double blue)
{
Delegates.glColor3d((Double)red, (Double)green, (Double)blue);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3dv")]
public static
void Color3(Double[] v)
{
@@ -193,6 +242,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3dv")]
public static
void Color3(ref Double v)
{
@@ -206,18 +256,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3dv")]
public static
unsafe void Color3(Double* v)
{
Delegates.glColor3dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3f")]
public static
void Color3(Single red, Single green, Single blue)
{
Delegates.glColor3f((Single)red, (Single)green, (Single)blue);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3fv")]
public static
void Color3(Single[] v)
{
@@ -230,6 +283,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3fv")]
public static
void Color3(ref Single v)
{
@@ -243,18 +297,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3fv")]
public static
unsafe void Color3(Single* v)
{
Delegates.glColor3fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3ub")]
public static
void Color3(Byte red, Byte green, Byte blue)
{
Delegates.glColor3ub((Byte)red, (Byte)green, (Byte)blue);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3ubv")]
public static
void Color3(Byte[] v)
{
@@ -267,6 +324,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3ubv")]
public static
void Color3(ref Byte v)
{
@@ -280,6 +338,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3ubv")]
public static
unsafe void Color3(Byte* v)
{
@@ -287,12 +346,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3ui")]
public static
void Color3(UInt32 red, UInt32 green, UInt32 blue)
{
Delegates.glColor3ui((UInt32)red, (UInt32)green, (UInt32)blue);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3ui")]
public static
void Color3(Int32 red, Int32 green, Int32 blue)
{
@@ -300,6 +361,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3uiv")]
public static
void Color3(UInt32[] v)
{
@@ -312,6 +374,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3uiv")]
public static
void Color3(Int32[] v)
{
@@ -325,6 +388,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3uiv")]
public static
void Color3(ref UInt32 v)
{
@@ -337,6 +401,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3uiv")]
public static
void Color3(ref Int32 v)
{
@@ -350,6 +415,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3uiv")]
public static
unsafe void Color3(UInt32* v)
{
@@ -357,6 +423,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3uiv")]
public static
unsafe void Color3(Int32* v)
{
@@ -364,12 +431,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3us")]
public static
void Color3(UInt16 red, UInt16 green, UInt16 blue)
{
Delegates.glColor3us((UInt16)red, (UInt16)green, (UInt16)blue);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3us")]
public static
void Color3(Int16 red, Int16 green, Int16 blue)
{
@@ -377,6 +446,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3usv")]
public static
void Color3(UInt16[] v)
{
@@ -389,6 +459,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3usv")]
public static
void Color3(Int16[] v)
{
@@ -402,6 +473,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3usv")]
public static
void Color3(ref UInt16 v)
{
@@ -414,6 +486,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3usv")]
public static
void Color3(ref Int16 v)
{
@@ -427,6 +500,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3usv")]
public static
unsafe void Color3(UInt16* v)
{
@@ -434,6 +508,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor3usv")]
public static
unsafe void Color3(Int16* v)
{
@@ -441,6 +516,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4b")]
public static
void Color4(SByte red, SByte green, SByte blue, SByte alpha)
{
@@ -448,6 +524,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4bv")]
public static
void Color4(SByte[] v)
{
@@ -461,6 +538,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4bv")]
public static
void Color4(ref SByte v)
{
@@ -474,18 +552,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4bv")]
public static
unsafe void Color4(SByte* v)
{
Delegates.glColor4bv((SByte*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4d")]
public static
void Color4(Double red, Double green, Double blue, Double alpha)
{
Delegates.glColor4d((Double)red, (Double)green, (Double)blue, (Double)alpha);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4dv")]
public static
void Color4(Double[] v)
{
@@ -498,6 +579,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4dv")]
public static
void Color4(ref Double v)
{
@@ -511,18 +593,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4dv")]
public static
unsafe void Color4(Double* v)
{
Delegates.glColor4dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4f")]
public static
void Color4(Single red, Single green, Single blue, Single alpha)
{
Delegates.glColor4f((Single)red, (Single)green, (Single)blue, (Single)alpha);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4fv")]
public static
void Color4(Single[] v)
{
@@ -535,6 +620,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4fv")]
public static
void Color4(ref Single v)
{
@@ -548,18 +634,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4fv")]
public static
unsafe void Color4(Single* v)
{
Delegates.glColor4fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4ub")]
public static
void Color4(Byte red, Byte green, Byte blue, Byte alpha)
{
Delegates.glColor4ub((Byte)red, (Byte)green, (Byte)blue, (Byte)alpha);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4ubv")]
public static
void Color4(Byte[] v)
{
@@ -572,6 +661,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4ubv")]
public static
void Color4(ref Byte v)
{
@@ -585,6 +675,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4ubv")]
public static
unsafe void Color4(Byte* v)
{
@@ -592,12 +683,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4ui")]
public static
void Color4(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha)
{
Delegates.glColor4ui((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4ui")]
public static
void Color4(Int32 red, Int32 green, Int32 blue, Int32 alpha)
{
@@ -605,6 +698,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4uiv")]
public static
void Color4(UInt32[] v)
{
@@ -617,6 +711,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4uiv")]
public static
void Color4(Int32[] v)
{
@@ -630,6 +725,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4uiv")]
public static
void Color4(ref UInt32 v)
{
@@ -642,6 +738,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4uiv")]
public static
void Color4(ref Int32 v)
{
@@ -655,6 +752,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4uiv")]
public static
unsafe void Color4(UInt32* v)
{
@@ -662,6 +760,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4uiv")]
public static
unsafe void Color4(Int32* v)
{
@@ -669,12 +768,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4us")]
public static
void Color4(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha)
{
Delegates.glColor4us((UInt16)red, (UInt16)green, (UInt16)blue, (UInt16)alpha);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4us")]
public static
void Color4(Int16 red, Int16 green, Int16 blue, Int16 alpha)
{
@@ -682,6 +783,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4usv")]
public static
void Color4(UInt16[] v)
{
@@ -694,6 +796,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4usv")]
public static
void Color4(Int16[] v)
{
@@ -707,6 +810,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4usv")]
public static
void Color4(ref UInt16 v)
{
@@ -719,6 +823,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4usv")]
public static
void Color4(ref Int16 v)
{
@@ -732,6 +837,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4usv")]
public static
unsafe void Color4(UInt16* v)
{
@@ -739,18 +845,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glColor4usv")]
public static
unsafe void Color4(Int16* v)
{
Delegates.glColor4usv((UInt16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glEdgeFlag")]
public static
void EdgeFlag(bool flag)
{
Delegates.glEdgeFlag((bool)flag);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glEdgeFlagv")]
public static
void EdgeFlagv(bool[] flag)
{
@@ -763,6 +872,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glEdgeFlagv")]
public static
void EdgeFlagv(ref bool flag)
{
@@ -776,24 +886,28 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glEdgeFlagv")]
public static
unsafe void EdgeFlagv(bool* flag)
{
Delegates.glEdgeFlagv((bool*)flag);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glEnd")]
public static
void End()
{
Delegates.glEnd();
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexd")]
public static
void Index(Double c)
{
Delegates.glIndexd((Double)c);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexdv")]
public static
void Indexv(Double[] c)
{
@@ -806,6 +920,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexdv")]
public static
void Indexv(ref Double c)
{
@@ -819,18 +934,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexdv")]
public static
unsafe void Indexv(Double* c)
{
Delegates.glIndexdv((Double*)c);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexf")]
public static
void Index(Single c)
{
Delegates.glIndexf((Single)c);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexfv")]
public static
void Indexv(Single[] c)
{
@@ -843,6 +961,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexfv")]
public static
void Indexv(ref Single c)
{
@@ -856,18 +975,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexfv")]
public static
unsafe void Indexv(Single* c)
{
Delegates.glIndexfv((Single*)c);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexi")]
public static
void Index(Int32 c)
{
Delegates.glIndexi((Int32)c);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexiv")]
public static
void Indexv(Int32[] c)
{
@@ -880,6 +1002,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexiv")]
public static
void Indexv(ref Int32 c)
{
@@ -893,18 +1016,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexiv")]
public static
unsafe void Indexv(Int32* c)
{
Delegates.glIndexiv((Int32*)c);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexs")]
public static
void Index(Int16 c)
{
Delegates.glIndexs((Int16)c);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexsv")]
public static
void Indexv(Int16[] c)
{
@@ -917,6 +1043,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexsv")]
public static
void Indexv(ref Int16 c)
{
@@ -930,6 +1057,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glIndexsv")]
public static
unsafe void Indexv(Int16* c)
{
@@ -937,12 +1065,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3b")]
public static
void Normal3(SByte nx, SByte ny, SByte nz)
{
Delegates.glNormal3b((SByte)nx, (SByte)ny, (SByte)nz);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3b")]
public static
void Normal3(Byte nx, Byte ny, Byte nz)
{
@@ -950,6 +1080,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3bv")]
public static
void Normal3(SByte[] v)
{
@@ -962,6 +1093,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3bv")]
public static
void Normal3(Byte[] v)
{
@@ -975,6 +1107,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3bv")]
public static
void Normal3(ref SByte v)
{
@@ -987,6 +1120,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3bv")]
public static
void Normal3(ref Byte v)
{
@@ -1000,6 +1134,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3bv")]
public static
unsafe void Normal3(SByte* v)
{
@@ -1007,18 +1142,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3bv")]
public static
unsafe void Normal3(Byte* v)
{
Delegates.glNormal3bv((SByte*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3d")]
public static
void Normal3(Double nx, Double ny, Double nz)
{
Delegates.glNormal3d((Double)nx, (Double)ny, (Double)nz);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3dv")]
public static
void Normal3(Double[] v)
{
@@ -1031,6 +1169,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3dv")]
public static
void Normal3(ref Double v)
{
@@ -1044,18 +1183,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3dv")]
public static
unsafe void Normal3(Double* v)
{
Delegates.glNormal3dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3f")]
public static
void Normal3(Single nx, Single ny, Single nz)
{
Delegates.glNormal3f((Single)nx, (Single)ny, (Single)nz);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3fv")]
public static
void Normal3(Single[] v)
{
@@ -1068,6 +1210,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3fv")]
public static
void Normal3(ref Single v)
{
@@ -1081,18 +1224,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3fv")]
public static
unsafe void Normal3(Single* v)
{
Delegates.glNormal3fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3i")]
public static
void Normal3(Int32 nx, Int32 ny, Int32 nz)
{
Delegates.glNormal3i((Int32)nx, (Int32)ny, (Int32)nz);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3iv")]
public static
void Normal3(Int32[] v)
{
@@ -1105,6 +1251,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3iv")]
public static
void Normal3(ref Int32 v)
{
@@ -1118,18 +1265,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3iv")]
public static
unsafe void Normal3(Int32* v)
{
Delegates.glNormal3iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3s")]
public static
void Normal3(Int16 nx, Int16 ny, Int16 nz)
{
Delegates.glNormal3s((Int16)nx, (Int16)ny, (Int16)nz);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3sv")]
public static
void Normal3(Int16[] v)
{
@@ -1142,6 +1292,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3sv")]
public static
void Normal3(ref Int16 v)
{
@@ -1155,18 +1306,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glNormal3sv")]
public static
unsafe void Normal3(Int16* v)
{
Delegates.glNormal3sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2d")]
public static
void RasterPos2(Double x, Double y)
{
Delegates.glRasterPos2d((Double)x, (Double)y);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2dv")]
public static
void RasterPos2(Double[] v)
{
@@ -1179,6 +1333,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2dv")]
public static
void RasterPos2(ref Double v)
{
@@ -1192,18 +1347,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2dv")]
public static
unsafe void RasterPos2(Double* v)
{
Delegates.glRasterPos2dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2f")]
public static
void RasterPos2(Single x, Single y)
{
Delegates.glRasterPos2f((Single)x, (Single)y);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2fv")]
public static
void RasterPos2(Single[] v)
{
@@ -1216,6 +1374,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2fv")]
public static
void RasterPos2(ref Single v)
{
@@ -1229,18 +1388,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2fv")]
public static
unsafe void RasterPos2(Single* v)
{
Delegates.glRasterPos2fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2i")]
public static
void RasterPos2(Int32 x, Int32 y)
{
Delegates.glRasterPos2i((Int32)x, (Int32)y);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2iv")]
public static
void RasterPos2(Int32[] v)
{
@@ -1253,6 +1415,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2iv")]
public static
void RasterPos2(ref Int32 v)
{
@@ -1266,18 +1429,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2iv")]
public static
unsafe void RasterPos2(Int32* v)
{
Delegates.glRasterPos2iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2s")]
public static
void RasterPos2(Int16 x, Int16 y)
{
Delegates.glRasterPos2s((Int16)x, (Int16)y);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2sv")]
public static
void RasterPos2(Int16[] v)
{
@@ -1290,6 +1456,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2sv")]
public static
void RasterPos2(ref Int16 v)
{
@@ -1303,18 +1470,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos2sv")]
public static
unsafe void RasterPos2(Int16* v)
{
Delegates.glRasterPos2sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3d")]
public static
void RasterPos3(Double x, Double y, Double z)
{
Delegates.glRasterPos3d((Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3dv")]
public static
void RasterPos3(Double[] v)
{
@@ -1327,6 +1497,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3dv")]
public static
void RasterPos3(ref Double v)
{
@@ -1340,18 +1511,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3dv")]
public static
unsafe void RasterPos3(Double* v)
{
Delegates.glRasterPos3dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3f")]
public static
void RasterPos3(Single x, Single y, Single z)
{
Delegates.glRasterPos3f((Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3fv")]
public static
void RasterPos3(Single[] v)
{
@@ -1364,6 +1538,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3fv")]
public static
void RasterPos3(ref Single v)
{
@@ -1377,18 +1552,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3fv")]
public static
unsafe void RasterPos3(Single* v)
{
Delegates.glRasterPos3fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3i")]
public static
void RasterPos3(Int32 x, Int32 y, Int32 z)
{
Delegates.glRasterPos3i((Int32)x, (Int32)y, (Int32)z);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3iv")]
public static
void RasterPos3(Int32[] v)
{
@@ -1401,6 +1579,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3iv")]
public static
void RasterPos3(ref Int32 v)
{
@@ -1414,18 +1593,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3iv")]
public static
unsafe void RasterPos3(Int32* v)
{
Delegates.glRasterPos3iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3s")]
public static
void RasterPos3(Int16 x, Int16 y, Int16 z)
{
Delegates.glRasterPos3s((Int16)x, (Int16)y, (Int16)z);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3sv")]
public static
void RasterPos3(Int16[] v)
{
@@ -1438,6 +1620,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3sv")]
public static
void RasterPos3(ref Int16 v)
{
@@ -1451,18 +1634,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos3sv")]
public static
unsafe void RasterPos3(Int16* v)
{
Delegates.glRasterPos3sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4d")]
public static
void RasterPos4(Double x, Double y, Double z, Double w)
{
Delegates.glRasterPos4d((Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4dv")]
public static
void RasterPos4(Double[] v)
{
@@ -1475,6 +1661,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4dv")]
public static
void RasterPos4(ref Double v)
{
@@ -1488,18 +1675,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4dv")]
public static
unsafe void RasterPos4(Double* v)
{
Delegates.glRasterPos4dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4f")]
public static
void RasterPos4(Single x, Single y, Single z, Single w)
{
Delegates.glRasterPos4f((Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4fv")]
public static
void RasterPos4(Single[] v)
{
@@ -1512,6 +1702,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4fv")]
public static
void RasterPos4(ref Single v)
{
@@ -1525,18 +1716,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4fv")]
public static
unsafe void RasterPos4(Single* v)
{
Delegates.glRasterPos4fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4i")]
public static
void RasterPos4(Int32 x, Int32 y, Int32 z, Int32 w)
{
Delegates.glRasterPos4i((Int32)x, (Int32)y, (Int32)z, (Int32)w);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4iv")]
public static
void RasterPos4(Int32[] v)
{
@@ -1549,6 +1743,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4iv")]
public static
void RasterPos4(ref Int32 v)
{
@@ -1562,18 +1757,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4iv")]
public static
unsafe void RasterPos4(Int32* v)
{
Delegates.glRasterPos4iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4s")]
public static
void RasterPos4(Int16 x, Int16 y, Int16 z, Int16 w)
{
Delegates.glRasterPos4s((Int16)x, (Int16)y, (Int16)z, (Int16)w);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4sv")]
public static
void RasterPos4(Int16[] v)
{
@@ -1586,6 +1784,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4sv")]
public static
void RasterPos4(ref Int16 v)
{
@@ -1599,18 +1798,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRasterPos4sv")]
public static
unsafe void RasterPos4(Int16* v)
{
Delegates.glRasterPos4sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectd")]
public static
void Rect(Double x1, Double y1, Double x2, Double y2)
{
Delegates.glRectd((Double)x1, (Double)y1, (Double)x2, (Double)y2);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectdv")]
public static
void Rect(Double[] v1, Double[] v2)
{
@@ -1624,6 +1826,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectdv")]
public static
void Rect(ref Double v1, ref Double v2)
{
@@ -1638,18 +1841,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectdv")]
public static
unsafe void Rect(Double* v1, Double* v2)
{
Delegates.glRectdv((Double*)v1, (Double*)v2);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectf")]
public static
void Rect(Single x1, Single y1, Single x2, Single y2)
{
Delegates.glRectf((Single)x1, (Single)y1, (Single)x2, (Single)y2);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectfv")]
public static
void Rect(Single[] v1, Single[] v2)
{
@@ -1663,6 +1869,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectfv")]
public static
void Rect(ref Single v1, ref Single v2)
{
@@ -1677,18 +1884,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectfv")]
public static
unsafe void Rect(Single* v1, Single* v2)
{
Delegates.glRectfv((Single*)v1, (Single*)v2);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRecti")]
public static
void Rect(Int32 x1, Int32 y1, Int32 x2, Int32 y2)
{
Delegates.glRecti((Int32)x1, (Int32)y1, (Int32)x2, (Int32)y2);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectiv")]
public static
void Rect(Int32[] v1, Int32[] v2)
{
@@ -1702,6 +1912,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectiv")]
public static
void Rect(ref Int32 v1, ref Int32 v2)
{
@@ -1716,18 +1927,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectiv")]
public static
unsafe void Rect(Int32* v1, Int32* v2)
{
Delegates.glRectiv((Int32*)v1, (Int32*)v2);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRects")]
public static
void Rects(Int16 x1, Int16 y1, Int16 x2, Int16 y2)
{
Delegates.glRects((Int16)x1, (Int16)y1, (Int16)x2, (Int16)y2);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectsv")]
public static
void Rect(Int16[] v1, Int16[] v2)
{
@@ -1741,6 +1955,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectsv")]
public static
void Rect(ref Int16 v1, ref Int16 v2)
{
@@ -1755,18 +1970,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glRectsv")]
public static
unsafe void Rect(Int16* v1, Int16* v2)
{
Delegates.glRectsv((Int16*)v1, (Int16*)v2);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1d")]
public static
void TexCoord1(Double s)
{
Delegates.glTexCoord1d((Double)s);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1dv")]
public static
void TexCoord1v(Double[] v)
{
@@ -1779,6 +1997,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1dv")]
public static
void TexCoord1v(ref Double v)
{
@@ -1792,18 +2011,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1dv")]
public static
unsafe void TexCoord1v(Double* v)
{
Delegates.glTexCoord1dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1f")]
public static
void TexCoord1(Single s)
{
Delegates.glTexCoord1f((Single)s);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1fv")]
public static
void TexCoord1v(Single[] v)
{
@@ -1816,6 +2038,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1fv")]
public static
void TexCoord1v(ref Single v)
{
@@ -1829,18 +2052,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1fv")]
public static
unsafe void TexCoord1v(Single* v)
{
Delegates.glTexCoord1fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1i")]
public static
void TexCoord1(Int32 s)
{
Delegates.glTexCoord1i((Int32)s);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1iv")]
public static
void TexCoord1v(Int32[] v)
{
@@ -1853,6 +2079,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1iv")]
public static
void TexCoord1v(ref Int32 v)
{
@@ -1866,18 +2093,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1iv")]
public static
unsafe void TexCoord1v(Int32* v)
{
Delegates.glTexCoord1iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1s")]
public static
void TexCoord1(Int16 s)
{
Delegates.glTexCoord1s((Int16)s);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1sv")]
public static
void TexCoord1v(Int16[] v)
{
@@ -1890,6 +2120,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1sv")]
public static
void TexCoord1v(ref Int16 v)
{
@@ -1903,18 +2134,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord1sv")]
public static
unsafe void TexCoord1v(Int16* v)
{
Delegates.glTexCoord1sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2d")]
public static
void TexCoord2(Double s, Double t)
{
Delegates.glTexCoord2d((Double)s, (Double)t);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2dv")]
public static
void TexCoord2(Double[] v)
{
@@ -1927,6 +2161,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2dv")]
public static
void TexCoord2(ref Double v)
{
@@ -1940,18 +2175,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2dv")]
public static
unsafe void TexCoord2(Double* v)
{
Delegates.glTexCoord2dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2f")]
public static
void TexCoord2(Single s, Single t)
{
Delegates.glTexCoord2f((Single)s, (Single)t);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2fv")]
public static
void TexCoord2(Single[] v)
{
@@ -1964,6 +2202,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2fv")]
public static
void TexCoord2(ref Single v)
{
@@ -1977,18 +2216,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2fv")]
public static
unsafe void TexCoord2(Single* v)
{
Delegates.glTexCoord2fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2i")]
public static
void TexCoord2(Int32 s, Int32 t)
{
Delegates.glTexCoord2i((Int32)s, (Int32)t);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2iv")]
public static
void TexCoord2(Int32[] v)
{
@@ -2001,6 +2243,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2iv")]
public static
void TexCoord2(ref Int32 v)
{
@@ -2014,18 +2257,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2iv")]
public static
unsafe void TexCoord2(Int32* v)
{
Delegates.glTexCoord2iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2s")]
public static
void TexCoord2(Int16 s, Int16 t)
{
Delegates.glTexCoord2s((Int16)s, (Int16)t);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2sv")]
public static
void TexCoord2(Int16[] v)
{
@@ -2038,6 +2284,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2sv")]
public static
void TexCoord2(ref Int16 v)
{
@@ -2051,18 +2298,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord2sv")]
public static
unsafe void TexCoord2(Int16* v)
{
Delegates.glTexCoord2sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3d")]
public static
void TexCoord3(Double s, Double t, Double r)
{
Delegates.glTexCoord3d((Double)s, (Double)t, (Double)r);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3dv")]
public static
void TexCoord3(Double[] v)
{
@@ -2075,6 +2325,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3dv")]
public static
void TexCoord3(ref Double v)
{
@@ -2088,18 +2339,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3dv")]
public static
unsafe void TexCoord3(Double* v)
{
Delegates.glTexCoord3dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3f")]
public static
void TexCoord3(Single s, Single t, Single r)
{
Delegates.glTexCoord3f((Single)s, (Single)t, (Single)r);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3fv")]
public static
void TexCoord3(Single[] v)
{
@@ -2112,6 +2366,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3fv")]
public static
void TexCoord3(ref Single v)
{
@@ -2125,18 +2380,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3fv")]
public static
unsafe void TexCoord3(Single* v)
{
Delegates.glTexCoord3fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3i")]
public static
void TexCoord3(Int32 s, Int32 t, Int32 r)
{
Delegates.glTexCoord3i((Int32)s, (Int32)t, (Int32)r);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3iv")]
public static
void TexCoord3(Int32[] v)
{
@@ -2149,6 +2407,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3iv")]
public static
void TexCoord3(ref Int32 v)
{
@@ -2162,18 +2421,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3iv")]
public static
unsafe void TexCoord3(Int32* v)
{
Delegates.glTexCoord3iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3s")]
public static
void TexCoord3(Int16 s, Int16 t, Int16 r)
{
Delegates.glTexCoord3s((Int16)s, (Int16)t, (Int16)r);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3sv")]
public static
void TexCoord3(Int16[] v)
{
@@ -2186,6 +2448,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3sv")]
public static
void TexCoord3(ref Int16 v)
{
@@ -2199,18 +2462,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord3sv")]
public static
unsafe void TexCoord3(Int16* v)
{
Delegates.glTexCoord3sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4d")]
public static
void TexCoord4(Double s, Double t, Double r, Double q)
{
Delegates.glTexCoord4d((Double)s, (Double)t, (Double)r, (Double)q);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4dv")]
public static
void TexCoord4(Double[] v)
{
@@ -2223,6 +2489,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4dv")]
public static
void TexCoord4(ref Double v)
{
@@ -2236,18 +2503,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4dv")]
public static
unsafe void TexCoord4(Double* v)
{
Delegates.glTexCoord4dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4f")]
public static
void TexCoord4(Single s, Single t, Single r, Single q)
{
Delegates.glTexCoord4f((Single)s, (Single)t, (Single)r, (Single)q);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4fv")]
public static
void TexCoord4(Single[] v)
{
@@ -2260,6 +2530,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4fv")]
public static
void TexCoord4(ref Single v)
{
@@ -2273,18 +2544,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4fv")]
public static
unsafe void TexCoord4(Single* v)
{
Delegates.glTexCoord4fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4i")]
public static
void TexCoord4(Int32 s, Int32 t, Int32 r, Int32 q)
{
Delegates.glTexCoord4i((Int32)s, (Int32)t, (Int32)r, (Int32)q);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4iv")]
public static
void TexCoord4(Int32[] v)
{
@@ -2297,6 +2571,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4iv")]
public static
void TexCoord4(ref Int32 v)
{
@@ -2310,18 +2585,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4iv")]
public static
unsafe void TexCoord4(Int32* v)
{
Delegates.glTexCoord4iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4s")]
public static
void TexCoord4(Int16 s, Int16 t, Int16 r, Int16 q)
{
Delegates.glTexCoord4s((Int16)s, (Int16)t, (Int16)r, (Int16)q);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4sv")]
public static
void TexCoord4(Int16[] v)
{
@@ -2334,6 +2612,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4sv")]
public static
void TexCoord4(ref Int16 v)
{
@@ -2347,18 +2626,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glTexCoord4sv")]
public static
unsafe void TexCoord4(Int16* v)
{
Delegates.glTexCoord4sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2d")]
public static
void Vertex2(Double x, Double y)
{
Delegates.glVertex2d((Double)x, (Double)y);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2dv")]
public static
void Vertex2(Double[] v)
{
@@ -2371,6 +2653,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2dv")]
public static
void Vertex2(ref Double v)
{
@@ -2384,18 +2667,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2dv")]
public static
unsafe void Vertex2(Double* v)
{
Delegates.glVertex2dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2f")]
public static
void Vertex2(Single x, Single y)
{
Delegates.glVertex2f((Single)x, (Single)y);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2fv")]
public static
void Vertex2(Single[] v)
{
@@ -2408,6 +2694,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2fv")]
public static
void Vertex2(ref Single v)
{
@@ -2421,18 +2708,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2fv")]
public static
unsafe void Vertex2(Single* v)
{
Delegates.glVertex2fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2i")]
public static
void Vertex2(Int32 x, Int32 y)
{
Delegates.glVertex2i((Int32)x, (Int32)y);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2iv")]
public static
void Vertex2(Int32[] v)
{
@@ -2445,6 +2735,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2iv")]
public static
void Vertex2(ref Int32 v)
{
@@ -2458,18 +2749,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2iv")]
public static
unsafe void Vertex2(Int32* v)
{
Delegates.glVertex2iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2s")]
public static
void Vertex2(Int16 x, Int16 y)
{
Delegates.glVertex2s((Int16)x, (Int16)y);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2sv")]
public static
void Vertex2(Int16[] v)
{
@@ -2482,6 +2776,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2sv")]
public static
void Vertex2(ref Int16 v)
{
@@ -2495,18 +2790,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex2sv")]
public static
unsafe void Vertex2(Int16* v)
{
Delegates.glVertex2sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3d")]
public static
void Vertex3(Double x, Double y, Double z)
{
Delegates.glVertex3d((Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3dv")]
public static
void Vertex3(Double[] v)
{
@@ -2519,6 +2817,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3dv")]
public static
void Vertex3(ref Double v)
{
@@ -2532,18 +2831,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3dv")]
public static
unsafe void Vertex3(Double* v)
{
Delegates.glVertex3dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3f")]
public static
void Vertex3(Single x, Single y, Single z)
{
Delegates.glVertex3f((Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3fv")]
public static
void Vertex3(Single[] v)
{
@@ -2556,6 +2858,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3fv")]
public static
void Vertex3(ref Single v)
{
@@ -2569,18 +2872,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3fv")]
public static
unsafe void Vertex3(Single* v)
{
Delegates.glVertex3fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3i")]
public static
void Vertex3(Int32 x, Int32 y, Int32 z)
{
Delegates.glVertex3i((Int32)x, (Int32)y, (Int32)z);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3iv")]
public static
void Vertex3(Int32[] v)
{
@@ -2593,6 +2899,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3iv")]
public static
void Vertex3(ref Int32 v)
{
@@ -2606,18 +2913,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3iv")]
public static
unsafe void Vertex3(Int32* v)
{
Delegates.glVertex3iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3s")]
public static
void Vertex3(Int16 x, Int16 y, Int16 z)
{
Delegates.glVertex3s((Int16)x, (Int16)y, (Int16)z);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3sv")]
public static
void Vertex3(Int16[] v)
{
@@ -2630,6 +2940,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3sv")]
public static
void Vertex3(ref Int16 v)
{
@@ -2643,18 +2954,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex3sv")]
public static
unsafe void Vertex3(Int16* v)
{
Delegates.glVertex3sv((Int16*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4d")]
public static
void Vertex4(Double x, Double y, Double z, Double w)
{
Delegates.glVertex4d((Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4dv")]
public static
void Vertex4(Double[] v)
{
@@ -2667,6 +2981,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4dv")]
public static
void Vertex4(ref Double v)
{
@@ -2680,18 +2995,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4dv")]
public static
unsafe void Vertex4(Double* v)
{
Delegates.glVertex4dv((Double*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4f")]
public static
void Vertex4(Single x, Single y, Single z, Single w)
{
Delegates.glVertex4f((Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4fv")]
public static
void Vertex4(Single[] v)
{
@@ -2704,6 +3022,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4fv")]
public static
void Vertex4(ref Single v)
{
@@ -2717,18 +3036,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4fv")]
public static
unsafe void Vertex4(Single* v)
{
Delegates.glVertex4fv((Single*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4i")]
public static
void Vertex4(Int32 x, Int32 y, Int32 z, Int32 w)
{
Delegates.glVertex4i((Int32)x, (Int32)y, (Int32)z, (Int32)w);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4iv")]
public static
void Vertex4(Int32[] v)
{
@@ -2741,6 +3063,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4iv")]
public static
void Vertex4(ref Int32 v)
{
@@ -2754,18 +3077,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4iv")]
public static
unsafe void Vertex4(Int32* v)
{
Delegates.glVertex4iv((Int32*)v);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4s")]
public static
void Vertex4(Int16 x, Int16 y, Int16 z, Int16 w)
{
Delegates.glVertex4s((Int16)x, (Int16)y, (Int16)z, (Int16)w);
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4sv")]
public static
void Vertex4(Int16[] v)
{
@@ -2778,6 +3104,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4sv")]
public static
void Vertex4(ref Int16 v)
{
@@ -2791,12 +3118,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Drawing", Version = "1.0", EntryPoint = "glVertex4sv")]
public static
unsafe void Vertex4(Int16* v)
{
Delegates.glVertex4sv((Int16*)v);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glClipPlane")]
public static
void ClipPlane(OpenTK.Graphics.ClipPlaneName plane, Double[] equation)
{
@@ -2809,6 +3138,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glClipPlane")]
public static
void ClipPlane(OpenTK.Graphics.ClipPlaneName plane, ref Double equation)
{
@@ -2822,30 +3152,35 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glClipPlane")]
public static
unsafe void ClipPlane(OpenTK.Graphics.ClipPlaneName plane, Double* equation)
{
Delegates.glClipPlane((OpenTK.Graphics.ClipPlaneName)plane, (Double*)equation);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glColorMaterial")]
public static
void ColorMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.ColorMaterialParameter mode)
{
Delegates.glColorMaterial((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.ColorMaterialParameter)mode);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glCullFace")]
public static
void CullFace(OpenTK.Graphics.CullFaceMode mode)
{
Delegates.glCullFace((OpenTK.Graphics.CullFaceMode)mode);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glFogf")]
public static
void Fog(OpenTK.Graphics.FogParameter pname, Single param)
{
Delegates.glFogf((OpenTK.Graphics.FogParameter)pname, (Single)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glFogfv")]
public static
void Fogv(OpenTK.Graphics.FogParameter pname, Single[] @params)
{
@@ -2858,6 +3193,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glFogfv")]
public static
void Fogv(OpenTK.Graphics.FogParameter pname, ref Single @params)
{
@@ -2871,18 +3207,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glFogfv")]
public static
unsafe void Fogv(OpenTK.Graphics.FogParameter pname, Single* @params)
{
Delegates.glFogfv((OpenTK.Graphics.FogParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glFogi")]
public static
void Fog(OpenTK.Graphics.FogParameter pname, Int32 param)
{
Delegates.glFogi((OpenTK.Graphics.FogParameter)pname, (Int32)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glFogiv")]
public static
void Fogv(OpenTK.Graphics.FogParameter pname, Int32[] @params)
{
@@ -2895,6 +3234,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glFogiv")]
public static
void Fogv(OpenTK.Graphics.FogParameter pname, ref Int32 @params)
{
@@ -2908,30 +3248,35 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glFogiv")]
public static
unsafe void Fogv(OpenTK.Graphics.FogParameter pname, Int32* @params)
{
Delegates.glFogiv((OpenTK.Graphics.FogParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glFrontFace")]
public static
void FrontFace(OpenTK.Graphics.FrontFaceDirection mode)
{
Delegates.glFrontFace((OpenTK.Graphics.FrontFaceDirection)mode);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glHint")]
public static
void Hint(OpenTK.Graphics.HintTarget target, OpenTK.Graphics.HintMode mode)
{
Delegates.glHint((OpenTK.Graphics.HintTarget)target, (OpenTK.Graphics.HintMode)mode);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightf")]
public static
void Light(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single param)
{
Delegates.glLightf((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightfv")]
public static
void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single[] @params)
{
@@ -2944,6 +3289,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightfv")]
public static
void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, ref Single @params)
{
@@ -2957,18 +3303,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightfv")]
public static
unsafe void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Single* @params)
{
Delegates.glLightfv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLighti")]
public static
void Light(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32 param)
{
Delegates.glLighti((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightiv")]
public static
void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32[] @params)
{
@@ -2981,6 +3330,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightiv")]
public static
void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, ref Int32 @params)
{
@@ -2994,18 +3344,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightiv")]
public static
unsafe void Lightv(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, Int32* @params)
{
Delegates.glLightiv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightModelf")]
public static
void LightModel(OpenTK.Graphics.LightModelParameter pname, Single param)
{
Delegates.glLightModelf((OpenTK.Graphics.LightModelParameter)pname, (Single)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightModelfv")]
public static
void LightModelv(OpenTK.Graphics.LightModelParameter pname, Single[] @params)
{
@@ -3018,6 +3371,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightModelfv")]
public static
void LightModelv(OpenTK.Graphics.LightModelParameter pname, ref Single @params)
{
@@ -3031,18 +3385,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightModelfv")]
public static
unsafe void LightModelv(OpenTK.Graphics.LightModelParameter pname, Single* @params)
{
Delegates.glLightModelfv((OpenTK.Graphics.LightModelParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightModeli")]
public static
void LightModel(OpenTK.Graphics.LightModelParameter pname, Int32 param)
{
Delegates.glLightModeli((OpenTK.Graphics.LightModelParameter)pname, (Int32)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightModeliv")]
public static
void LightModelv(OpenTK.Graphics.LightModelParameter pname, Int32[] @params)
{
@@ -3055,6 +3412,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightModeliv")]
public static
void LightModelv(OpenTK.Graphics.LightModelParameter pname, ref Int32 @params)
{
@@ -3068,6 +3426,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLightModeliv")]
public static
unsafe void LightModelv(OpenTK.Graphics.LightModelParameter pname, Int32* @params)
{
@@ -3075,6 +3434,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLineStipple")]
public static
void LineStipple(Int32 factor, UInt16 pattern)
{
@@ -3084,6 +3444,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLineStipple")]
public static
void LineStipple(Int32 factor, Int16 pattern)
{
@@ -3093,18 +3454,21 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glLineWidth")]
public static
void LineWidth(Single width)
{
Delegates.glLineWidth((Single)width);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glMaterialf")]
public static
void Material(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single param)
{
Delegates.glMaterialf((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glMaterialfv")]
public static
void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single[] @params)
{
@@ -3117,6 +3481,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glMaterialfv")]
public static
void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, ref Single @params)
{
@@ -3130,18 +3495,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glMaterialfv")]
public static
unsafe void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single* @params)
{
Delegates.glMaterialfv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glMateriali")]
public static
void Material(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32 param)
{
Delegates.glMateriali((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glMaterialiv")]
public static
void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32[] @params)
{
@@ -3154,6 +3522,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glMaterialiv")]
public static
void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, ref Int32 @params)
{
@@ -3167,24 +3536,28 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glMaterialiv")]
public static
unsafe void Materialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32* @params)
{
Delegates.glMaterialiv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glPointSize")]
public static
void PointSize(Single size)
{
Delegates.glPointSize((Single)size);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glPolygonMode")]
public static
void PolygonMode(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.PolygonMode mode)
{
Delegates.glPolygonMode((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.PolygonMode)mode);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glPolygonStipple")]
public static
void PolygonStipple(Byte[] mask)
{
@@ -3197,6 +3570,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glPolygonStipple")]
public static
void PolygonStipple(ref Byte mask)
{
@@ -3210,30 +3584,35 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glPolygonStipple")]
public static
unsafe void PolygonStipple(Byte* mask)
{
Delegates.glPolygonStipple((Byte*)mask);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glScissor")]
public static
void Scissor(Int32 x, Int32 y, Int32 width, Int32 height)
{
Delegates.glScissor((Int32)x, (Int32)y, (Int32)width, (Int32)height);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glShadeModel")]
public static
void ShadeModel(OpenTK.Graphics.ShadingModel mode)
{
Delegates.glShadeModel((OpenTK.Graphics.ShadingModel)mode);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexParameterf")]
public static
void TexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single param)
{
Delegates.glTexParameterf((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexParameterfv")]
public static
void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single[] @params)
{
@@ -3246,6 +3625,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexParameterfv")]
public static
void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Single @params)
{
@@ -3259,18 +3639,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexParameterfv")]
public static
unsafe void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single* @params)
{
Delegates.glTexParameterfv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexParameteri")]
public static
void TexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32 param)
{
Delegates.glTexParameteri((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexParameteriv")]
public static
void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params)
{
@@ -3283,6 +3666,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexParameteriv")]
public static
void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params)
{
@@ -3296,12 +3680,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexParameteriv")]
public static
unsafe void TexParameterv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params)
{
Delegates.glTexParameteriv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexImage1D")]
public static
void TexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -3311,6 +3697,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexImage1D")]
public static
void TexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -3328,6 +3715,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexImage2D")]
public static
void TexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -3337,6 +3725,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexImage2D")]
public static
void TexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -3354,12 +3743,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexEnvf")]
public static
void TexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single param)
{
Delegates.glTexEnvf((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexEnvfv")]
public static
void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single[] @params)
{
@@ -3372,6 +3763,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexEnvfv")]
public static
void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, ref Single @params)
{
@@ -3385,18 +3777,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexEnvfv")]
public static
unsafe void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single* @params)
{
Delegates.glTexEnvfv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexEnvi")]
public static
void TexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32 param)
{
Delegates.glTexEnvi((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexEnviv")]
public static
void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32[] @params)
{
@@ -3409,6 +3804,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexEnviv")]
public static
void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, ref Int32 @params)
{
@@ -3422,18 +3818,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexEnviv")]
public static
unsafe void TexEnvv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32* @params)
{
Delegates.glTexEnviv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGend")]
public static
void TexGend(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double param)
{
Delegates.glTexGend((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGendv")]
public static
void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double[] @params)
{
@@ -3446,6 +3845,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGendv")]
public static
void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, ref Double @params)
{
@@ -3459,18 +3859,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGendv")]
public static
unsafe void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double* @params)
{
Delegates.glTexGendv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGenf")]
public static
void TexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single param)
{
Delegates.glTexGenf((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGenfv")]
public static
void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single[] @params)
{
@@ -3483,6 +3886,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGenfv")]
public static
void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, ref Single @params)
{
@@ -3496,18 +3900,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGenfv")]
public static
unsafe void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single* @params)
{
Delegates.glTexGenfv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGeni")]
public static
void TexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32 param)
{
Delegates.glTexGeni((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32)param);
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGeniv")]
public static
void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32[] @params)
{
@@ -3520,6 +3927,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGeniv")]
public static
void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, ref Int32 @params)
{
@@ -3533,12 +3941,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "DrawingControl", Version = "1.0", EntryPoint = "glTexGeniv")]
public static
unsafe void TexGenv(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32* @params)
{
Delegates.glTexGeniv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glFeedbackBuffer")]
public static
void FeedbackBuffer(Int32 size, OpenTK.Graphics.FeedbackType type, [Out] Single[] buffer)
{
@@ -3551,6 +3961,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glFeedbackBuffer")]
public static
void FeedbackBuffer(Int32 size, OpenTK.Graphics.FeedbackType type, [Out] out Single buffer)
{
@@ -3565,6 +3976,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glFeedbackBuffer")]
public static
unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.FeedbackType type, [Out] Single* buffer)
{
@@ -3572,6 +3984,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glSelectBuffer")]
public static
void SelectBuffer(Int32 size, [Out] UInt32[] buffer)
{
@@ -3584,6 +3997,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glSelectBuffer")]
public static
void SelectBuffer(Int32 size, [Out] Int32[] buffer)
{
@@ -3597,6 +4011,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glSelectBuffer")]
public static
void SelectBuffer(Int32 size, [Out] out UInt32 buffer)
{
@@ -3610,6 +4025,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glSelectBuffer")]
public static
void SelectBuffer(Int32 size, [Out] out Int32 buffer)
{
@@ -3624,6 +4040,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glSelectBuffer")]
public static
unsafe void SelectBuffer(Int32 size, [Out] UInt32* buffer)
{
@@ -3631,18 +4048,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glSelectBuffer")]
public static
unsafe void SelectBuffer(Int32 size, [Out] Int32* buffer)
{
Delegates.glSelectBuffer((Int32)size, (UInt32*)buffer);
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glRenderMode")]
public static
Int32 RenderMode(OpenTK.Graphics.RenderingMode mode)
{
return Delegates.glRenderMode((OpenTK.Graphics.RenderingMode)mode);
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glInitNames")]
public static
void InitNames()
{
@@ -3650,24 +4070,28 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glLoadName")]
public static
void LoadName(UInt32 name)
{
Delegates.glLoadName((UInt32)name);
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glLoadName")]
public static
void LoadName(Int32 name)
{
Delegates.glLoadName((UInt32)name);
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glPassThrough")]
public static
void PassThrough(Single token)
{
Delegates.glPassThrough((Single)token);
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glPopName")]
public static
void PopName()
{
@@ -3675,54 +4099,63 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glPushName")]
public static
void PushName(UInt32 name)
{
Delegates.glPushName((UInt32)name);
}
+ [AutoGenerated(Category = "Feedback", Version = "1.0", EntryPoint = "glPushName")]
public static
void PushName(Int32 name)
{
Delegates.glPushName((UInt32)name);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glDrawBuffer")]
public static
void DrawBuffer(OpenTK.Graphics.DrawBufferMode mode)
{
Delegates.glDrawBuffer((OpenTK.Graphics.DrawBufferMode)mode);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glClear")]
public static
void Clear(OpenTK.Graphics.ClearBufferMask mask)
{
Delegates.glClear((OpenTK.Graphics.ClearBufferMask)mask);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glClearAccum")]
public static
void ClearAccum(Single red, Single green, Single blue, Single alpha)
{
Delegates.glClearAccum((Single)red, (Single)green, (Single)blue, (Single)alpha);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glClearIndex")]
public static
void ClearIndex(Single c)
{
Delegates.glClearIndex((Single)c);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glClearColor")]
public static
void ClearColor(Single red, Single green, Single blue, Single alpha)
{
Delegates.glClearColor((Single)red, (Single)green, (Single)blue, (Single)alpha);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glClearStencil")]
public static
void ClearStencil(Int32 s)
{
Delegates.glClearStencil((Int32)s);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glClearDepth")]
public static
void ClearDepth(Double depth)
{
@@ -3730,24 +4163,28 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glStencilMask")]
public static
void StencilMask(UInt32 mask)
{
Delegates.glStencilMask((UInt32)mask);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glStencilMask")]
public static
void StencilMask(Int32 mask)
{
Delegates.glStencilMask((UInt32)mask);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glColorMask")]
public static
void ColorMask(bool red, bool green, bool blue, bool alpha)
{
Delegates.glColorMask((bool)red, (bool)green, (bool)blue, (bool)alpha);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glDepthMask")]
public static
void DepthMask(bool flag)
{
@@ -3755,60 +4192,70 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glIndexMask")]
public static
void IndexMask(UInt32 mask)
{
Delegates.glIndexMask((UInt32)mask);
}
+ [AutoGenerated(Category = "Framebuf", Version = "1.0", EntryPoint = "glIndexMask")]
public static
void IndexMask(Int32 mask)
{
Delegates.glIndexMask((UInt32)mask);
}
+ [AutoGenerated(Category = "Misc", Version = "1.0", EntryPoint = "glAccum")]
public static
void Accum(OpenTK.Graphics.AccumOp op, Single value)
{
Delegates.glAccum((OpenTK.Graphics.AccumOp)op, (Single)value);
}
+ [AutoGenerated(Category = "Misc", Version = "1.0", EntryPoint = "glDisable")]
public static
void Disable(OpenTK.Graphics.EnableCap cap)
{
Delegates.glDisable((OpenTK.Graphics.EnableCap)cap);
}
+ [AutoGenerated(Category = "Misc", Version = "1.0", EntryPoint = "glEnable")]
public static
void Enable(OpenTK.Graphics.EnableCap cap)
{
Delegates.glEnable((OpenTK.Graphics.EnableCap)cap);
}
+ [AutoGenerated(Category = "Misc", Version = "1.0", EntryPoint = "glFinish")]
public static
void Finish()
{
Delegates.glFinish();
}
+ [AutoGenerated(Category = "Misc", Version = "1.0", EntryPoint = "glFlush")]
public static
void Flush()
{
Delegates.glFlush();
}
+ [AutoGenerated(Category = "Misc", Version = "1.0", EntryPoint = "glPopAttrib")]
public static
void PopAttrib()
{
Delegates.glPopAttrib();
}
+ [AutoGenerated(Category = "Misc", Version = "1.0", EntryPoint = "glPushAttrib")]
public static
void PushAttrib(OpenTK.Graphics.AttribMask mask)
{
Delegates.glPushAttrib((OpenTK.Graphics.AttribMask)mask);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap1d")]
public static
void Map1(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double[] points)
{
@@ -3821,6 +4268,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap1d")]
public static
void Map1(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, ref Double points)
{
@@ -3834,12 +4282,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap1d")]
public static
unsafe void Map1(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double* points)
{
Delegates.glMap1d((OpenTK.Graphics.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap1f")]
public static
void Map1(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single[] points)
{
@@ -3852,6 +4302,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap1f")]
public static
void Map1(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, ref Single points)
{
@@ -3865,12 +4316,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap1f")]
public static
unsafe void Map1(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single* points)
{
Delegates.glMap1f((OpenTK.Graphics.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap2d")]
public static
void Map2(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double[] points)
{
@@ -3883,6 +4336,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap2d")]
public static
void Map2(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, ref Double points)
{
@@ -3896,12 +4350,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap2d")]
public static
unsafe void Map2(OpenTK.Graphics.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points)
{
Delegates.glMap2d((OpenTK.Graphics.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap2f")]
public static
void Map2(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single[] points)
{
@@ -3914,6 +4370,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap2f")]
public static
void Map2(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, ref Single points)
{
@@ -3927,42 +4384,49 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMap2f")]
public static
unsafe void Map2(OpenTK.Graphics.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points)
{
Delegates.glMap2f((OpenTK.Graphics.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMapGrid1d")]
public static
void MapGrid1(Int32 un, Double u1, Double u2)
{
Delegates.glMapGrid1d((Int32)un, (Double)u1, (Double)u2);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMapGrid1f")]
public static
void MapGrid1(Int32 un, Single u1, Single u2)
{
Delegates.glMapGrid1f((Int32)un, (Single)u1, (Single)u2);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMapGrid2d")]
public static
void MapGrid2(Int32 un, Double u1, Double u2, Int32 vn, Double v1, Double v2)
{
Delegates.glMapGrid2d((Int32)un, (Double)u1, (Double)u2, (Int32)vn, (Double)v1, (Double)v2);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glMapGrid2f")]
public static
void MapGrid2(Int32 un, Single u1, Single u2, Int32 vn, Single v1, Single v2)
{
Delegates.glMapGrid2f((Int32)un, (Single)u1, (Single)u2, (Int32)vn, (Single)v1, (Single)v2);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord1d")]
public static
void EvalCoord1(Double u)
{
Delegates.glEvalCoord1d((Double)u);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord1dv")]
public static
void EvalCoord1v(Double[] u)
{
@@ -3975,6 +4439,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord1dv")]
public static
void EvalCoord1v(ref Double u)
{
@@ -3988,18 +4453,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord1dv")]
public static
unsafe void EvalCoord1v(Double* u)
{
Delegates.glEvalCoord1dv((Double*)u);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord1f")]
public static
void EvalCoord1(Single u)
{
Delegates.glEvalCoord1f((Single)u);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord1fv")]
public static
void EvalCoord1v(Single[] u)
{
@@ -4012,6 +4480,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord1fv")]
public static
void EvalCoord1v(ref Single u)
{
@@ -4025,18 +4494,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord1fv")]
public static
unsafe void EvalCoord1v(Single* u)
{
Delegates.glEvalCoord1fv((Single*)u);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord2d")]
public static
void EvalCoord2(Double u, Double v)
{
Delegates.glEvalCoord2d((Double)u, (Double)v);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord2dv")]
public static
void EvalCoord2(Double[] u)
{
@@ -4049,6 +4521,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord2dv")]
public static
void EvalCoord2(ref Double u)
{
@@ -4062,18 +4535,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord2dv")]
public static
unsafe void EvalCoord2(Double* u)
{
Delegates.glEvalCoord2dv((Double*)u);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord2f")]
public static
void EvalCoord2(Single u, Single v)
{
Delegates.glEvalCoord2f((Single)u, (Single)v);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord2fv")]
public static
void EvalCoord2(Single[] u)
{
@@ -4086,6 +4562,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord2fv")]
public static
void EvalCoord2(ref Single u)
{
@@ -4099,48 +4576,56 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalCoord2fv")]
public static
unsafe void EvalCoord2(Single* u)
{
Delegates.glEvalCoord2fv((Single*)u);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalMesh1")]
public static
void EvalMesh1(OpenTK.Graphics.MeshMode1 mode, Int32 i1, Int32 i2)
{
Delegates.glEvalMesh1((OpenTK.Graphics.MeshMode1)mode, (Int32)i1, (Int32)i2);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalPoint1")]
public static
void EvalPoint1(Int32 i)
{
Delegates.glEvalPoint1((Int32)i);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalMesh2")]
public static
void EvalMesh2(OpenTK.Graphics.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2)
{
Delegates.glEvalMesh2((OpenTK.Graphics.MeshMode2)mode, (Int32)i1, (Int32)i2, (Int32)j1, (Int32)j2);
}
+ [AutoGenerated(Category = "Modeling", Version = "1.0", EntryPoint = "glEvalPoint2")]
public static
void EvalPoint2(Int32 i, Int32 j)
{
Delegates.glEvalPoint2((Int32)i, (Int32)j);
}
+ [AutoGenerated(Category = "PixelOp", Version = "1.0", EntryPoint = "glAlphaFunc")]
public static
void AlphaFunc(OpenTK.Graphics.AlphaFunction func, Single @ref)
{
Delegates.glAlphaFunc((OpenTK.Graphics.AlphaFunction)func, (Single)@ref);
}
+ [AutoGenerated(Category = "PixelOp", Version = "1.0", EntryPoint = "glBlendFunc")]
public static
void BlendFunc(OpenTK.Graphics.BlendingFactorSrc sfactor, OpenTK.Graphics.BlendingFactorDest dfactor)
{
Delegates.glBlendFunc((OpenTK.Graphics.BlendingFactorSrc)sfactor, (OpenTK.Graphics.BlendingFactorDest)dfactor);
}
+ [AutoGenerated(Category = "PixelOp", Version = "1.0", EntryPoint = "glLogicOp")]
public static
void LogicOp(OpenTK.Graphics.LogicOp opcode)
{
@@ -4148,60 +4633,70 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelOp", Version = "1.0", EntryPoint = "glStencilFunc")]
public static
void StencilFunc(OpenTK.Graphics.StencilFunction func, Int32 @ref, UInt32 mask)
{
Delegates.glStencilFunc((OpenTK.Graphics.StencilFunction)func, (Int32)@ref, (UInt32)mask);
}
+ [AutoGenerated(Category = "PixelOp", Version = "1.0", EntryPoint = "glStencilFunc")]
public static
void StencilFunc(OpenTK.Graphics.StencilFunction func, Int32 @ref, Int32 mask)
{
Delegates.glStencilFunc((OpenTK.Graphics.StencilFunction)func, (Int32)@ref, (UInt32)mask);
}
+ [AutoGenerated(Category = "PixelOp", Version = "1.0", EntryPoint = "glStencilOp")]
public static
void StencilOp(OpenTK.Graphics.StencilOp fail, OpenTK.Graphics.StencilOp zfail, OpenTK.Graphics.StencilOp zpass)
{
Delegates.glStencilOp((OpenTK.Graphics.StencilOp)fail, (OpenTK.Graphics.StencilOp)zfail, (OpenTK.Graphics.StencilOp)zpass);
}
+ [AutoGenerated(Category = "PixelOp", Version = "1.0", EntryPoint = "glDepthFunc")]
public static
void DepthFunc(OpenTK.Graphics.DepthFunction func)
{
Delegates.glDepthFunc((OpenTK.Graphics.DepthFunction)func);
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelZoom")]
public static
void PixelZoom(Single xfactor, Single yfactor)
{
Delegates.glPixelZoom((Single)xfactor, (Single)yfactor);
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelTransferf")]
public static
void PixelTransfer(OpenTK.Graphics.PixelTransferParameter pname, Single param)
{
Delegates.glPixelTransferf((OpenTK.Graphics.PixelTransferParameter)pname, (Single)param);
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelTransferi")]
public static
void PixelTransfer(OpenTK.Graphics.PixelTransferParameter pname, Int32 param)
{
Delegates.glPixelTransferi((OpenTK.Graphics.PixelTransferParameter)pname, (Int32)param);
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelStoref")]
public static
void PixelStore(OpenTK.Graphics.PixelStoreParameter pname, Single param)
{
Delegates.glPixelStoref((OpenTK.Graphics.PixelStoreParameter)pname, (Single)param);
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelStorei")]
public static
void PixelStore(OpenTK.Graphics.PixelStoreParameter pname, Int32 param)
{
Delegates.glPixelStorei((OpenTK.Graphics.PixelStoreParameter)pname, (Int32)param);
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapfv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Single[] values)
{
@@ -4214,6 +4709,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapfv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref Single values)
{
@@ -4227,6 +4723,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapfv")]
public static
unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Single* values)
{
@@ -4234,6 +4731,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapuiv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt32[] values)
{
@@ -4246,6 +4744,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapuiv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Int32[] values)
{
@@ -4259,6 +4758,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapuiv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref UInt32 values)
{
@@ -4271,6 +4771,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapuiv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref Int32 values)
{
@@ -4284,6 +4785,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapuiv")]
public static
unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt32* values)
{
@@ -4291,6 +4793,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapuiv")]
public static
unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Int32* values)
{
@@ -4298,6 +4801,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapusv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt16[] values)
{
@@ -4310,6 +4814,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapusv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Int16[] values)
{
@@ -4323,6 +4828,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapusv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref UInt16 values)
{
@@ -4335,6 +4841,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapusv")]
public static
void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, ref Int16 values)
{
@@ -4348,6 +4855,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapusv")]
public static
unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, UInt16* values)
{
@@ -4355,24 +4863,28 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glPixelMapusv")]
public static
unsafe void PixelMap(OpenTK.Graphics.PixelMap map, Int32 mapsize, Int16* values)
{
Delegates.glPixelMapusv((OpenTK.Graphics.PixelMap)map, (Int32)mapsize, (UInt16*)values);
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glReadBuffer")]
public static
void ReadBuffer(OpenTK.Graphics.ReadBufferMode mode)
{
Delegates.glReadBuffer((OpenTK.Graphics.ReadBufferMode)mode);
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glCopyPixels")]
public static
void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelCopyType type)
{
Delegates.glCopyPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelCopyType)type);
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glReadPixels")]
public static
void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels)
{
@@ -4382,6 +4894,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glReadPixels")]
public static
void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -4399,6 +4912,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glDrawPixels")]
public static
void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -4408,6 +4922,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "PixelRw", Version = "1.0", EntryPoint = "glDrawPixels")]
public static
void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -4425,6 +4940,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetClipPlane")]
public static
void GetClipPlane(OpenTK.Graphics.ClipPlaneName plane, [Out] Double[] equation)
{
@@ -4437,6 +4953,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetClipPlane")]
public static
void GetClipPlane(OpenTK.Graphics.ClipPlaneName plane, [Out] out Double equation)
{
@@ -4451,12 +4968,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetClipPlane")]
public static
unsafe void GetClipPlane(OpenTK.Graphics.ClipPlaneName plane, [Out] Double* equation)
{
Delegates.glGetClipPlane((OpenTK.Graphics.ClipPlaneName)plane, (Double*)equation);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetDoublev")]
public static
void GetDouble(OpenTK.Graphics.GetPName pname, [Out] Double[] @params)
{
@@ -4469,6 +4988,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetDoublev")]
public static
void GetDouble(OpenTK.Graphics.GetPName pname, [Out] out Double @params)
{
@@ -4483,18 +5003,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetDoublev")]
public static
unsafe void GetDouble(OpenTK.Graphics.GetPName pname, [Out] Double* @params)
{
Delegates.glGetDoublev((OpenTK.Graphics.GetPName)pname, (Double*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetError")]
public static
OpenTK.Graphics.ErrorCode GetError()
{
return Delegates.glGetError();
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetFloatv")]
public static
void GetFloat(OpenTK.Graphics.GetPName pname, [Out] Single[] @params)
{
@@ -4507,6 +5030,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetFloatv")]
public static
void GetFloat(OpenTK.Graphics.GetPName pname, [Out] out Single @params)
{
@@ -4521,12 +5045,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetFloatv")]
public static
unsafe void GetFloat(OpenTK.Graphics.GetPName pname, [Out] Single* @params)
{
Delegates.glGetFloatv((OpenTK.Graphics.GetPName)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetIntegerv")]
public static
void GetInteger(OpenTK.Graphics.GetPName pname, [Out] Int32[] @params)
{
@@ -4539,6 +5065,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetIntegerv")]
public static
void GetInteger(OpenTK.Graphics.GetPName pname, [Out] out Int32 @params)
{
@@ -4553,12 +5080,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetIntegerv")]
public static
unsafe void GetInteger(OpenTK.Graphics.GetPName pname, [Out] Int32* @params)
{
Delegates.glGetIntegerv((OpenTK.Graphics.GetPName)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetLightfv")]
public static
void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Single[] @params)
{
@@ -4571,6 +5100,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetLightfv")]
public static
void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] out Single @params)
{
@@ -4585,12 +5115,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetLightfv")]
public static
unsafe void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Single* @params)
{
Delegates.glGetLightfv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetLightiv")]
public static
void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Int32[] @params)
{
@@ -4603,6 +5135,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetLightiv")]
public static
void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] out Int32 @params)
{
@@ -4617,12 +5150,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetLightiv")]
public static
unsafe void GetLight(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter pname, [Out] Int32* @params)
{
Delegates.glGetLightiv((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMapdv")]
public static
void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Double[] v)
{
@@ -4635,6 +5170,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMapdv")]
public static
void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] out Double v)
{
@@ -4649,12 +5185,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMapdv")]
public static
unsafe void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Double* v)
{
Delegates.glGetMapdv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Double*)v);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMapfv")]
public static
void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Single[] v)
{
@@ -4667,6 +5205,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMapfv")]
public static
void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] out Single v)
{
@@ -4681,12 +5220,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMapfv")]
public static
unsafe void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Single* v)
{
Delegates.glGetMapfv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Single*)v);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMapiv")]
public static
void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Int32[] v)
{
@@ -4699,6 +5240,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMapiv")]
public static
void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] out Int32 v)
{
@@ -4713,12 +5255,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMapiv")]
public static
unsafe void GetMap(OpenTK.Graphics.MapTarget target, OpenTK.Graphics.GetMapQuery query, [Out] Int32* v)
{
Delegates.glGetMapiv((OpenTK.Graphics.MapTarget)target, (OpenTK.Graphics.GetMapQuery)query, (Int32*)v);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMaterialfv")]
public static
void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single[] @params)
{
@@ -4731,6 +5275,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMaterialfv")]
public static
void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] out Single @params)
{
@@ -4745,12 +5290,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMaterialfv")]
public static
unsafe void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single* @params)
{
Delegates.glGetMaterialfv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMaterialiv")]
public static
void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32[] @params)
{
@@ -4763,6 +5310,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMaterialiv")]
public static
void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] out Int32 @params)
{
@@ -4777,12 +5325,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetMaterialiv")]
public static
unsafe void GetMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32* @params)
{
Delegates.glGetMaterialiv((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapfv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Single[] values)
{
@@ -4795,6 +5345,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapfv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out Single values)
{
@@ -4809,6 +5360,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapfv")]
public static
unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Single* values)
{
@@ -4816,6 +5368,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapuiv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] UInt32[] values)
{
@@ -4828,6 +5381,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapuiv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Int32[] values)
{
@@ -4841,6 +5395,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapuiv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out UInt32 values)
{
@@ -4854,6 +5409,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapuiv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out Int32 values)
{
@@ -4868,6 +5424,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapuiv")]
public static
unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] UInt32* values)
{
@@ -4875,6 +5432,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapuiv")]
public static
unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Int32* values)
{
@@ -4882,6 +5440,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapusv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] UInt16[] values)
{
@@ -4894,6 +5453,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapusv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Int16[] values)
{
@@ -4907,6 +5467,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapusv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out UInt16 values)
{
@@ -4920,6 +5481,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapusv")]
public static
void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] out Int16 values)
{
@@ -4934,6 +5496,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapusv")]
public static
unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] UInt16* values)
{
@@ -4941,12 +5504,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPixelMapusv")]
public static
unsafe void GetPixelMap(OpenTK.Graphics.PixelMap map, [Out] Int16* values)
{
Delegates.glGetPixelMapusv((OpenTK.Graphics.PixelMap)map, (UInt16*)values);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPolygonStipple")]
public static
void GetPolygonStipple([Out] Byte[] mask)
{
@@ -4959,6 +5524,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPolygonStipple")]
public static
void GetPolygonStipple([Out] out Byte mask)
{
@@ -4973,12 +5539,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetPolygonStipple")]
public static
unsafe void GetPolygonStipple([Out] Byte* mask)
{
Delegates.glGetPolygonStipple((Byte*)mask);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetString")]
public static
string GetString(OpenTK.Graphics.StringName name)
{
@@ -4988,6 +5556,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexEnvfv")]
public static
void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Single[] @params)
{
@@ -5000,6 +5569,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexEnvfv")]
public static
void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] out Single @params)
{
@@ -5014,12 +5584,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexEnvfv")]
public static
unsafe void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Single* @params)
{
Delegates.glGetTexEnvfv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexEnviv")]
public static
void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Int32[] @params)
{
@@ -5032,6 +5604,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexEnviv")]
public static
void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] out Int32 @params)
{
@@ -5046,12 +5619,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexEnviv")]
public static
unsafe void GetTexEnv(OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Int32* @params)
{
Delegates.glGetTexEnviv((OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexGendv")]
public static
void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Double[] @params)
{
@@ -5064,6 +5639,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexGendv")]
public static
void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] out Double @params)
{
@@ -5078,12 +5654,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexGendv")]
public static
unsafe void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Double* @params)
{
Delegates.glGetTexGendv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexGenfv")]
public static
void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Single[] @params)
{
@@ -5096,6 +5674,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexGenfv")]
public static
void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] out Single @params)
{
@@ -5110,12 +5689,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexGenfv")]
public static
unsafe void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Single* @params)
{
Delegates.glGetTexGenfv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexGeniv")]
public static
void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Int32[] @params)
{
@@ -5128,6 +5709,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexGeniv")]
public static
void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] out Int32 @params)
{
@@ -5142,12 +5724,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexGeniv")]
public static
unsafe void GetTexGen(OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Int32* @params)
{
Delegates.glGetTexGeniv((OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexImage")]
public static
void GetTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels)
{
@@ -5157,6 +5741,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexImage")]
public static
void GetTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -5174,6 +5759,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexParameterfv")]
public static
void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params)
{
@@ -5186,6 +5772,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexParameterfv")]
public static
void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params)
{
@@ -5200,12 +5787,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexParameterfv")]
public static
unsafe void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params)
{
Delegates.glGetTexParameterfv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexParameteriv")]
public static
void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
{
@@ -5218,6 +5807,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexParameteriv")]
public static
void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
{
@@ -5232,12 +5822,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexParameteriv")]
public static
unsafe void GetTexParameter(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
{
Delegates.glGetTexParameteriv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")]
public static
void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params)
{
@@ -5250,6 +5842,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")]
public static
void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params)
{
@@ -5264,12 +5857,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexLevelParameterfv")]
public static
unsafe void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params)
{
Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")]
public static
void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
{
@@ -5282,6 +5877,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")]
public static
void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
{
@@ -5296,12 +5892,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetTexLevelParameteriv")]
public static
unsafe void GetTexLevelParameter(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
{
Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glIsEnabled")]
public static
bool IsEnabled(OpenTK.Graphics.EnableCap cap)
{
@@ -5309,36 +5907,42 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glIsList")]
public static
bool IsList(UInt32 list)
{
return Delegates.glIsList((UInt32)list);
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glIsList")]
public static
bool IsList(Int32 list)
{
return Delegates.glIsList((UInt32)list);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glDepthRange")]
public static
void DepthRange(Double near, Double far)
{
Delegates.glDepthRange((Double)near, (Double)far);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glFrustum")]
public static
void Frustum(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar)
{
Delegates.glFrustum((Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glLoadIdentity")]
public static
void LoadIdentity()
{
Delegates.glLoadIdentity();
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glLoadMatrixf")]
public static
void LoadMatrix(Single[] m)
{
@@ -5351,6 +5955,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glLoadMatrixf")]
public static
void LoadMatrix(ref Single m)
{
@@ -5364,12 +5969,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glLoadMatrixf")]
public static
unsafe void LoadMatrix(Single* m)
{
Delegates.glLoadMatrixf((Single*)m);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glLoadMatrixd")]
public static
void LoadMatrix(Double[] m)
{
@@ -5382,6 +5989,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glLoadMatrixd")]
public static
void LoadMatrix(ref Double m)
{
@@ -5395,18 +6003,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glLoadMatrixd")]
public static
unsafe void LoadMatrix(Double* m)
{
Delegates.glLoadMatrixd((Double*)m);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glMatrixMode")]
public static
void MatrixMode(OpenTK.Graphics.MatrixMode mode)
{
Delegates.glMatrixMode((OpenTK.Graphics.MatrixMode)mode);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glMultMatrixf")]
public static
void MultMatrix(Single[] m)
{
@@ -5419,6 +6030,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glMultMatrixf")]
public static
void MultMatrix(ref Single m)
{
@@ -5432,12 +6044,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glMultMatrixf")]
public static
unsafe void MultMatrix(Single* m)
{
Delegates.glMultMatrixf((Single*)m);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glMultMatrixd")]
public static
void MultMatrix(Double[] m)
{
@@ -5450,6 +6064,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glMultMatrixd")]
public static
void MultMatrix(ref Double m)
{
@@ -5463,78 +6078,91 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glMultMatrixd")]
public static
unsafe void MultMatrix(Double* m)
{
Delegates.glMultMatrixd((Double*)m);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glOrtho")]
public static
void Ortho(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar)
{
Delegates.glOrtho((Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glPopMatrix")]
public static
void PopMatrix()
{
Delegates.glPopMatrix();
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glPushMatrix")]
public static
void PushMatrix()
{
Delegates.glPushMatrix();
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glRotated")]
public static
void Rotate(Double angle, Double x, Double y, Double z)
{
Delegates.glRotated((Double)angle, (Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glRotatef")]
public static
void Rotate(Single angle, Single x, Single y, Single z)
{
Delegates.glRotatef((Single)angle, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glScaled")]
public static
void Scale(Double x, Double y, Double z)
{
Delegates.glScaled((Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glScalef")]
public static
void Scale(Single x, Single y, Single z)
{
Delegates.glScalef((Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glTranslated")]
public static
void Translate(Double x, Double y, Double z)
{
Delegates.glTranslated((Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glTranslatef")]
public static
void Translate(Single x, Single y, Single z)
{
Delegates.glTranslatef((Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "Xform", Version = "1.0", EntryPoint = "glViewport")]
public static
void Viewport(Int32 x, Int32 y, Int32 width, Int32 height)
{
Delegates.glViewport((Int32)x, (Int32)y, (Int32)width, (Int32)height);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glArrayElement")]
public static
void ArrayElement(Int32 i)
{
Delegates.glArrayElement((Int32)i);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glColorPointer")]
public static
void ColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer)
{
@@ -5544,6 +6172,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glColorPointer")]
public static
void ColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, [In, Out] object pointer)
{
@@ -5561,18 +6190,21 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDisableClientState")]
public static
void DisableClientState(OpenTK.Graphics.EnableCap array)
{
Delegates.glDisableClientState((OpenTK.Graphics.EnableCap)array);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDrawArrays")]
public static
void DrawArrays(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count)
{
Delegates.glDrawArrays((OpenTK.Graphics.BeginMode)mode, (Int32)first, (Int32)count);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDrawElements")]
public static
void DrawElements(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices)
{
@@ -5582,6 +6214,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDrawElements")]
public static
void DrawElements(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices)
{
@@ -5599,6 +6232,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glEdgeFlagPointer")]
public static
void EdgeFlagPointer(Int32 stride, IntPtr pointer)
{
@@ -5608,6 +6242,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glEdgeFlagPointer")]
public static
void EdgeFlagPointer(Int32 stride, [In, Out] object pointer)
{
@@ -5625,12 +6260,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glEnableClientState")]
public static
void EnableClientState(OpenTK.Graphics.EnableCap array)
{
Delegates.glEnableClientState((OpenTK.Graphics.EnableCap)array);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glGetPointerv")]
public static
void GetPointer(OpenTK.Graphics.GetPointervPName pname, [Out] IntPtr @params)
{
@@ -5640,6 +6277,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glGetPointerv")]
public static
void GetPointer(OpenTK.Graphics.GetPointervPName pname, [In, Out] object @params)
{
@@ -5657,6 +6295,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glIndexPointer")]
public static
void IndexPointer(OpenTK.Graphics.IndexPointerType type, Int32 stride, IntPtr pointer)
{
@@ -5666,6 +6305,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glIndexPointer")]
public static
void IndexPointer(OpenTK.Graphics.IndexPointerType type, Int32 stride, [In, Out] object pointer)
{
@@ -5683,6 +6323,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glInterleavedArrays")]
public static
void InterleavedArrays(OpenTK.Graphics.InterleavedArrayFormat format, Int32 stride, IntPtr pointer)
{
@@ -5692,6 +6333,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glInterleavedArrays")]
public static
void InterleavedArrays(OpenTK.Graphics.InterleavedArrayFormat format, Int32 stride, [In, Out] object pointer)
{
@@ -5709,6 +6351,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glNormalPointer")]
public static
void NormalPointer(OpenTK.Graphics.NormalPointerType type, Int32 stride, IntPtr pointer)
{
@@ -5718,6 +6361,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glNormalPointer")]
public static
void NormalPointer(OpenTK.Graphics.NormalPointerType type, Int32 stride, [In, Out] object pointer)
{
@@ -5735,6 +6379,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glTexCoordPointer")]
public static
void TexCoordPointer(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, IntPtr pointer)
{
@@ -5744,6 +6389,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glTexCoordPointer")]
public static
void TexCoordPointer(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, [In, Out] object pointer)
{
@@ -5761,6 +6407,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glVertexPointer")]
public static
void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, IntPtr pointer)
{
@@ -5770,6 +6417,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glVertexPointer")]
public static
void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, [In, Out] object pointer)
{
@@ -5787,36 +6435,42 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glPolygonOffset")]
public static
void PolygonOffset(Single factor, Single units)
{
Delegates.glPolygonOffset((Single)factor, (Single)units);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glCopyTexImage1D")]
public static
void CopyTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border)
{
Delegates.glCopyTexImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glCopyTexImage2D")]
public static
void CopyTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border)
{
Delegates.glCopyTexImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glCopyTexSubImage1D")]
public static
void CopyTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width)
{
Delegates.glCopyTexSubImage1D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glCopyTexSubImage2D")]
public static
void CopyTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height)
{
Delegates.glCopyTexSubImage2D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glTexSubImage1D")]
public static
void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -5826,6 +6480,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glTexSubImage1D")]
public static
void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -5843,6 +6498,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glTexSubImage2D")]
public static
void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -5852,6 +6508,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glTexSubImage2D")]
public static
void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -5870,6 +6527,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glAreTexturesResident")]
public static
bool AreTexturesResident(Int32 n, UInt32[] textures, [Out] bool[] residences)
{
@@ -5883,6 +6541,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glAreTexturesResident")]
public static
bool AreTexturesResident(Int32 n, Int32[] textures, [Out] bool[] residences)
{
@@ -5897,6 +6556,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glAreTexturesResident")]
public static
bool AreTexturesResident(Int32 n, ref UInt32 textures, [Out] out bool residences)
{
@@ -5912,6 +6572,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glAreTexturesResident")]
public static
bool AreTexturesResident(Int32 n, ref Int32 textures, [Out] out bool residences)
{
@@ -5928,6 +6589,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glAreTexturesResident")]
public static
unsafe bool AreTexturesResident(Int32 n, UInt32* textures, [Out] bool* residences)
{
@@ -5935,6 +6597,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glAreTexturesResident")]
public static
unsafe bool AreTexturesResident(Int32 n, Int32* textures, [Out] bool* residences)
{
@@ -5942,12 +6605,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glBindTexture")]
public static
void BindTexture(OpenTK.Graphics.TextureTarget target, UInt32 texture)
{
Delegates.glBindTexture((OpenTK.Graphics.TextureTarget)target, (UInt32)texture);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glBindTexture")]
public static
void BindTexture(OpenTK.Graphics.TextureTarget target, Int32 texture)
{
@@ -5955,6 +6620,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDeleteTextures")]
public static
void DeleteTextures(Int32 n, UInt32[] textures)
{
@@ -5967,6 +6633,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDeleteTextures")]
public static
void DeleteTextures(Int32 n, Int32[] textures)
{
@@ -5980,6 +6647,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDeleteTextures")]
public static
void DeleteTextures(Int32 n, ref UInt32 textures)
{
@@ -5992,6 +6660,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDeleteTextures")]
public static
void DeleteTextures(Int32 n, ref Int32 textures)
{
@@ -6005,6 +6674,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDeleteTextures")]
public static
unsafe void DeleteTextures(Int32 n, UInt32* textures)
{
@@ -6012,6 +6682,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glDeleteTextures")]
public static
unsafe void DeleteTextures(Int32 n, Int32* textures)
{
@@ -6019,6 +6690,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glGenTextures")]
public static
void GenTextures(Int32 n, [Out] UInt32[] textures)
{
@@ -6031,6 +6703,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glGenTextures")]
public static
void GenTextures(Int32 n, [Out] Int32[] textures)
{
@@ -6044,6 +6717,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glGenTextures")]
public static
void GenTextures(Int32 n, [Out] out UInt32 textures)
{
@@ -6057,6 +6731,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glGenTextures")]
public static
void GenTextures(Int32 n, [Out] out Int32 textures)
{
@@ -6071,6 +6746,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glGenTextures")]
public static
unsafe void GenTextures(Int32 n, [Out] UInt32* textures)
{
@@ -6078,6 +6754,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glGenTextures")]
public static
unsafe void GenTextures(Int32 n, [Out] Int32* textures)
{
@@ -6085,12 +6762,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glIsTexture")]
public static
bool IsTexture(UInt32 texture)
{
return Delegates.glIsTexture((UInt32)texture);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glIsTexture")]
public static
bool IsTexture(Int32 texture)
{
@@ -6098,6 +6777,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glPrioritizeTextures")]
public static
void PrioritizeTextures(Int32 n, UInt32[] textures, Single[] priorities)
{
@@ -6111,6 +6791,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glPrioritizeTextures")]
public static
void PrioritizeTextures(Int32 n, Int32[] textures, Single[] priorities)
{
@@ -6125,6 +6806,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glPrioritizeTextures")]
public static
void PrioritizeTextures(Int32 n, ref UInt32 textures, ref Single priorities)
{
@@ -6138,6 +6820,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glPrioritizeTextures")]
public static
void PrioritizeTextures(Int32 n, ref Int32 textures, ref Single priorities)
{
@@ -6152,6 +6835,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glPrioritizeTextures")]
public static
unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities)
{
@@ -6159,18 +6843,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glPrioritizeTextures")]
public static
unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single* priorities)
{
Delegates.glPrioritizeTextures((Int32)n, (UInt32*)textures, (Single*)priorities);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glIndexub")]
public static
void Index(Byte c)
{
Delegates.glIndexub((Byte)c);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glIndexubv")]
public static
void Indexv(Byte[] c)
{
@@ -6183,6 +6870,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glIndexubv")]
public static
void Indexv(ref Byte c)
{
@@ -6196,30 +6884,35 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glIndexubv")]
public static
unsafe void Indexv(Byte* c)
{
Delegates.glIndexubv((Byte*)c);
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glPopClientAttrib")]
public static
void PopClientAttrib()
{
Delegates.glPopClientAttrib();
}
+ [AutoGenerated(Category = "11", Version = "1.1", EntryPoint = "glPushClientAttrib")]
public static
void PushClientAttrib(OpenTK.Graphics.ClientAttribMask mask)
{
Delegates.glPushClientAttrib((OpenTK.Graphics.ClientAttribMask)mask);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glBlendColor")]
public static
void BlendColor(Single red, Single green, Single blue, Single alpha)
{
Delegates.glBlendColor((Single)red, (Single)green, (Single)blue, (Single)alpha);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glBlendEquation")]
public static
void BlendEquation(OpenTK.Graphics.BlendEquationMode mode)
{
@@ -6227,6 +6920,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glDrawRangeElements")]
public static
void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices)
{
@@ -6236,6 +6930,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glDrawRangeElements")]
public static
void DrawRangeElements(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices)
{
@@ -6246,6 +6941,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glDrawRangeElements")]
public static
void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices)
{
@@ -6263,6 +6959,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glDrawRangeElements")]
public static
void DrawRangeElements(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices)
{
@@ -6280,24 +6977,26 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorTable")]
public static
- void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table)
+ void ColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table)
{
unsafe
{
- Delegates.glColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
+ Delegates.glColorTable((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorTable")]
public static
- void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
+ void ColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
{
unsafe
{
System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
+ Delegates.glColorTable((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6306,92 +7005,101 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorTableParameterfv")]
public static
- void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params)
+ void ColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glColorTableParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorTableParameterfv")]
public static
- void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params)
+ void ColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glColorTableParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorTableParameterfv")]
public static
- unsafe void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params)
+ unsafe void ColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single* @params)
{
- Delegates.glColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glColorTableParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorTableParameteriv")]
public static
- void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params)
+ void ColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glColorTableParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorTableParameteriv")]
public static
- void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params)
+ void ColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glColorTableParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorTableParameteriv")]
public static
- unsafe void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void ColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32* @params)
{
- Delegates.glColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glColorTableParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glCopyColorTable")]
public static
- void CopyColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width)
+ void CopyColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width)
{
- Delegates.glCopyColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width);
+ Delegates.glCopyColorTable((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetColorTable")]
public static
- void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table)
+ void GetColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table)
{
unsafe
{
- Delegates.glGetColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
+ Delegates.glGetColorTable((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetColorTable")]
public static
- void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
+ void GetColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
{
unsafe
{
System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetColorTable((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
+ Delegates.glGetColorTable((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6400,88 +7108,96 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetColorTableParameterfv")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetColorTableParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetColorTableParameterfv")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetColorTableParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetColorTableParameterfv")]
public static
- unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params)
{
- Delegates.glGetColorTableParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetColorTableParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetColorTableParameteriv")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetColorTableParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetColorTableParameteriv")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetColorTableParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetColorTableParameteriv")]
public static
- unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetColorTableParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params)
{
- Delegates.glGetColorTableParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetColorTableParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorSubTable")]
public static
- void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data)
+ void ColorSubTable(OpenTK.Graphics.Version12 target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data)
{
unsafe
{
- Delegates.glColorSubTable((OpenTK.Graphics.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data);
+ Delegates.glColorSubTable((OpenTK.Graphics.Version12)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glColorSubTable")]
public static
- void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object data)
+ void ColorSubTable(OpenTK.Graphics.Version12 target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object data)
{
unsafe
{
System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glColorSubTable((OpenTK.Graphics.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject());
+ Delegates.glColorSubTable((OpenTK.Graphics.Version12)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6490,30 +7206,33 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glCopyColorSubTable")]
public static
- void CopyColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 x, Int32 y, Int32 width)
+ void CopyColorSubTable(OpenTK.Graphics.Version12 target, Int32 start, Int32 x, Int32 y, Int32 width)
{
- Delegates.glCopyColorSubTable((OpenTK.Graphics.All)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width);
+ Delegates.glCopyColorSubTable((OpenTK.Graphics.Version12)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionFilter1D")]
public static
- void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image)
+ void ConvolutionFilter1D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image)
{
unsafe
{
- Delegates.glConvolutionFilter1D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
+ Delegates.glConvolutionFilter1D((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionFilter1D")]
public static
- void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
+ void ConvolutionFilter1D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
{
unsafe
{
System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glConvolutionFilter1D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
+ Delegates.glConvolutionFilter1D((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6522,24 +7241,26 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionFilter2D")]
public static
- void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image)
+ void ConvolutionFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image)
{
unsafe
{
- Delegates.glConvolutionFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
+ Delegates.glConvolutionFilter2D((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionFilter2D")]
public static
- void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
+ void ConvolutionFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
{
unsafe
{
System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glConvolutionFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
+ Delegates.glConvolutionFilter2D((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6548,110 +7269,122 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionParameterf")]
public static
- void ConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params)
+ void ConvolutionParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single @params)
{
- Delegates.glConvolutionParameterf((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single)@params);
+ Delegates.glConvolutionParameterf((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionParameterfv")]
public static
- void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params)
+ void ConvolutionParameterv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glConvolutionParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionParameterfv")]
public static
- void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params)
+ void ConvolutionParameterv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glConvolutionParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionParameterfv")]
public static
- unsafe void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params)
+ unsafe void ConvolutionParameterv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single* @params)
{
- Delegates.glConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glConvolutionParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionParameteri")]
public static
- void ConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params)
+ void ConvolutionParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32 @params)
{
- Delegates.glConvolutionParameteri((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)@params);
+ Delegates.glConvolutionParameteri((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionParameteriv")]
public static
- void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params)
+ void ConvolutionParameterv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glConvolutionParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionParameteriv")]
public static
- void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params)
+ void ConvolutionParameterv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glConvolutionParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glConvolutionParameteriv")]
public static
- unsafe void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void ConvolutionParameterv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32* @params)
{
- Delegates.glConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glConvolutionParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glCopyConvolutionFilter1D")]
public static
- void CopyConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width)
+ void CopyConvolutionFilter1D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width)
{
- Delegates.glCopyConvolutionFilter1D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width);
+ Delegates.glCopyConvolutionFilter1D((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glCopyConvolutionFilter2D")]
public static
- void CopyConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height)
+ void CopyConvolutionFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height)
{
- Delegates.glCopyConvolutionFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
+ Delegates.glCopyConvolutionFilter2D((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetConvolutionFilter")]
public static
- void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image)
+ void GetConvolutionFilter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image)
{
unsafe
{
- Delegates.glGetConvolutionFilter((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
+ Delegates.glGetConvolutionFilter((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetConvolutionFilter")]
public static
- void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
+ void GetConvolutionFilter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
{
unsafe
{
System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetConvolutionFilter((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
+ Delegates.glGetConvolutionFilter((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6660,81 +7393,89 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetConvolutionParameterfv")]
public static
- void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetConvolutionParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetConvolutionParameterfv")]
public static
- void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetConvolutionParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetConvolutionParameterfv")]
public static
- unsafe void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetConvolutionParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params)
{
- Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetConvolutionParameteriv")]
public static
- void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetConvolutionParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetConvolutionParameteriv")]
public static
- void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetConvolutionParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetConvolutionParameteriv")]
public static
- unsafe void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetConvolutionParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params)
{
- Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetSeparableFilter")]
public static
- void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span)
+ void GetSeparableFilter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span)
{
unsafe
{
- Delegates.glGetSeparableFilter((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span);
+ Delegates.glGetSeparableFilter((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetSeparableFilter")]
public static
- void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span)
+ void GetSeparableFilter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span)
{
unsafe
{
@@ -6743,7 +7484,7 @@ namespace OpenTK.Graphics
System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetSeparableFilter((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
+ Delegates.glGetSeparableFilter((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6754,17 +7495,19 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glSeparableFilter2D")]
public static
- void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column)
+ void SeparableFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column)
{
unsafe
{
- Delegates.glSeparableFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column);
+ Delegates.glSeparableFilter2D((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glSeparableFilter2D")]
public static
- void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column)
+ void SeparableFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column)
{
unsafe
{
@@ -6772,7 +7515,7 @@ namespace OpenTK.Graphics
System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glSeparableFilter2D((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
+ Delegates.glSeparableFilter2D((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6782,24 +7525,26 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetHistogram")]
public static
- void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values)
+ void GetHistogram(OpenTK.Graphics.Version12 target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values)
{
unsafe
{
- Delegates.glGetHistogram((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values);
+ Delegates.glGetHistogram((OpenTK.Graphics.Version12)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetHistogram")]
public static
- void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object values)
+ void GetHistogram(OpenTK.Graphics.Version12 target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object values)
{
unsafe
{
System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetHistogram((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject());
+ Delegates.glGetHistogram((OpenTK.Graphics.Version12)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6808,88 +7553,96 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetHistogramParameterfv")]
public static
- void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetHistogramParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetHistogramParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetHistogramParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetHistogramParameterfv")]
public static
- void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetHistogramParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetHistogramParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetHistogramParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetHistogramParameterfv")]
public static
- unsafe void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetHistogramParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params)
{
- Delegates.glGetHistogramParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetHistogramParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetHistogramParameteriv")]
public static
- void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetHistogramParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetHistogramParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetHistogramParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetHistogramParameteriv")]
public static
- void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetHistogramParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetHistogramParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetHistogramParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetHistogramParameteriv")]
public static
- unsafe void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetHistogramParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params)
{
- Delegates.glGetHistogramParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetHistogramParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetMinmax")]
public static
- void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values)
+ void GetMinmax(OpenTK.Graphics.Version12 target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values)
{
unsafe
{
- Delegates.glGetMinmax((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values);
+ Delegates.glGetMinmax((OpenTK.Graphics.Version12)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values);
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetMinmax")]
public static
- void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object values)
+ void GetMinmax(OpenTK.Graphics.Version12 target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object values)
{
unsafe
{
System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetMinmax((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject());
+ Delegates.glGetMinmax((OpenTK.Graphics.Version12)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject());
}
finally
{
@@ -6898,94 +7651,105 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetMinmaxParameterfv")]
public static
- void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetMinmaxParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetMinmaxParameterfv")]
public static
- void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetMinmaxParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetMinmaxParameterfv")]
public static
- unsafe void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetMinmaxParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params)
{
- Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetMinmaxParameteriv")]
public static
- void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetMinmaxParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetMinmaxParameteriv")]
public static
- void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetMinmaxParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glGetMinmaxParameteriv")]
public static
- unsafe void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetMinmaxParameter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params)
{
- Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.Version12)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glHistogram")]
public static
- void Histogram(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink)
+ void Histogram(OpenTK.Graphics.Version12 target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink)
{
- Delegates.glHistogram((OpenTK.Graphics.All)target, (Int32)width, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink);
+ Delegates.glHistogram((OpenTK.Graphics.Version12)target, (Int32)width, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glMinmax")]
public static
- void Minmax(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink)
+ void Minmax(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink)
{
- Delegates.glMinmax((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink);
+ Delegates.glMinmax((OpenTK.Graphics.Version12)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glResetHistogram")]
public static
- void ResetHistogram(OpenTK.Graphics.All target)
+ void ResetHistogram(OpenTK.Graphics.Version12 target)
{
- Delegates.glResetHistogram((OpenTK.Graphics.All)target);
+ Delegates.glResetHistogram((OpenTK.Graphics.Version12)target);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glResetMinmax")]
public static
- void ResetMinmax(OpenTK.Graphics.All target)
+ void ResetMinmax(OpenTK.Graphics.Version12 target)
{
- Delegates.glResetMinmax((OpenTK.Graphics.All)target);
+ Delegates.glResetMinmax((OpenTK.Graphics.Version12)target);
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glTexImage3D")]
public static
void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -6995,6 +7759,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glTexImage3D")]
public static
void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -7012,6 +7777,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glTexSubImage3D")]
public static
void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -7021,6 +7787,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glTexSubImage3D")]
public static
void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -7038,30 +7805,35 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version12", Version = "1.2", EntryPoint = "glCopyTexSubImage3D")]
public static
void CopyTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height)
{
Delegates.glCopyTexSubImage3D((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glActiveTexture")]
public static
void ActiveTexture(OpenTK.Graphics.TextureUnit texture)
{
Delegates.glActiveTexture((OpenTK.Graphics.TextureUnit)texture);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glClientActiveTexture")]
public static
void ClientActiveTexture(OpenTK.Graphics.TextureUnit texture)
{
Delegates.glClientActiveTexture((OpenTK.Graphics.TextureUnit)texture);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1d")]
public static
void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Double s)
{
Delegates.glMultiTexCoord1d((OpenTK.Graphics.TextureUnit)target, (Double)s);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1dv")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Double[] v)
{
@@ -7074,6 +7846,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1dv")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Double v)
{
@@ -7087,18 +7860,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1dv")]
public static
unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Double* v)
{
Delegates.glMultiTexCoord1dv((OpenTK.Graphics.TextureUnit)target, (Double*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1f")]
public static
void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Single s)
{
Delegates.glMultiTexCoord1f((OpenTK.Graphics.TextureUnit)target, (Single)s);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1fv")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Single[] v)
{
@@ -7111,6 +7887,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1fv")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Single v)
{
@@ -7124,18 +7901,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1fv")]
public static
unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Single* v)
{
Delegates.glMultiTexCoord1fv((OpenTK.Graphics.TextureUnit)target, (Single*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1i")]
public static
void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Int32 s)
{
Delegates.glMultiTexCoord1i((OpenTK.Graphics.TextureUnit)target, (Int32)s);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1iv")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int32[] v)
{
@@ -7148,6 +7928,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1iv")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Int32 v)
{
@@ -7161,18 +7942,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1iv")]
public static
unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int32* v)
{
Delegates.glMultiTexCoord1iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1s")]
public static
void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Int16 s)
{
Delegates.glMultiTexCoord1s((OpenTK.Graphics.TextureUnit)target, (Int16)s);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1sv")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int16[] v)
{
@@ -7185,6 +7969,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1sv")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Int16 v)
{
@@ -7198,18 +7983,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord1sv")]
public static
unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int16* v)
{
Delegates.glMultiTexCoord1sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2d")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double s, Double t)
{
Delegates.glMultiTexCoord2d((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double[] v)
{
@@ -7222,6 +8010,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Double v)
{
@@ -7235,18 +8024,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")]
public static
unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double* v)
{
Delegates.glMultiTexCoord2dv((OpenTK.Graphics.TextureUnit)target, (Double*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2f")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single s, Single t)
{
Delegates.glMultiTexCoord2f((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single[] v)
{
@@ -7259,6 +8051,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Single v)
{
@@ -7272,18 +8065,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")]
public static
unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single* v)
{
Delegates.glMultiTexCoord2fv((OpenTK.Graphics.TextureUnit)target, (Single*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2i")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t)
{
Delegates.glMultiTexCoord2i((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32[] v)
{
@@ -7296,6 +8092,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Int32 v)
{
@@ -7309,18 +8106,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")]
public static
unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32* v)
{
Delegates.glMultiTexCoord2iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2s")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t)
{
Delegates.glMultiTexCoord2s((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16[] v)
{
@@ -7333,6 +8133,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Int16 v)
{
@@ -7346,18 +8147,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")]
public static
unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16* v)
{
Delegates.glMultiTexCoord2sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3d")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r)
{
Delegates.glMultiTexCoord3d((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t, (Double)r);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double[] v)
{
@@ -7370,6 +8174,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Double v)
{
@@ -7383,18 +8188,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")]
public static
unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double* v)
{
Delegates.glMultiTexCoord3dv((OpenTK.Graphics.TextureUnit)target, (Double*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3f")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r)
{
Delegates.glMultiTexCoord3f((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t, (Single)r);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single[] v)
{
@@ -7407,6 +8215,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Single v)
{
@@ -7420,18 +8229,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")]
public static
unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single* v)
{
Delegates.glMultiTexCoord3fv((OpenTK.Graphics.TextureUnit)target, (Single*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3i")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r)
{
Delegates.glMultiTexCoord3i((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32[] v)
{
@@ -7444,6 +8256,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Int32 v)
{
@@ -7457,18 +8270,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")]
public static
unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32* v)
{
Delegates.glMultiTexCoord3iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3s")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r)
{
Delegates.glMultiTexCoord3s((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16[] v)
{
@@ -7481,6 +8297,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Int16 v)
{
@@ -7494,18 +8311,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")]
public static
unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16* v)
{
Delegates.glMultiTexCoord3sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4d")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r, Double q)
{
Delegates.glMultiTexCoord4d((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double[] v)
{
@@ -7518,6 +8338,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Double v)
{
@@ -7531,18 +8352,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")]
public static
unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double* v)
{
Delegates.glMultiTexCoord4dv((OpenTK.Graphics.TextureUnit)target, (Double*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4f")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r, Single q)
{
Delegates.glMultiTexCoord4f((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single[] v)
{
@@ -7555,6 +8379,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Single v)
{
@@ -7568,18 +8393,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")]
public static
unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single* v)
{
Delegates.glMultiTexCoord4fv((OpenTK.Graphics.TextureUnit)target, (Single*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4i")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q)
{
Delegates.glMultiTexCoord4i((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32[] v)
{
@@ -7592,6 +8420,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Int32 v)
{
@@ -7605,18 +8434,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")]
public static
unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32* v)
{
Delegates.glMultiTexCoord4iv((OpenTK.Graphics.TextureUnit)target, (Int32*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4s")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q)
{
Delegates.glMultiTexCoord4s((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16[] v)
{
@@ -7629,6 +8461,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Int16 v)
{
@@ -7642,12 +8475,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")]
public static
unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16* v)
{
Delegates.glMultiTexCoord4sv((OpenTK.Graphics.TextureUnit)target, (Int16*)v);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")]
public static
void LoadTransposeMatrix(Single[] m)
{
@@ -7660,6 +8495,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")]
public static
void LoadTransposeMatrix(ref Single m)
{
@@ -7673,12 +8509,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")]
public static
unsafe void LoadTransposeMatrix(Single* m)
{
Delegates.glLoadTransposeMatrixf((Single*)m);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")]
public static
void LoadTransposeMatrix(Double[] m)
{
@@ -7691,6 +8529,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")]
public static
void LoadTransposeMatrix(ref Double m)
{
@@ -7704,12 +8543,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")]
public static
unsafe void LoadTransposeMatrix(Double* m)
{
Delegates.glLoadTransposeMatrixd((Double*)m);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")]
public static
void MultTransposeMatrix(Single[] m)
{
@@ -7722,6 +8563,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")]
public static
void MultTransposeMatrix(ref Single m)
{
@@ -7735,12 +8577,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")]
public static
unsafe void MultTransposeMatrix(Single* m)
{
Delegates.glMultTransposeMatrixf((Single*)m);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")]
public static
void MultTransposeMatrix(Double[] m)
{
@@ -7753,6 +8597,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")]
public static
void MultTransposeMatrix(ref Double m)
{
@@ -7766,18 +8611,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")]
public static
unsafe void MultTransposeMatrix(Double* m)
{
Delegates.glMultTransposeMatrixd((Double*)m);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glSampleCoverage")]
public static
void SampleCoverage(Single value, bool invert)
{
Delegates.glSampleCoverage((Single)value, (bool)invert);
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexImage3D")]
public static
void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data)
{
@@ -7787,6 +8635,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexImage3D")]
public static
void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object data)
{
@@ -7804,6 +8653,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexImage2D")]
public static
void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data)
{
@@ -7813,6 +8663,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexImage2D")]
public static
void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object data)
{
@@ -7830,6 +8681,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexImage1D")]
public static
void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data)
{
@@ -7839,6 +8691,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexImage1D")]
public static
void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object data)
{
@@ -7856,6 +8709,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")]
public static
void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data)
{
@@ -7865,6 +8719,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")]
public static
void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object data)
{
@@ -7882,6 +8737,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")]
public static
void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data)
{
@@ -7891,6 +8747,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")]
public static
void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object data)
{
@@ -7908,6 +8765,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")]
public static
void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data)
{
@@ -7917,6 +8775,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")]
public static
void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object data)
{
@@ -7934,6 +8793,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glGetCompressedTexImage")]
public static
void GetCompressedTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, [Out] IntPtr img)
{
@@ -7943,6 +8803,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version13", Version = "1.3", EntryPoint = "glGetCompressedTexImage")]
public static
void GetCompressedTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, [In, Out] object img)
{
@@ -7960,18 +8821,21 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glBlendFuncSeparate")]
public static
void BlendFuncSeparate(OpenTK.Graphics.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.BlendingFactorDest dfactorRGB, OpenTK.Graphics.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.BlendingFactorDest dfactorAlpha)
{
Delegates.glBlendFuncSeparate((OpenTK.Graphics.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.BlendingFactorDest)dfactorAlpha);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoordf")]
public static
void FogCoord(Single coord)
{
Delegates.glFogCoordf((Single)coord);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoordfv")]
public static
void FogCoordv(Single[] coord)
{
@@ -7984,6 +8848,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoordfv")]
public static
void FogCoordv(ref Single coord)
{
@@ -7997,18 +8862,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoordfv")]
public static
unsafe void FogCoordv(Single* coord)
{
Delegates.glFogCoordfv((Single*)coord);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoordd")]
public static
void FogCoord(Double coord)
{
Delegates.glFogCoordd((Double)coord);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoorddv")]
public static
void FogCoordv(Double[] coord)
{
@@ -8021,6 +8889,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoorddv")]
public static
void FogCoordv(ref Double coord)
{
@@ -8034,12 +8903,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoorddv")]
public static
unsafe void FogCoordv(Double* coord)
{
Delegates.glFogCoorddv((Double*)coord);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoordPointer")]
public static
void FogCoordPointer(OpenTK.Graphics.FogPointerType type, Int32 stride, IntPtr pointer)
{
@@ -8049,6 +8920,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glFogCoordPointer")]
public static
void FogCoordPointer(OpenTK.Graphics.FogPointerType type, Int32 stride, [In, Out] object pointer)
{
@@ -8066,6 +8938,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glMultiDrawArrays")]
public static
void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount)
{
@@ -8079,6 +8952,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glMultiDrawArrays")]
public static
void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount)
{
@@ -8095,12 +8969,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glMultiDrawArrays")]
public static
unsafe void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount)
{
Delegates.glMultiDrawArrays((OpenTK.Graphics.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glMultiDrawElements")]
public static
void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount)
{
@@ -8113,6 +8989,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glMultiDrawElements")]
public static
void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount)
{
@@ -8133,6 +9010,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glMultiDrawElements")]
public static
void MultiDrawElements(OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount)
{
@@ -8145,6 +9023,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glMultiDrawElements")]
public static
void MultiDrawElements(OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount)
{
@@ -8166,6 +9045,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glMultiDrawElements")]
public static
unsafe void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount)
{
@@ -8173,6 +9053,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glMultiDrawElements")]
public static
unsafe void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount)
{
@@ -8187,12 +9068,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glPointParameterf")]
public static
void PointParameter(OpenTK.Graphics.PointParameterName pname, Single param)
{
Delegates.glPointParameterf((OpenTK.Graphics.PointParameterName)pname, (Single)param);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glPointParameterfv")]
public static
void PointParameterv(OpenTK.Graphics.PointParameterName pname, Single[] @params)
{
@@ -8205,6 +9088,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glPointParameterfv")]
public static
void PointParameterv(OpenTK.Graphics.PointParameterName pname, ref Single @params)
{
@@ -8218,18 +9102,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glPointParameterfv")]
public static
unsafe void PointParameterv(OpenTK.Graphics.PointParameterName pname, Single* @params)
{
Delegates.glPointParameterfv((OpenTK.Graphics.PointParameterName)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glPointParameteri")]
public static
void PointParameter(OpenTK.Graphics.PointParameterName pname, Int32 param)
{
Delegates.glPointParameteri((OpenTK.Graphics.PointParameterName)pname, (Int32)param);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glPointParameteriv")]
public static
void PointParameterv(OpenTK.Graphics.PointParameterName pname, Int32[] @params)
{
@@ -8242,6 +9129,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glPointParameteriv")]
public static
void PointParameterv(OpenTK.Graphics.PointParameterName pname, ref Int32 @params)
{
@@ -8255,6 +9143,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glPointParameteriv")]
public static
unsafe void PointParameterv(OpenTK.Graphics.PointParameterName pname, Int32* @params)
{
@@ -8262,6 +9151,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3b")]
public static
void SecondaryColor3(SByte red, SByte green, SByte blue)
{
@@ -8269,6 +9159,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3bv")]
public static
void SecondaryColor3(SByte[] v)
{
@@ -8282,6 +9173,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3bv")]
public static
void SecondaryColor3(ref SByte v)
{
@@ -8295,18 +9187,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3bv")]
public static
unsafe void SecondaryColor3(SByte* v)
{
Delegates.glSecondaryColor3bv((SByte*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3d")]
public static
void SecondaryColor3(Double red, Double green, Double blue)
{
Delegates.glSecondaryColor3d((Double)red, (Double)green, (Double)blue);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3dv")]
public static
void SecondaryColor3(Double[] v)
{
@@ -8319,6 +9214,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3dv")]
public static
void SecondaryColor3(ref Double v)
{
@@ -8332,18 +9228,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3dv")]
public static
unsafe void SecondaryColor3(Double* v)
{
Delegates.glSecondaryColor3dv((Double*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3f")]
public static
void SecondaryColor3(Single red, Single green, Single blue)
{
Delegates.glSecondaryColor3f((Single)red, (Single)green, (Single)blue);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3fv")]
public static
void SecondaryColor3(Single[] v)
{
@@ -8356,6 +9255,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3fv")]
public static
void SecondaryColor3(ref Single v)
{
@@ -8369,18 +9269,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3fv")]
public static
unsafe void SecondaryColor3(Single* v)
{
Delegates.glSecondaryColor3fv((Single*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3ub")]
public static
void SecondaryColor3(Byte red, Byte green, Byte blue)
{
Delegates.glSecondaryColor3ub((Byte)red, (Byte)green, (Byte)blue);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")]
public static
void SecondaryColor3(Byte[] v)
{
@@ -8393,6 +9296,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")]
public static
void SecondaryColor3(ref Byte v)
{
@@ -8406,6 +9310,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")]
public static
unsafe void SecondaryColor3(Byte* v)
{
@@ -8413,12 +9318,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3ui")]
public static
void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue)
{
Delegates.glSecondaryColor3ui((UInt32)red, (UInt32)green, (UInt32)blue);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3ui")]
public static
void SecondaryColor3(Int32 red, Int32 green, Int32 blue)
{
@@ -8426,6 +9333,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")]
public static
void SecondaryColor3(UInt32[] v)
{
@@ -8438,6 +9346,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")]
public static
void SecondaryColor3(Int32[] v)
{
@@ -8451,6 +9360,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")]
public static
void SecondaryColor3(ref UInt32 v)
{
@@ -8463,6 +9373,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")]
public static
void SecondaryColor3(ref Int32 v)
{
@@ -8476,6 +9387,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")]
public static
unsafe void SecondaryColor3(UInt32* v)
{
@@ -8483,6 +9395,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")]
public static
unsafe void SecondaryColor3(Int32* v)
{
@@ -8490,12 +9403,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3us")]
public static
void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue)
{
Delegates.glSecondaryColor3us((UInt16)red, (UInt16)green, (UInt16)blue);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3us")]
public static
void SecondaryColor3(Int16 red, Int16 green, Int16 blue)
{
@@ -8503,6 +9418,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3usv")]
public static
void SecondaryColor3(UInt16[] v)
{
@@ -8515,6 +9431,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3usv")]
public static
void SecondaryColor3(Int16[] v)
{
@@ -8528,6 +9445,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3usv")]
public static
void SecondaryColor3(ref UInt16 v)
{
@@ -8540,6 +9458,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3usv")]
public static
void SecondaryColor3(ref Int16 v)
{
@@ -8553,6 +9472,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3usv")]
public static
unsafe void SecondaryColor3(UInt16* v)
{
@@ -8560,12 +9480,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColor3usv")]
public static
unsafe void SecondaryColor3(Int16* v)
{
Delegates.glSecondaryColor3usv((UInt16*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColorPointer")]
public static
void SecondaryColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer)
{
@@ -8575,6 +9497,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glSecondaryColorPointer")]
public static
void SecondaryColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, [In, Out] object pointer)
{
@@ -8592,12 +9515,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2d")]
public static
void WindowPos2(Double x, Double y)
{
Delegates.glWindowPos2d((Double)x, (Double)y);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2dv")]
public static
void WindowPos2(Double[] v)
{
@@ -8610,6 +9535,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2dv")]
public static
void WindowPos2(ref Double v)
{
@@ -8623,18 +9549,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2dv")]
public static
unsafe void WindowPos2(Double* v)
{
Delegates.glWindowPos2dv((Double*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2f")]
public static
void WindowPos2(Single x, Single y)
{
Delegates.glWindowPos2f((Single)x, (Single)y);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2fv")]
public static
void WindowPos2(Single[] v)
{
@@ -8647,6 +9576,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2fv")]
public static
void WindowPos2(ref Single v)
{
@@ -8660,18 +9590,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2fv")]
public static
unsafe void WindowPos2(Single* v)
{
Delegates.glWindowPos2fv((Single*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2i")]
public static
void WindowPos2(Int32 x, Int32 y)
{
Delegates.glWindowPos2i((Int32)x, (Int32)y);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2iv")]
public static
void WindowPos2(Int32[] v)
{
@@ -8684,6 +9617,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2iv")]
public static
void WindowPos2(ref Int32 v)
{
@@ -8697,18 +9631,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2iv")]
public static
unsafe void WindowPos2(Int32* v)
{
Delegates.glWindowPos2iv((Int32*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2s")]
public static
void WindowPos2(Int16 x, Int16 y)
{
Delegates.glWindowPos2s((Int16)x, (Int16)y);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2sv")]
public static
void WindowPos2(Int16[] v)
{
@@ -8721,6 +9658,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2sv")]
public static
void WindowPos2(ref Int16 v)
{
@@ -8734,18 +9672,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos2sv")]
public static
unsafe void WindowPos2(Int16* v)
{
Delegates.glWindowPos2sv((Int16*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3d")]
public static
void WindowPos3(Double x, Double y, Double z)
{
Delegates.glWindowPos3d((Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3dv")]
public static
void WindowPos3(Double[] v)
{
@@ -8758,6 +9699,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3dv")]
public static
void WindowPos3(ref Double v)
{
@@ -8771,18 +9713,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3dv")]
public static
unsafe void WindowPos3(Double* v)
{
Delegates.glWindowPos3dv((Double*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3f")]
public static
void WindowPos3(Single x, Single y, Single z)
{
Delegates.glWindowPos3f((Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3fv")]
public static
void WindowPos3(Single[] v)
{
@@ -8795,6 +9740,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3fv")]
public static
void WindowPos3(ref Single v)
{
@@ -8808,18 +9754,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3fv")]
public static
unsafe void WindowPos3(Single* v)
{
Delegates.glWindowPos3fv((Single*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3i")]
public static
void WindowPos3(Int32 x, Int32 y, Int32 z)
{
Delegates.glWindowPos3i((Int32)x, (Int32)y, (Int32)z);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3iv")]
public static
void WindowPos3(Int32[] v)
{
@@ -8832,6 +9781,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3iv")]
public static
void WindowPos3(ref Int32 v)
{
@@ -8845,18 +9795,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3iv")]
public static
unsafe void WindowPos3(Int32* v)
{
Delegates.glWindowPos3iv((Int32*)v);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3s")]
public static
void WindowPos3(Int16 x, Int16 y, Int16 z)
{
Delegates.glWindowPos3s((Int16)x, (Int16)y, (Int16)z);
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3sv")]
public static
void WindowPos3(Int16[] v)
{
@@ -8869,6 +9822,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3sv")]
public static
void WindowPos3(ref Int16 v)
{
@@ -8882,6 +9836,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version14", Version = "1.4", EntryPoint = "glWindowPos3sv")]
public static
unsafe void WindowPos3(Int16* v)
{
@@ -8889,6 +9844,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenQueries")]
public static
void GenQueries(Int32 n, [Out] UInt32[] ids)
{
@@ -8901,6 +9857,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenQueries")]
public static
void GenQueries(Int32 n, [Out] Int32[] ids)
{
@@ -8914,6 +9871,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenQueries")]
public static
void GenQueries(Int32 n, [Out] out UInt32 ids)
{
@@ -8927,6 +9885,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenQueries")]
public static
void GenQueries(Int32 n, [Out] out Int32 ids)
{
@@ -8941,6 +9900,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenQueries")]
public static
unsafe void GenQueries(Int32 n, [Out] UInt32* ids)
{
@@ -8948,6 +9908,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenQueries")]
public static
unsafe void GenQueries(Int32 n, [Out] Int32* ids)
{
@@ -8955,6 +9916,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteQueries")]
public static
void DeleteQueries(Int32 n, UInt32[] ids)
{
@@ -8967,6 +9929,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteQueries")]
public static
void DeleteQueries(Int32 n, Int32[] ids)
{
@@ -8980,6 +9943,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteQueries")]
public static
void DeleteQueries(Int32 n, ref UInt32 ids)
{
@@ -8992,6 +9956,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteQueries")]
public static
void DeleteQueries(Int32 n, ref Int32 ids)
{
@@ -9005,6 +9970,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteQueries")]
public static
unsafe void DeleteQueries(Int32 n, UInt32* ids)
{
@@ -9012,6 +9978,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteQueries")]
public static
unsafe void DeleteQueries(Int32 n, Int32* ids)
{
@@ -9019,12 +9986,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glIsQuery")]
public static
bool IsQuery(UInt32 id)
{
return Delegates.glIsQuery((UInt32)id);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glIsQuery")]
public static
bool IsQuery(Int32 id)
{
@@ -9032,24 +10001,28 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glBeginQuery")]
public static
void BeginQuery(OpenTK.Graphics.QueryTarget target, UInt32 id)
{
Delegates.glBeginQuery((OpenTK.Graphics.QueryTarget)target, (UInt32)id);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glBeginQuery")]
public static
void BeginQuery(OpenTK.Graphics.QueryTarget target, Int32 id)
{
Delegates.glBeginQuery((OpenTK.Graphics.QueryTarget)target, (UInt32)id);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glEndQuery")]
public static
void EndQuery(OpenTK.Graphics.QueryTarget target)
{
Delegates.glEndQuery((OpenTK.Graphics.QueryTarget)target);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryiv")]
public static
void GetQuery(OpenTK.Graphics.QueryTarget target, OpenTK.Graphics.GetQueryParam pname, [Out] Int32[] @params)
{
@@ -9062,6 +10035,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryiv")]
public static
void GetQuery(OpenTK.Graphics.QueryTarget target, OpenTK.Graphics.GetQueryParam pname, [Out] out Int32 @params)
{
@@ -9076,6 +10050,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryiv")]
public static
unsafe void GetQuery(OpenTK.Graphics.QueryTarget target, OpenTK.Graphics.GetQueryParam pname, [Out] Int32* @params)
{
@@ -9083,6 +10058,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryObjectiv")]
public static
void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] Int32[] @params)
{
@@ -9096,6 +10072,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryObjectiv")]
public static
void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] out Int32 @params)
{
@@ -9110,6 +10087,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryObjectiv")]
public static
unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] Int32* @params)
{
@@ -9117,6 +10095,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")]
public static
void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] UInt32[] @params)
{
@@ -9129,6 +10108,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")]
public static
void GetQueryObject(Int32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] Int32[] @params)
{
@@ -9142,6 +10122,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")]
public static
void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] out UInt32 @params)
{
@@ -9155,6 +10136,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")]
public static
void GetQueryObject(Int32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] out Int32 @params)
{
@@ -9169,6 +10151,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")]
public static
unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] UInt32* @params)
{
@@ -9176,6 +10159,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")]
public static
unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.GetQueryObjectParam pname, [Out] Int32* @params)
{
@@ -9183,12 +10167,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glBindBuffer")]
public static
void BindBuffer(OpenTK.Graphics.BufferTarget target, UInt32 buffer)
{
Delegates.glBindBuffer((OpenTK.Graphics.BufferTarget)target, (UInt32)buffer);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glBindBuffer")]
public static
void BindBuffer(OpenTK.Graphics.BufferTarget target, Int32 buffer)
{
@@ -9196,6 +10182,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteBuffers")]
public static
void DeleteBuffers(Int32 n, UInt32[] buffers)
{
@@ -9208,6 +10195,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteBuffers")]
public static
void DeleteBuffers(Int32 n, Int32[] buffers)
{
@@ -9221,6 +10209,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteBuffers")]
public static
void DeleteBuffers(Int32 n, ref UInt32 buffers)
{
@@ -9233,6 +10222,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteBuffers")]
public static
void DeleteBuffers(Int32 n, ref Int32 buffers)
{
@@ -9246,6 +10236,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteBuffers")]
public static
unsafe void DeleteBuffers(Int32 n, UInt32* buffers)
{
@@ -9253,6 +10244,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glDeleteBuffers")]
public static
unsafe void DeleteBuffers(Int32 n, Int32* buffers)
{
@@ -9260,6 +10252,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenBuffers")]
public static
void GenBuffers(Int32 n, [Out] UInt32[] buffers)
{
@@ -9272,6 +10265,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenBuffers")]
public static
void GenBuffers(Int32 n, [Out] Int32[] buffers)
{
@@ -9285,6 +10279,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenBuffers")]
public static
void GenBuffers(Int32 n, [Out] out UInt32 buffers)
{
@@ -9298,6 +10293,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenBuffers")]
public static
void GenBuffers(Int32 n, [Out] out Int32 buffers)
{
@@ -9312,6 +10308,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenBuffers")]
public static
unsafe void GenBuffers(Int32 n, [Out] UInt32* buffers)
{
@@ -9319,6 +10316,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGenBuffers")]
public static
unsafe void GenBuffers(Int32 n, [Out] Int32* buffers)
{
@@ -9326,18 +10324,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glIsBuffer")]
public static
bool IsBuffer(UInt32 buffer)
{
return Delegates.glIsBuffer((UInt32)buffer);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glIsBuffer")]
public static
bool IsBuffer(Int32 buffer)
{
return Delegates.glIsBuffer((UInt32)buffer);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glBufferData")]
public static
void BufferData(OpenTK.Graphics.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.BufferUsageHint usage)
{
@@ -9347,6 +10348,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glBufferData")]
public static
void BufferData(OpenTK.Graphics.BufferTarget target, IntPtr size, [In, Out] object data, OpenTK.Graphics.BufferUsageHint usage)
{
@@ -9364,6 +10366,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glBufferSubData")]
public static
void BufferSubData(OpenTK.Graphics.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data)
{
@@ -9373,6 +10376,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glBufferSubData")]
public static
void BufferSubData(OpenTK.Graphics.BufferTarget target, IntPtr offset, IntPtr size, [In, Out] object data)
{
@@ -9390,6 +10394,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetBufferSubData")]
public static
void GetBufferSubData(OpenTK.Graphics.BufferTarget target, IntPtr offset, IntPtr size, [Out] IntPtr data)
{
@@ -9399,6 +10404,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetBufferSubData")]
public static
void GetBufferSubData(OpenTK.Graphics.BufferTarget target, IntPtr offset, IntPtr size, [In, Out] object data)
{
@@ -9417,18 +10423,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glMapBuffer")]
public static
unsafe IntPtr MapBuffer(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferAccess access)
{
return Delegates.glMapBuffer((OpenTK.Graphics.BufferTarget)target, (OpenTK.Graphics.BufferAccess)access);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glUnmapBuffer")]
public static
bool UnmapBuffer(OpenTK.Graphics.BufferTarget target)
{
return Delegates.glUnmapBuffer((OpenTK.Graphics.BufferTarget)target);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetBufferParameteriv")]
public static
void GetBufferParameter(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferParameterName pname, [Out] Int32[] @params)
{
@@ -9441,6 +10450,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetBufferParameteriv")]
public static
void GetBufferParameter(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferParameterName pname, [Out] out Int32 @params)
{
@@ -9455,12 +10465,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetBufferParameteriv")]
public static
unsafe void GetBufferParameter(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferParameterName pname, [Out] Int32* @params)
{
Delegates.glGetBufferParameteriv((OpenTK.Graphics.BufferTarget)target, (OpenTK.Graphics.BufferParameterName)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetBufferPointerv")]
public static
void GetBufferPointer(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferPointer pname, [Out] IntPtr @params)
{
@@ -9470,6 +10482,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version15", Version = "1.5", EntryPoint = "glGetBufferPointerv")]
public static
void GetBufferPointer(OpenTK.Graphics.BufferTarget target, OpenTK.Graphics.BufferPointer pname, [In, Out] object @params)
{
@@ -9487,12 +10500,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glBlendEquationSeparate")]
public static
void BlendEquationSeparate(OpenTK.Graphics.All modeRGB, OpenTK.Graphics.All modeAlpha)
{
Delegates.glBlendEquationSeparate((OpenTK.Graphics.All)modeRGB, (OpenTK.Graphics.All)modeAlpha);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDrawBuffers")]
public static
void DrawBuffers(Int32 n, OpenTK.Graphics.DrawBuffersEnum[] bufs)
{
@@ -9505,6 +10520,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDrawBuffers")]
public static
void DrawBuffers(Int32 n, ref OpenTK.Graphics.DrawBuffersEnum bufs)
{
@@ -9518,12 +10534,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDrawBuffers")]
public static
unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.DrawBuffersEnum* bufs)
{
Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.DrawBuffersEnum*)bufs);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glStencilOpSeparate")]
public static
void StencilOpSeparate(OpenTK.Graphics.All face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass)
{
@@ -9531,12 +10549,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glStencilFuncSeparate")]
public static
void StencilFuncSeparate(OpenTK.Graphics.StencilFace face, OpenTK.Graphics.StencilFunction func, Int32 @ref, UInt32 mask)
{
Delegates.glStencilFuncSeparate((OpenTK.Graphics.StencilFace)face, (OpenTK.Graphics.StencilFunction)func, (Int32)@ref, (UInt32)mask);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glStencilFuncSeparate")]
public static
void StencilFuncSeparate(OpenTK.Graphics.StencilFace face, OpenTK.Graphics.StencilFunction func, Int32 @ref, Int32 mask)
{
@@ -9544,12 +10564,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glStencilMaskSeparate")]
public static
void StencilMaskSeparate(OpenTK.Graphics.All face, UInt32 mask)
{
Delegates.glStencilMaskSeparate((OpenTK.Graphics.All)face, (UInt32)mask);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glStencilMaskSeparate")]
public static
void StencilMaskSeparate(OpenTK.Graphics.All face, Int32 mask)
{
@@ -9557,12 +10579,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glAttachShader")]
public static
void AttachShader(UInt32 program, UInt32 shader)
{
Delegates.glAttachShader((UInt32)program, (UInt32)shader);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glAttachShader")]
public static
void AttachShader(Int32 program, Int32 shader)
{
@@ -9570,12 +10594,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glBindAttribLocation")]
public static
void BindAttribLocation(UInt32 program, UInt32 index, System.String name)
{
Delegates.glBindAttribLocation((UInt32)program, (UInt32)index, (System.String)name);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glBindAttribLocation")]
public static
void BindAttribLocation(Int32 program, Int32 index, System.String name)
{
@@ -9583,24 +10609,28 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glCompileShader")]
public static
void CompileShader(UInt32 shader)
{
Delegates.glCompileShader((UInt32)shader);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glCompileShader")]
public static
void CompileShader(Int32 shader)
{
Delegates.glCompileShader((UInt32)shader);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glCreateProgram")]
public static
Int32 CreateProgram()
{
return Delegates.glCreateProgram();
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glCreateShader")]
public static
Int32 CreateShader(OpenTK.Graphics.ShaderType type)
{
@@ -9608,12 +10638,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDeleteProgram")]
public static
void DeleteProgram(UInt32 program)
{
Delegates.glDeleteProgram((UInt32)program);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDeleteProgram")]
public static
void DeleteProgram(Int32 program)
{
@@ -9621,12 +10653,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDeleteShader")]
public static
void DeleteShader(UInt32 shader)
{
Delegates.glDeleteShader((UInt32)shader);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDeleteShader")]
public static
void DeleteShader(Int32 shader)
{
@@ -9634,12 +10668,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDetachShader")]
public static
void DetachShader(UInt32 program, UInt32 shader)
{
Delegates.glDetachShader((UInt32)program, (UInt32)shader);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDetachShader")]
public static
void DetachShader(Int32 program, Int32 shader)
{
@@ -9647,12 +10683,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")]
public static
void DisableVertexAttribArray(UInt32 index)
{
Delegates.glDisableVertexAttribArray((UInt32)index);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")]
public static
void DisableVertexAttribArray(Int32 index)
{
@@ -9660,12 +10698,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")]
public static
void EnableVertexAttribArray(UInt32 index)
{
Delegates.glEnableVertexAttribArray((UInt32)index);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")]
public static
void EnableVertexAttribArray(Int32 index)
{
@@ -9673,6 +10713,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
public static
void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ActiveAttribType[] type, [Out] System.Text.StringBuilder name)
{
@@ -9687,6 +10728,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
public static
void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ActiveAttribType[] type, [Out] System.Text.StringBuilder name)
{
@@ -9702,6 +10744,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
public static
void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.ActiveAttribType type, [Out] System.Text.StringBuilder name)
{
@@ -9719,6 +10762,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
public static
void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.ActiveAttribType type, [Out] System.Text.StringBuilder name)
{
@@ -9737,6 +10781,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
public static
unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ActiveAttribType* type, [Out] System.Text.StringBuilder name)
{
@@ -9744,6 +10789,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
public static
unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ActiveAttribType* type, [Out] System.Text.StringBuilder name)
{
@@ -9751,6 +10797,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveUniform")]
public static
void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ActiveUniformType[] type, [Out] System.Text.StringBuilder name)
{
@@ -9765,6 +10812,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveUniform")]
public static
void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ActiveUniformType[] type, [Out] System.Text.StringBuilder name)
{
@@ -9780,6 +10828,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveUniform")]
public static
void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.ActiveUniformType type, [Out] System.Text.StringBuilder name)
{
@@ -9797,6 +10846,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveUniform")]
public static
void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.ActiveUniformType type, [Out] System.Text.StringBuilder name)
{
@@ -9815,6 +10865,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveUniform")]
public static
unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ActiveUniformType* type, [Out] System.Text.StringBuilder name)
{
@@ -9822,6 +10873,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetActiveUniform")]
public static
unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ActiveUniformType* type, [Out] System.Text.StringBuilder name)
{
@@ -9829,6 +10881,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")]
public static
void GetAttachedShaders(UInt32 program, Int32 maxCount, [Out] Int32[] count, [Out] UInt32[] obj)
{
@@ -9842,6 +10895,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")]
public static
void GetAttachedShaders(Int32 program, Int32 maxCount, [Out] Int32[] count, [Out] Int32[] obj)
{
@@ -9856,6 +10910,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")]
public static
void GetAttachedShaders(UInt32 program, Int32 maxCount, [Out] out Int32 count, [Out] out UInt32 obj)
{
@@ -9871,6 +10926,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")]
public static
void GetAttachedShaders(Int32 program, Int32 maxCount, [Out] out Int32 count, [Out] out Int32 obj)
{
@@ -9887,6 +10943,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")]
public static
unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [Out] Int32* count, [Out] UInt32* obj)
{
@@ -9894,6 +10951,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")]
public static
unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [Out] Int32* count, [Out] Int32* obj)
{
@@ -9901,12 +10959,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttribLocation")]
public static
Int32 GetAttribLocation(UInt32 program, System.String name)
{
return Delegates.glGetAttribLocation((UInt32)program, (System.String)name);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttribLocation")]
public static
Int32 GetAttribLocation(Int32 program, System.String name)
{
@@ -9914,6 +10974,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramiv")]
public static
void GetProgram(UInt32 program, OpenTK.Graphics.ProgramParameter pname, [Out] Int32[] @params)
{
@@ -9926,6 +10987,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramiv")]
public static
void GetProgram(Int32 program, OpenTK.Graphics.ProgramParameter pname, [Out] Int32[] @params)
{
@@ -9939,6 +11001,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramiv")]
public static
void GetProgram(UInt32 program, OpenTK.Graphics.ProgramParameter pname, [Out] out Int32 @params)
{
@@ -9952,6 +11015,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramiv")]
public static
void GetProgram(Int32 program, OpenTK.Graphics.ProgramParameter pname, [Out] out Int32 @params)
{
@@ -9966,6 +11030,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramiv")]
public static
unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ProgramParameter pname, [Out] Int32* @params)
{
@@ -9973,6 +11038,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramiv")]
public static
unsafe void GetProgram(Int32 program, OpenTK.Graphics.ProgramParameter pname, [Out] Int32* @params)
{
@@ -9980,6 +11046,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramInfoLog")]
public static
void GetProgramInfoLog(UInt32 program, Int32 bufSize, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog)
{
@@ -9992,6 +11059,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramInfoLog")]
public static
void GetProgramInfoLog(Int32 program, Int32 bufSize, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10005,6 +11073,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramInfoLog")]
public static
void GetProgramInfoLog(UInt32 program, Int32 bufSize, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10018,6 +11087,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramInfoLog")]
public static
void GetProgramInfoLog(Int32 program, Int32 bufSize, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10032,6 +11102,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramInfoLog")]
public static
unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10039,6 +11110,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetProgramInfoLog")]
public static
unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10046,6 +11118,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderiv")]
public static
void GetShader(UInt32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] Int32[] @params)
{
@@ -10058,6 +11131,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderiv")]
public static
void GetShader(Int32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] Int32[] @params)
{
@@ -10071,6 +11145,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderiv")]
public static
void GetShader(UInt32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] out Int32 @params)
{
@@ -10084,6 +11159,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderiv")]
public static
void GetShader(Int32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] out Int32 @params)
{
@@ -10098,6 +11174,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderiv")]
public static
unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] Int32* @params)
{
@@ -10105,6 +11182,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderiv")]
public static
unsafe void GetShader(Int32 shader, OpenTK.Graphics.ShaderParameter pname, [Out] Int32* @params)
{
@@ -10112,6 +11190,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderInfoLog")]
public static
void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10124,6 +11203,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderInfoLog")]
public static
void GetShaderInfoLog(Int32 shader, Int32 bufSize, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10137,6 +11217,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderInfoLog")]
public static
void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10150,6 +11231,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderInfoLog")]
public static
void GetShaderInfoLog(Int32 shader, Int32 bufSize, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10164,6 +11246,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderInfoLog")]
public static
unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10171,6 +11254,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderInfoLog")]
public static
unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog)
{
@@ -10178,6 +11262,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderSource")]
public static
void GetShaderSource(UInt32 shader, Int32 bufSize, [Out] Int32[] length, [Out] System.Text.StringBuilder[] source)
{
@@ -10190,6 +11275,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderSource")]
public static
void GetShaderSource(Int32 shader, Int32 bufSize, [Out] Int32[] length, [Out] System.Text.StringBuilder[] source)
{
@@ -10203,6 +11289,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderSource")]
public static
void GetShaderSource(UInt32 shader, Int32 bufSize, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source)
{
@@ -10216,6 +11303,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderSource")]
public static
void GetShaderSource(Int32 shader, Int32 bufSize, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source)
{
@@ -10230,6 +11318,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderSource")]
public static
unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder[] source)
{
@@ -10237,6 +11326,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetShaderSource")]
public static
unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [Out] Int32* length, [Out] System.Text.StringBuilder[] source)
{
@@ -10244,12 +11334,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformLocation")]
public static
Int32 GetUniformLocation(UInt32 program, System.String name)
{
return Delegates.glGetUniformLocation((UInt32)program, (System.String)name);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformLocation")]
public static
Int32 GetUniformLocation(Int32 program, System.String name)
{
@@ -10257,6 +11349,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformfv")]
public static
void GetUniform(UInt32 program, Int32 location, [Out] Single[] @params)
{
@@ -10269,6 +11362,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformfv")]
public static
void GetUniform(Int32 program, Int32 location, [Out] Single[] @params)
{
@@ -10282,6 +11376,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformfv")]
public static
void GetUniform(UInt32 program, Int32 location, [Out] out Single @params)
{
@@ -10295,6 +11390,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformfv")]
public static
void GetUniform(Int32 program, Int32 location, [Out] out Single @params)
{
@@ -10309,6 +11405,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformfv")]
public static
unsafe void GetUniform(UInt32 program, Int32 location, [Out] Single* @params)
{
@@ -10316,6 +11413,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformfv")]
public static
unsafe void GetUniform(Int32 program, Int32 location, [Out] Single* @params)
{
@@ -10323,6 +11421,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformiv")]
public static
void GetUniform(UInt32 program, Int32 location, [Out] Int32[] @params)
{
@@ -10335,19 +11434,8 @@ namespace OpenTK.Graphics
}
}
- public static
- void GetUniform(Int32 program, Int32 location, [Out] Int32[] @params)
- {
- unsafe
- {
- fixed (Int32* @params_ptr = @params)
- {
- Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr);
- }
- }
- }
-
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformiv")]
public static
void GetUniform(UInt32 program, Int32 location, [Out] out Int32 @params)
{
@@ -10361,20 +11449,8 @@ namespace OpenTK.Graphics
}
}
- public static
- void GetUniform(Int32 program, Int32 location, [Out] out Int32 @params)
- {
- unsafe
- {
- fixed (Int32* @params_ptr = &@params)
- {
- Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr);
- @params = *@params_ptr;
- }
- }
- }
-
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetUniformiv")]
public static
unsafe void GetUniform(UInt32 program, Int32 location, [Out] Int32* @params)
{
@@ -10382,13 +11458,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
- public static
- unsafe void GetUniform(Int32 program, Int32 location, [Out] Int32* @params)
- {
- Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params);
- }
-
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribdv")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Double[] @params)
{
@@ -10401,6 +11471,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribdv")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Double[] @params)
{
@@ -10414,6 +11485,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribdv")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Double @params)
{
@@ -10427,6 +11499,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribdv")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Double @params)
{
@@ -10441,6 +11514,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribdv")]
public static
unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Double* @params)
{
@@ -10448,6 +11522,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribdv")]
public static
unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Double* @params)
{
@@ -10455,6 +11530,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Single[] @params)
{
@@ -10467,6 +11543,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Single[] @params)
{
@@ -10480,6 +11557,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Single @params)
{
@@ -10493,6 +11571,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Single @params)
{
@@ -10507,6 +11586,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
public static
unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Single* @params)
{
@@ -10514,6 +11594,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
public static
unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Single* @params)
{
@@ -10521,6 +11602,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Int32[] @params)
{
@@ -10533,6 +11615,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Int32[] @params)
{
@@ -10546,6 +11629,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Int32 @params)
{
@@ -10559,6 +11643,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] out Int32 @params)
{
@@ -10573,6 +11658,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
public static
unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Int32* @params)
{
@@ -10580,6 +11666,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
public static
unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameter pname, [Out] Int32* @params)
{
@@ -10587,6 +11674,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
public static
void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.VertexAttribPointerParameter pname, [Out] IntPtr pointer)
{
@@ -10596,6 +11684,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
public static
void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.VertexAttribPointerParameter pname, [Out] IntPtr pointer)
{
@@ -10606,6 +11695,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
public static
void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.VertexAttribPointerParameter pname, [In, Out] object pointer)
{
@@ -10623,6 +11713,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
public static
void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.VertexAttribPointerParameter pname, [In, Out] object pointer)
{
@@ -10641,12 +11732,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glIsProgram")]
public static
bool IsProgram(UInt32 program)
{
return Delegates.glIsProgram((UInt32)program);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glIsProgram")]
public static
bool IsProgram(Int32 program)
{
@@ -10654,12 +11747,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glIsShader")]
public static
bool IsShader(UInt32 shader)
{
return Delegates.glIsShader((UInt32)shader);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glIsShader")]
public static
bool IsShader(Int32 shader)
{
@@ -10667,12 +11762,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glLinkProgram")]
public static
void LinkProgram(UInt32 program)
{
Delegates.glLinkProgram((UInt32)program);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glLinkProgram")]
public static
void LinkProgram(Int32 program)
{
@@ -10680,6 +11777,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glShaderSource")]
public static
void ShaderSource(UInt32 shader, Int32 count, System.String[] @string, Int32[] length)
{
@@ -10692,6 +11790,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glShaderSource")]
public static
void ShaderSource(Int32 shader, Int32 count, System.String[] @string, Int32[] length)
{
@@ -10705,6 +11804,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glShaderSource")]
public static
void ShaderSource(UInt32 shader, Int32 count, System.String[] @string, ref Int32 length)
{
@@ -10717,6 +11817,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glShaderSource")]
public static
void ShaderSource(Int32 shader, Int32 count, System.String[] @string, ref Int32 length)
{
@@ -10730,6 +11831,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glShaderSource")]
public static
unsafe void ShaderSource(UInt32 shader, Int32 count, System.String[] @string, Int32* length)
{
@@ -10737,6 +11839,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glShaderSource")]
public static
unsafe void ShaderSource(Int32 shader, Int32 count, System.String[] @string, Int32* length)
{
@@ -10744,66 +11847,49 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUseProgram")]
public static
void UseProgram(UInt32 program)
{
Delegates.glUseProgram((UInt32)program);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUseProgram")]
public static
void UseProgram(Int32 program)
{
Delegates.glUseProgram((UInt32)program);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform1f")]
public static
void Uniform1(Int32 location, Single v0)
{
Delegates.glUniform1f((Int32)location, (Single)v0);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform2f")]
public static
void Uniform2(Int32 location, Single v0, Single v1)
{
Delegates.glUniform2f((Int32)location, (Single)v0, (Single)v1);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform3f")]
public static
void Uniform3(Int32 location, Single v0, Single v1, Single v2)
{
Delegates.glUniform3f((Int32)location, (Single)v0, (Single)v1, (Single)v2);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform4f")]
public static
void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3)
{
Delegates.glUniform4f((Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3);
}
- public static
- void Uniform1(Int32 location, Int32 v0)
- {
- Delegates.glUniform1i((Int32)location, (Int32)v0);
- }
-
- public static
- void Uniform2(Int32 location, Int32 v0, Int32 v1)
- {
- Delegates.glUniform2i((Int32)location, (Int32)v0, (Int32)v1);
- }
-
- public static
- void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2)
- {
- Delegates.glUniform3i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2);
- }
-
- public static
- void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3)
- {
- Delegates.glUniform4i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3);
- }
-
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform1fv")]
public static
void Uniform1(Int32 location, Int32 count, Single[] value)
{
@@ -10816,6 +11902,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform1fv")]
public static
void Uniform1(Int32 location, Int32 count, ref Single value)
{
@@ -10829,12 +11916,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform1fv")]
public static
unsafe void Uniform1(Int32 location, Int32 count, Single* value)
{
Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform2fv")]
public static
void Uniform2v(Int32 location, Int32 count, Single[] value)
{
@@ -10847,6 +11936,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform2fv")]
public static
void Uniform2v(Int32 location, Int32 count, ref Single value)
{
@@ -10860,12 +11950,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform2fv")]
public static
unsafe void Uniform2v(Int32 location, Int32 count, Single* value)
{
Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform3fv")]
public static
void Uniform3(Int32 location, Int32 count, Single[] value)
{
@@ -10878,6 +11970,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform3fv")]
public static
void Uniform3(Int32 location, Int32 count, ref Single value)
{
@@ -10891,12 +11984,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform3fv")]
public static
unsafe void Uniform3(Int32 location, Int32 count, Single* value)
{
Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform4fv")]
public static
void Uniform4(Int32 location, Int32 count, Single[] value)
{
@@ -10909,6 +12004,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform4fv")]
public static
void Uniform4(Int32 location, Int32 count, ref Single value)
{
@@ -10922,136 +12018,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniform4fv")]
public static
unsafe void Uniform4(Int32 location, Int32 count, Single* value)
{
Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value);
}
- public static
- void Uniform1(Int32 location, Int32 count, Int32[] value)
- {
- unsafe
- {
- fixed (Int32* value_ptr = value)
- {
- Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr);
- }
- }
- }
-
- public static
- void Uniform1(Int32 location, Int32 count, ref Int32 value)
- {
- unsafe
- {
- fixed (Int32* value_ptr = &value)
- {
- Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Uniform1(Int32 location, Int32 count, Int32* value)
- {
- Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value);
- }
-
- public static
- void Uniform2v(Int32 location, Int32 count, Int32[] value)
- {
- unsafe
- {
- fixed (Int32* value_ptr = value)
- {
- Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value_ptr);
- }
- }
- }
-
- public static
- void Uniform2v(Int32 location, Int32 count, ref Int32 value)
- {
- unsafe
- {
- fixed (Int32* value_ptr = &value)
- {
- Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Uniform2v(Int32 location, Int32 count, Int32* value)
- {
- Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value);
- }
-
- public static
- void Uniform3(Int32 location, Int32 count, Int32[] value)
- {
- unsafe
- {
- fixed (Int32* value_ptr = value)
- {
- Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr);
- }
- }
- }
-
- public static
- void Uniform3(Int32 location, Int32 count, ref Int32 value)
- {
- unsafe
- {
- fixed (Int32* value_ptr = &value)
- {
- Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Uniform3(Int32 location, Int32 count, Int32* value)
- {
- Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value);
- }
-
- public static
- void Uniform4(Int32 location, Int32 count, Int32[] value)
- {
- unsafe
- {
- fixed (Int32* value_ptr = value)
- {
- Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr);
- }
- }
- }
-
- public static
- void Uniform4(Int32 location, Int32 count, ref Int32 value)
- {
- unsafe
- {
- fixed (Int32* value_ptr = &value)
- {
- Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Uniform4(Int32 location, Int32 count, Int32* value)
- {
- Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value);
- }
-
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniformMatrix2fv")]
public static
void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -11064,6 +12038,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniformMatrix2fv")]
public static
void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -11077,12 +12052,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniformMatrix2fv")]
public static
unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniformMatrix3fv")]
public static
void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -11095,6 +12072,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniformMatrix3fv")]
public static
void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -11108,12 +12086,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniformMatrix3fv")]
public static
unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniformMatrix4fv")]
public static
void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -11126,6 +12106,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniformMatrix4fv")]
public static
void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -11139,6 +12120,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glUniformMatrix4fv")]
public static
unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single* value)
{
@@ -11146,12 +12128,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glValidateProgram")]
public static
void ValidateProgram(UInt32 program)
{
Delegates.glValidateProgram((UInt32)program);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glValidateProgram")]
public static
void ValidateProgram(Int32 program)
{
@@ -11159,12 +12143,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1d")]
public static
void VertexAttrib1(UInt32 index, Double x)
{
Delegates.glVertexAttrib1d((UInt32)index, (Double)x);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1d")]
public static
void VertexAttrib1(Int32 index, Double x)
{
@@ -11172,6 +12158,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1dv")]
public static
void VertexAttrib1v(UInt32 index, Double[] v)
{
@@ -11184,6 +12171,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1dv")]
public static
void VertexAttrib1v(Int32 index, Double[] v)
{
@@ -11197,6 +12185,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1dv")]
public static
void VertexAttrib1v(UInt32 index, ref Double v)
{
@@ -11209,6 +12198,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1dv")]
public static
void VertexAttrib1v(Int32 index, ref Double v)
{
@@ -11222,6 +12212,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1dv")]
public static
unsafe void VertexAttrib1v(UInt32 index, Double* v)
{
@@ -11229,6 +12220,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1dv")]
public static
unsafe void VertexAttrib1v(Int32 index, Double* v)
{
@@ -11236,12 +12228,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1f")]
public static
void VertexAttrib1(UInt32 index, Single x)
{
Delegates.glVertexAttrib1f((UInt32)index, (Single)x);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1f")]
public static
void VertexAttrib1(Int32 index, Single x)
{
@@ -11249,6 +12243,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1fv")]
public static
void VertexAttrib1v(UInt32 index, Single[] v)
{
@@ -11261,6 +12256,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1fv")]
public static
void VertexAttrib1v(Int32 index, Single[] v)
{
@@ -11274,6 +12270,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1fv")]
public static
void VertexAttrib1v(UInt32 index, ref Single v)
{
@@ -11286,6 +12283,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1fv")]
public static
void VertexAttrib1v(Int32 index, ref Single v)
{
@@ -11299,6 +12297,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1fv")]
public static
unsafe void VertexAttrib1v(UInt32 index, Single* v)
{
@@ -11306,6 +12305,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1fv")]
public static
unsafe void VertexAttrib1v(Int32 index, Single* v)
{
@@ -11313,12 +12313,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1s")]
public static
void VertexAttrib1(UInt32 index, Int16 x)
{
Delegates.glVertexAttrib1s((UInt32)index, (Int16)x);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1s")]
public static
void VertexAttrib1(Int32 index, Int16 x)
{
@@ -11326,6 +12328,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1sv")]
public static
void VertexAttrib1v(UInt32 index, Int16[] v)
{
@@ -11338,6 +12341,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1sv")]
public static
void VertexAttrib1v(Int32 index, Int16[] v)
{
@@ -11351,6 +12355,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1sv")]
public static
void VertexAttrib1v(UInt32 index, ref Int16 v)
{
@@ -11363,6 +12368,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1sv")]
public static
void VertexAttrib1v(Int32 index, ref Int16 v)
{
@@ -11376,6 +12382,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1sv")]
public static
unsafe void VertexAttrib1v(UInt32 index, Int16* v)
{
@@ -11383,6 +12390,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib1sv")]
public static
unsafe void VertexAttrib1v(Int32 index, Int16* v)
{
@@ -11390,12 +12398,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2d")]
public static
void VertexAttrib2(UInt32 index, Double x, Double y)
{
Delegates.glVertexAttrib2d((UInt32)index, (Double)x, (Double)y);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2d")]
public static
void VertexAttrib2(Int32 index, Double x, Double y)
{
@@ -11403,6 +12413,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2dv")]
public static
void VertexAttrib2(UInt32 index, Double[] v)
{
@@ -11415,6 +12426,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2dv")]
public static
void VertexAttrib2(Int32 index, Double[] v)
{
@@ -11428,6 +12440,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2dv")]
public static
void VertexAttrib2(UInt32 index, ref Double v)
{
@@ -11440,6 +12453,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2dv")]
public static
void VertexAttrib2(Int32 index, ref Double v)
{
@@ -11453,6 +12467,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2dv")]
public static
unsafe void VertexAttrib2(UInt32 index, Double* v)
{
@@ -11460,6 +12475,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2dv")]
public static
unsafe void VertexAttrib2(Int32 index, Double* v)
{
@@ -11467,12 +12483,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2f")]
public static
void VertexAttrib2(UInt32 index, Single x, Single y)
{
Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2f")]
public static
void VertexAttrib2(Int32 index, Single x, Single y)
{
@@ -11480,6 +12498,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2fv")]
public static
void VertexAttrib2(UInt32 index, Single[] v)
{
@@ -11492,6 +12511,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2fv")]
public static
void VertexAttrib2(Int32 index, Single[] v)
{
@@ -11505,6 +12525,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2fv")]
public static
void VertexAttrib2(UInt32 index, ref Single v)
{
@@ -11517,6 +12538,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2fv")]
public static
void VertexAttrib2(Int32 index, ref Single v)
{
@@ -11530,6 +12552,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2fv")]
public static
unsafe void VertexAttrib2(UInt32 index, Single* v)
{
@@ -11537,6 +12560,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2fv")]
public static
unsafe void VertexAttrib2(Int32 index, Single* v)
{
@@ -11544,12 +12568,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2s")]
public static
void VertexAttrib2(UInt32 index, Int16 x, Int16 y)
{
Delegates.glVertexAttrib2s((UInt32)index, (Int16)x, (Int16)y);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2s")]
public static
void VertexAttrib2(Int32 index, Int16 x, Int16 y)
{
@@ -11557,6 +12583,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2sv")]
public static
void VertexAttrib2(UInt32 index, Int16[] v)
{
@@ -11569,6 +12596,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2sv")]
public static
void VertexAttrib2(Int32 index, Int16[] v)
{
@@ -11582,6 +12610,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2sv")]
public static
void VertexAttrib2(UInt32 index, ref Int16 v)
{
@@ -11594,6 +12623,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2sv")]
public static
void VertexAttrib2(Int32 index, ref Int16 v)
{
@@ -11607,6 +12637,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2sv")]
public static
unsafe void VertexAttrib2(UInt32 index, Int16* v)
{
@@ -11614,6 +12645,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib2sv")]
public static
unsafe void VertexAttrib2(Int32 index, Int16* v)
{
@@ -11621,12 +12653,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3d")]
public static
void VertexAttrib3(UInt32 index, Double x, Double y, Double z)
{
Delegates.glVertexAttrib3d((UInt32)index, (Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3d")]
public static
void VertexAttrib3(Int32 index, Double x, Double y, Double z)
{
@@ -11634,6 +12668,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3dv")]
public static
void VertexAttrib3(UInt32 index, Double[] v)
{
@@ -11646,6 +12681,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3dv")]
public static
void VertexAttrib3(Int32 index, Double[] v)
{
@@ -11659,6 +12695,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3dv")]
public static
void VertexAttrib3(UInt32 index, ref Double v)
{
@@ -11671,6 +12708,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3dv")]
public static
void VertexAttrib3(Int32 index, ref Double v)
{
@@ -11684,6 +12722,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3dv")]
public static
unsafe void VertexAttrib3(UInt32 index, Double* v)
{
@@ -11691,6 +12730,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3dv")]
public static
unsafe void VertexAttrib3(Int32 index, Double* v)
{
@@ -11698,12 +12738,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3f")]
public static
void VertexAttrib3(UInt32 index, Single x, Single y, Single z)
{
Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3f")]
public static
void VertexAttrib3(Int32 index, Single x, Single y, Single z)
{
@@ -11711,6 +12753,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3fv")]
public static
void VertexAttrib3(UInt32 index, Single[] v)
{
@@ -11723,6 +12766,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3fv")]
public static
void VertexAttrib3(Int32 index, Single[] v)
{
@@ -11736,6 +12780,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3fv")]
public static
void VertexAttrib3(UInt32 index, ref Single v)
{
@@ -11748,6 +12793,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3fv")]
public static
void VertexAttrib3(Int32 index, ref Single v)
{
@@ -11761,6 +12807,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3fv")]
public static
unsafe void VertexAttrib3(UInt32 index, Single* v)
{
@@ -11768,6 +12815,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3fv")]
public static
unsafe void VertexAttrib3(Int32 index, Single* v)
{
@@ -11775,12 +12823,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3s")]
public static
void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z)
{
Delegates.glVertexAttrib3s((UInt32)index, (Int16)x, (Int16)y, (Int16)z);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3s")]
public static
void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z)
{
@@ -11788,6 +12838,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3sv")]
public static
void VertexAttrib3(UInt32 index, Int16[] v)
{
@@ -11800,6 +12851,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3sv")]
public static
void VertexAttrib3(Int32 index, Int16[] v)
{
@@ -11813,6 +12865,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3sv")]
public static
void VertexAttrib3(UInt32 index, ref Int16 v)
{
@@ -11825,6 +12878,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3sv")]
public static
void VertexAttrib3(Int32 index, ref Int16 v)
{
@@ -11838,6 +12892,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3sv")]
public static
unsafe void VertexAttrib3(UInt32 index, Int16* v)
{
@@ -11845,6 +12900,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib3sv")]
public static
unsafe void VertexAttrib3(Int32 index, Int16* v)
{
@@ -11852,6 +12908,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")]
public static
void VertexAttrib4N(UInt32 index, SByte[] v)
{
@@ -11865,6 +12922,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")]
public static
void VertexAttrib4N(UInt32 index, ref SByte v)
{
@@ -11878,6 +12936,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")]
public static
unsafe void VertexAttrib4N(UInt32 index, SByte* v)
{
@@ -11885,6 +12944,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")]
public static
void VertexAttrib4N(UInt32 index, Int32[] v)
{
@@ -11898,6 +12958,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")]
public static
void VertexAttrib4N(UInt32 index, ref Int32 v)
{
@@ -11911,6 +12972,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")]
public static
unsafe void VertexAttrib4N(UInt32 index, Int32* v)
{
@@ -11918,6 +12980,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")]
public static
void VertexAttrib4N(UInt32 index, Int16[] v)
{
@@ -11931,6 +12994,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")]
public static
void VertexAttrib4N(UInt32 index, ref Int16 v)
{
@@ -11944,6 +13008,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")]
public static
unsafe void VertexAttrib4N(UInt32 index, Int16* v)
{
@@ -11951,12 +13016,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")]
public static
void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w)
{
Delegates.glVertexAttrib4Nub((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nub")]
public static
void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w)
{
@@ -11964,6 +13031,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")]
public static
void VertexAttrib4N(UInt32 index, Byte[] v)
{
@@ -11976,6 +13044,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")]
public static
void VertexAttrib4N(Int32 index, Byte[] v)
{
@@ -11989,6 +13058,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")]
public static
void VertexAttrib4N(UInt32 index, ref Byte v)
{
@@ -12001,6 +13071,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")]
public static
void VertexAttrib4N(Int32 index, ref Byte v)
{
@@ -12014,6 +13085,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")]
public static
unsafe void VertexAttrib4N(UInt32 index, Byte* v)
{
@@ -12021,6 +13093,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")]
public static
unsafe void VertexAttrib4N(Int32 index, Byte* v)
{
@@ -12028,6 +13101,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")]
public static
void VertexAttrib4N(UInt32 index, UInt32[] v)
{
@@ -12040,6 +13114,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")]
public static
void VertexAttrib4N(Int32 index, Int32[] v)
{
@@ -12053,6 +13128,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")]
public static
void VertexAttrib4N(UInt32 index, ref UInt32 v)
{
@@ -12065,6 +13141,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")]
public static
void VertexAttrib4N(Int32 index, ref Int32 v)
{
@@ -12078,6 +13155,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")]
public static
unsafe void VertexAttrib4N(UInt32 index, UInt32* v)
{
@@ -12085,6 +13163,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")]
public static
unsafe void VertexAttrib4N(Int32 index, Int32* v)
{
@@ -12092,6 +13171,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")]
public static
void VertexAttrib4N(UInt32 index, UInt16[] v)
{
@@ -12104,6 +13184,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")]
public static
void VertexAttrib4N(Int32 index, Int16[] v)
{
@@ -12117,6 +13198,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")]
public static
void VertexAttrib4N(UInt32 index, ref UInt16 v)
{
@@ -12129,6 +13211,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")]
public static
void VertexAttrib4N(Int32 index, ref Int16 v)
{
@@ -12142,6 +13225,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")]
public static
unsafe void VertexAttrib4N(UInt32 index, UInt16* v)
{
@@ -12149,6 +13233,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")]
public static
unsafe void VertexAttrib4N(Int32 index, Int16* v)
{
@@ -12156,6 +13241,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4bv")]
public static
void VertexAttrib4(UInt32 index, SByte[] v)
{
@@ -12169,6 +13255,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4bv")]
public static
void VertexAttrib4(UInt32 index, ref SByte v)
{
@@ -12182,6 +13269,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4bv")]
public static
unsafe void VertexAttrib4(UInt32 index, SByte* v)
{
@@ -12189,12 +13277,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4d")]
public static
void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w)
{
Delegates.glVertexAttrib4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4d")]
public static
void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w)
{
@@ -12202,6 +13292,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4dv")]
public static
void VertexAttrib4(UInt32 index, Double[] v)
{
@@ -12214,6 +13305,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4dv")]
public static
void VertexAttrib4(Int32 index, Double[] v)
{
@@ -12227,6 +13319,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4dv")]
public static
void VertexAttrib4(UInt32 index, ref Double v)
{
@@ -12239,6 +13332,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4dv")]
public static
void VertexAttrib4(Int32 index, ref Double v)
{
@@ -12252,6 +13346,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4dv")]
public static
unsafe void VertexAttrib4(UInt32 index, Double* v)
{
@@ -12259,6 +13354,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4dv")]
public static
unsafe void VertexAttrib4(Int32 index, Double* v)
{
@@ -12266,12 +13362,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4f")]
public static
void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w)
{
Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4f")]
public static
void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w)
{
@@ -12279,6 +13377,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4fv")]
public static
void VertexAttrib4(UInt32 index, Single[] v)
{
@@ -12291,6 +13390,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4fv")]
public static
void VertexAttrib4(Int32 index, Single[] v)
{
@@ -12304,6 +13404,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4fv")]
public static
void VertexAttrib4(UInt32 index, ref Single v)
{
@@ -12316,6 +13417,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4fv")]
public static
void VertexAttrib4(Int32 index, ref Single v)
{
@@ -12329,6 +13431,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4fv")]
public static
unsafe void VertexAttrib4(UInt32 index, Single* v)
{
@@ -12336,6 +13439,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4fv")]
public static
unsafe void VertexAttrib4(Int32 index, Single* v)
{
@@ -12343,6 +13447,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4iv")]
public static
void VertexAttrib4(UInt32 index, Int32[] v)
{
@@ -12356,6 +13461,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4iv")]
public static
void VertexAttrib4(UInt32 index, ref Int32 v)
{
@@ -12369,6 +13475,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4iv")]
public static
unsafe void VertexAttrib4(UInt32 index, Int32* v)
{
@@ -12376,12 +13483,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4s")]
public static
void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w)
{
Delegates.glVertexAttrib4s((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w);
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4s")]
public static
void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w)
{
@@ -12389,6 +13498,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4sv")]
public static
void VertexAttrib4(UInt32 index, Int16[] v)
{
@@ -12402,6 +13512,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4sv")]
public static
void VertexAttrib4(UInt32 index, ref Int16 v)
{
@@ -12415,6 +13526,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4sv")]
public static
unsafe void VertexAttrib4(UInt32 index, Int16* v)
{
@@ -12422,6 +13534,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")]
public static
void VertexAttrib4(UInt32 index, Byte[] v)
{
@@ -12434,6 +13547,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")]
public static
void VertexAttrib4(Int32 index, Byte[] v)
{
@@ -12447,6 +13561,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")]
public static
void VertexAttrib4(UInt32 index, ref Byte v)
{
@@ -12459,6 +13574,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")]
public static
void VertexAttrib4(Int32 index, ref Byte v)
{
@@ -12472,6 +13588,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")]
public static
unsafe void VertexAttrib4(UInt32 index, Byte* v)
{
@@ -12479,6 +13596,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")]
public static
unsafe void VertexAttrib4(Int32 index, Byte* v)
{
@@ -12486,6 +13604,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")]
public static
void VertexAttrib4(UInt32 index, UInt32[] v)
{
@@ -12498,6 +13617,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")]
public static
void VertexAttrib4(Int32 index, Int32[] v)
{
@@ -12511,6 +13631,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")]
public static
void VertexAttrib4(UInt32 index, ref UInt32 v)
{
@@ -12523,6 +13644,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")]
public static
void VertexAttrib4(Int32 index, ref Int32 v)
{
@@ -12536,6 +13658,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")]
public static
unsafe void VertexAttrib4(UInt32 index, UInt32* v)
{
@@ -12543,6 +13666,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")]
public static
unsafe void VertexAttrib4(Int32 index, Int32* v)
{
@@ -12550,6 +13674,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4usv")]
public static
void VertexAttrib4(UInt32 index, UInt16[] v)
{
@@ -12562,6 +13687,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4usv")]
public static
void VertexAttrib4(Int32 index, Int16[] v)
{
@@ -12575,6 +13701,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4usv")]
public static
void VertexAttrib4(UInt32 index, ref UInt16 v)
{
@@ -12587,6 +13714,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4usv")]
public static
void VertexAttrib4(Int32 index, ref Int16 v)
{
@@ -12600,6 +13728,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4usv")]
public static
unsafe void VertexAttrib4(UInt32 index, UInt16* v)
{
@@ -12607,6 +13736,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttrib4usv")]
public static
unsafe void VertexAttrib4(Int32 index, Int16* v)
{
@@ -12614,6 +13744,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
public static
void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer)
{
@@ -12623,6 +13754,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
public static
void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr pointer)
{
@@ -12633,6 +13765,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
public static
void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerType type, bool normalized, Int32 stride, [In, Out] object pointer)
{
@@ -12650,6 +13783,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
public static
void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerType type, bool normalized, Int32 stride, [In, Out] object pointer)
{
@@ -12667,6 +13801,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")]
public static
void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -12679,6 +13814,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")]
public static
void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -12692,12 +13828,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")]
public static
unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")]
public static
void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -12710,6 +13848,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")]
public static
void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -12723,12 +13862,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")]
public static
unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")]
public static
void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -12741,6 +13882,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")]
public static
void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -12754,12 +13896,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")]
public static
unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")]
public static
void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -12772,6 +13916,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")]
public static
void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -12785,12 +13930,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")]
public static
unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")]
public static
void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -12803,6 +13950,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")]
public static
void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -12816,12 +13964,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")]
public static
unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")]
public static
void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -12834,6 +13984,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")]
public static
void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -12847,251 +13998,2779 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version21", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")]
public static
unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glColorMaski")]
public static
- void PolygonOffsetEXT(Single factor, Single bias)
+ void ColorMask(UInt32 index, bool r, bool g, bool b, bool a)
{
- Delegates.glPolygonOffsetEXT((Single)factor, (Single)bias);
+ Delegates.glColorMaski((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glColorMaski")]
+ public static
+ void ColorMask(Int32 index, bool r, bool g, bool b, bool a)
+ {
+ Delegates.glColorMaski((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetBooleani_v")]
public static
- bool AreTexturesResidentEXT(Int32 n, UInt32[] textures, [Out] bool[] residences)
+ void GetBooleani_(OpenTK.Graphics.Version30 target, UInt32 index, [Out] bool[] data)
{
unsafe
{
- fixed (UInt32* textures_ptr = textures)
- fixed (bool* residences_ptr = residences)
+ fixed (bool* data_ptr = data)
{
- return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr);
+ Delegates.glGetBooleani_v((OpenTK.Graphics.Version30)target, (UInt32)index, (bool*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetBooleani_v")]
public static
- bool AreTexturesResidentEXT(Int32 n, Int32[] textures, [Out] bool[] residences)
+ void GetBooleani_(OpenTK.Graphics.Version30 target, Int32 index, [Out] bool[] data)
{
unsafe
{
- fixed (Int32* textures_ptr = textures)
- fixed (bool* residences_ptr = residences)
+ fixed (bool* data_ptr = data)
{
- return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr);
+ Delegates.glGetBooleani_v((OpenTK.Graphics.Version30)target, (UInt32)index, (bool*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetBooleani_v")]
public static
- bool AreTexturesResidentEXT(Int32 n, ref UInt32 textures, [Out] out bool residences)
+ void GetBooleani_(OpenTK.Graphics.Version30 target, UInt32 index, [Out] out bool data)
{
unsafe
{
- fixed (UInt32* textures_ptr = &textures)
- fixed (bool* residences_ptr = &residences)
+ fixed (bool* data_ptr = &data)
{
- bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr);
- residences = *residences_ptr;
- return retval;
+ Delegates.glGetBooleani_v((OpenTK.Graphics.Version30)target, (UInt32)index, (bool*)data_ptr);
+ data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetBooleani_v")]
public static
- bool AreTexturesResidentEXT(Int32 n, ref Int32 textures, [Out] out bool residences)
+ void GetBooleani_(OpenTK.Graphics.Version30 target, Int32 index, [Out] out bool data)
{
unsafe
{
- fixed (Int32* textures_ptr = &textures)
- fixed (bool* residences_ptr = &residences)
+ fixed (bool* data_ptr = &data)
{
- bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr);
- residences = *residences_ptr;
- return retval;
+ Delegates.glGetBooleani_v((OpenTK.Graphics.Version30)target, (UInt32)index, (bool*)data_ptr);
+ data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetBooleani_v")]
public static
- unsafe bool AreTexturesResidentEXT(Int32 n, UInt32* textures, [Out] bool* residences)
+ unsafe void GetBooleani_(OpenTK.Graphics.Version30 target, UInt32 index, [Out] bool* data)
{
- return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences);
+ Delegates.glGetBooleani_v((OpenTK.Graphics.Version30)target, (UInt32)index, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetBooleani_v")]
public static
- unsafe bool AreTexturesResidentEXT(Int32 n, Int32* textures, [Out] bool* residences)
+ unsafe void GetBooleani_(OpenTK.Graphics.Version30 target, Int32 index, [Out] bool* data)
{
- return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences);
- }
-
- public static
- void ArrayElementEXT(Int32 i)
- {
- Delegates.glArrayElementEXT((Int32)i);
- }
-
- public static
- void TextureLightEXT(OpenTK.Graphics.All pname)
- {
- Delegates.glTextureLightEXT((OpenTK.Graphics.All)pname);
+ Delegates.glGetBooleani_v((OpenTK.Graphics.Version30)target, (UInt32)index, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
public static
- void InsertComponentEXT(UInt32 res, UInt32 src, UInt32 num)
- {
- Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num);
- }
-
- public static
- void InsertComponentEXT(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)
- {
- Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num);
- }
-
- public static
- void ExtractComponentEXT(Int32 res, Int32 src, Int32 num)
- {
- Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num);
- }
-
- [System.CLSCompliant(false)]
- public static
- void SetInvariantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr)
+ void GetIntegeri_(OpenTK.Graphics.Version30 target, UInt32 index, [Out] Int32[] data)
{
unsafe
{
- Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr);
+ fixed (Int32* data_ptr = data)
+ {
+ Delegates.glGetIntegeri_v((OpenTK.Graphics.Version30)target, (UInt32)index, (Int32*)data_ptr);
+ }
}
}
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
public static
- void SetInvariantEXT(Int32 id, OpenTK.Graphics.All type, IntPtr addr)
+ void GetIntegeri_(OpenTK.Graphics.Version30 target, Int32 index, [Out] Int32[] data)
{
unsafe
{
- Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr);
+ fixed (Int32* data_ptr = data)
+ {
+ Delegates.glGetIntegeri_v((OpenTK.Graphics.Version30)target, (UInt32)index, (Int32*)data_ptr);
+ }
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
public static
- void SetInvariantEXT(UInt32 id, OpenTK.Graphics.All type, [In, Out] object addr)
+ void GetIntegeri_(OpenTK.Graphics.Version30 target, UInt32 index, [Out] out Int32 data)
{
unsafe
{
- System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
+ fixed (Int32* data_ptr = &data)
+ {
+ Delegates.glGetIntegeri_v((OpenTK.Graphics.Version30)target, (UInt32)index, (Int32*)data_ptr);
+ data = *data_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
+ public static
+ void GetIntegeri_(OpenTK.Graphics.Version30 target, Int32 index, [Out] out Int32 data)
+ {
+ unsafe
+ {
+ fixed (Int32* data_ptr = &data)
+ {
+ Delegates.glGetIntegeri_v((OpenTK.Graphics.Version30)target, (UInt32)index, (Int32*)data_ptr);
+ data = *data_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
+ public static
+ unsafe void GetIntegeri_(OpenTK.Graphics.Version30 target, UInt32 index, [Out] Int32* data)
+ {
+ Delegates.glGetIntegeri_v((OpenTK.Graphics.Version30)target, (UInt32)index, (Int32*)data);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
+ public static
+ unsafe void GetIntegeri_(OpenTK.Graphics.Version30 target, Int32 index, [Out] Int32* data)
+ {
+ Delegates.glGetIntegeri_v((OpenTK.Graphics.Version30)target, (UInt32)index, (Int32*)data);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glEnablei")]
+ public static
+ void Enable(OpenTK.Graphics.Version30 target, UInt32 index)
+ {
+ Delegates.glEnablei((OpenTK.Graphics.Version30)target, (UInt32)index);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glEnablei")]
+ public static
+ void Enable(OpenTK.Graphics.Version30 target, Int32 index)
+ {
+ Delegates.glEnablei((OpenTK.Graphics.Version30)target, (UInt32)index);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glDisablei")]
+ public static
+ void Disable(OpenTK.Graphics.Version30 target, UInt32 index)
+ {
+ Delegates.glDisablei((OpenTK.Graphics.Version30)target, (UInt32)index);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glDisablei")]
+ public static
+ void Disable(OpenTK.Graphics.Version30 target, Int32 index)
+ {
+ Delegates.glDisablei((OpenTK.Graphics.Version30)target, (UInt32)index);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glIsEnabledi")]
+ public static
+ bool IsEnabled(OpenTK.Graphics.Version30 target, UInt32 index)
+ {
+ return Delegates.glIsEnabledi((OpenTK.Graphics.Version30)target, (UInt32)index);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glIsEnabledi")]
+ public static
+ bool IsEnabled(OpenTK.Graphics.Version30 target, Int32 index)
+ {
+ return Delegates.glIsEnabledi((OpenTK.Graphics.Version30)target, (UInt32)index);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glBeginTransformFeedback")]
+ public static
+ void BeginTransformFeedback(OpenTK.Graphics.Version30 primitiveMode)
+ {
+ Delegates.glBeginTransformFeedback((OpenTK.Graphics.Version30)primitiveMode);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glEndTransformFeedback")]
+ public static
+ void EndTransformFeedback()
+ {
+ Delegates.glEndTransformFeedback();
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glBindBufferRange")]
+ public static
+ void BindBufferRange(OpenTK.Graphics.Version30 target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size)
+ {
+ Delegates.glBindBufferRange((OpenTK.Graphics.Version30)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glBindBufferRange")]
+ public static
+ void BindBufferRange(OpenTK.Graphics.Version30 target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size)
+ {
+ Delegates.glBindBufferRange((OpenTK.Graphics.Version30)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glBindBufferBase")]
+ public static
+ void BindBufferBase(OpenTK.Graphics.Version30 target, UInt32 index, UInt32 buffer)
+ {
+ Delegates.glBindBufferBase((OpenTK.Graphics.Version30)target, (UInt32)index, (UInt32)buffer);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glBindBufferBase")]
+ public static
+ void BindBufferBase(OpenTK.Graphics.Version30 target, Int32 index, Int32 buffer)
+ {
+ Delegates.glBindBufferBase((OpenTK.Graphics.Version30)target, (UInt32)index, (UInt32)buffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")]
+ public static
+ void TransformFeedbackVarying(UInt32 program, Int32 count, Int32[] locations, OpenTK.Graphics.Version30 bufferMode)
+ {
+ unsafe
+ {
+ fixed (Int32* locations_ptr = locations)
+ {
+ Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.Version30)bufferMode);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")]
+ public static
+ void TransformFeedbackVarying(Int32 program, Int32 count, Int32[] locations, OpenTK.Graphics.Version30 bufferMode)
+ {
+ unsafe
+ {
+ fixed (Int32* locations_ptr = locations)
+ {
+ Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.Version30)bufferMode);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")]
+ public static
+ void TransformFeedbackVarying(UInt32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.Version30 bufferMode)
+ {
+ unsafe
+ {
+ fixed (Int32* locations_ptr = &locations)
+ {
+ Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.Version30)bufferMode);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")]
+ public static
+ void TransformFeedbackVarying(Int32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.Version30 bufferMode)
+ {
+ unsafe
+ {
+ fixed (Int32* locations_ptr = &locations)
+ {
+ Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.Version30)bufferMode);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")]
+ public static
+ unsafe void TransformFeedbackVarying(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.Version30 bufferMode)
+ {
+ Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.Version30)bufferMode);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")]
+ public static
+ unsafe void TransformFeedbackVarying(Int32 program, Int32 count, Int32* locations, OpenTK.Graphics.Version30 bufferMode)
+ {
+ Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.Version30)bufferMode);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
+ public static
+ void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] Int32[] location)
+ {
+ unsafe
+ {
+ fixed (Int32* location_ptr = location)
+ {
+ Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32*)location_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
+ public static
+ void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] Int32[] location)
+ {
+ unsafe
+ {
+ fixed (Int32* location_ptr = location)
+ {
+ Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32*)location_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
+ public static
+ void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] out Int32 location)
+ {
+ unsafe
+ {
+ fixed (Int32* location_ptr = &location)
+ {
+ Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32*)location_ptr);
+ location = *location_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
+ public static
+ void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] out Int32 location)
+ {
+ unsafe
+ {
+ fixed (Int32* location_ptr = &location)
+ {
+ Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32*)location_ptr);
+ location = *location_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
+ public static
+ unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] Int32* location)
+ {
+ Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32*)location);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
+ public static
+ unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] Int32* location)
+ {
+ Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32*)location);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClampColor")]
+ public static
+ void ClampColor(OpenTK.Graphics.ClampColorTarget target, OpenTK.Graphics.ClampColorMode clamp)
+ {
+ Delegates.glClampColor((OpenTK.Graphics.ClampColorTarget)target, (OpenTK.Graphics.ClampColorMode)clamp);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glBeginConditionalRender")]
+ public static
+ void BeginConditionalRender(UInt32 id, OpenTK.Graphics.Version30 mode)
+ {
+ Delegates.glBeginConditionalRender((UInt32)id, (OpenTK.Graphics.Version30)mode);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glBeginConditionalRender")]
+ public static
+ void BeginConditionalRender(Int32 id, OpenTK.Graphics.Version30 mode)
+ {
+ Delegates.glBeginConditionalRender((UInt32)id, (OpenTK.Graphics.Version30)mode);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glEndConditionalRender")]
+ public static
+ void EndConditionalRender()
+ {
+ Delegates.glEndConditionalRender();
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1i")]
+ public static
+ void VertexAttribI1(UInt32 index, Int32 x)
+ {
+ Delegates.glVertexAttribI1i((UInt32)index, (Int32)x);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2i")]
+ public static
+ void VertexAttribI2(UInt32 index, Int32 x, Int32 y)
+ {
+ Delegates.glVertexAttribI2i((UInt32)index, (Int32)x, (Int32)y);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3i")]
+ public static
+ void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z)
+ {
+ Delegates.glVertexAttribI3i((UInt32)index, (Int32)x, (Int32)y, (Int32)z);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4i")]
+ public static
+ void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w)
+ {
+ Delegates.glVertexAttribI4i((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1ui")]
+ public static
+ void VertexAttribI1(UInt32 index, UInt32 x)
+ {
+ Delegates.glVertexAttribI1ui((UInt32)index, (UInt32)x);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1ui")]
+ public static
+ void VertexAttribI1(Int32 index, Int32 x)
+ {
+ Delegates.glVertexAttribI1ui((UInt32)index, (UInt32)x);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2ui")]
+ public static
+ void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y)
+ {
+ Delegates.glVertexAttribI2ui((UInt32)index, (UInt32)x, (UInt32)y);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2ui")]
+ public static
+ void VertexAttribI2(Int32 index, Int32 x, Int32 y)
+ {
+ Delegates.glVertexAttribI2ui((UInt32)index, (UInt32)x, (UInt32)y);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3ui")]
+ public static
+ void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z)
+ {
+ Delegates.glVertexAttribI3ui((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3ui")]
+ public static
+ void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z)
+ {
+ Delegates.glVertexAttribI3ui((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4ui")]
+ public static
+ void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w)
+ {
+ Delegates.glVertexAttribI4ui((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4ui")]
+ public static
+ void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w)
+ {
+ Delegates.glVertexAttribI4ui((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1iv")]
+ public static
+ void VertexAttribI1v(UInt32 index, Int32[] v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI1iv((UInt32)index, (Int32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1iv")]
+ public static
+ void VertexAttribI1v(UInt32 index, ref Int32 v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI1iv((UInt32)index, (Int32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1iv")]
+ public static
+ unsafe void VertexAttribI1v(UInt32 index, Int32* v)
+ {
+ Delegates.glVertexAttribI1iv((UInt32)index, (Int32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2iv")]
+ public static
+ void VertexAttribI2(UInt32 index, Int32[] v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2iv")]
+ public static
+ void VertexAttribI2(UInt32 index, ref Int32 v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2iv")]
+ public static
+ unsafe void VertexAttribI2(UInt32 index, Int32* v)
+ {
+ Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3iv")]
+ public static
+ void VertexAttribI3(UInt32 index, Int32[] v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3iv")]
+ public static
+ void VertexAttribI3(UInt32 index, ref Int32 v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3iv")]
+ public static
+ unsafe void VertexAttribI3(UInt32 index, Int32* v)
+ {
+ Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4iv")]
+ public static
+ void VertexAttribI4(UInt32 index, Int32[] v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4iv")]
+ public static
+ void VertexAttribI4(UInt32 index, ref Int32 v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4iv")]
+ public static
+ unsafe void VertexAttribI4(UInt32 index, Int32* v)
+ {
+ Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")]
+ public static
+ void VertexAttribI1v(UInt32 index, UInt32[] v)
+ {
+ unsafe
+ {
+ fixed (UInt32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI1uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")]
+ public static
+ void VertexAttribI1v(Int32 index, Int32[] v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI1uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")]
+ public static
+ void VertexAttribI1v(UInt32 index, ref UInt32 v)
+ {
+ unsafe
+ {
+ fixed (UInt32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI1uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")]
+ public static
+ void VertexAttribI1v(Int32 index, ref Int32 v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI1uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")]
+ public static
+ unsafe void VertexAttribI1v(UInt32 index, UInt32* v)
+ {
+ Delegates.glVertexAttribI1uiv((UInt32)index, (UInt32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")]
+ public static
+ unsafe void VertexAttribI1v(Int32 index, Int32* v)
+ {
+ Delegates.glVertexAttribI1uiv((UInt32)index, (UInt32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")]
+ public static
+ void VertexAttribI2(UInt32 index, UInt32[] v)
+ {
+ unsafe
+ {
+ fixed (UInt32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")]
+ public static
+ void VertexAttribI2(Int32 index, Int32[] v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")]
+ public static
+ void VertexAttribI2(UInt32 index, ref UInt32 v)
+ {
+ unsafe
+ {
+ fixed (UInt32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")]
+ public static
+ void VertexAttribI2(Int32 index, ref Int32 v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")]
+ public static
+ unsafe void VertexAttribI2(UInt32 index, UInt32* v)
+ {
+ Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")]
+ public static
+ unsafe void VertexAttribI2(Int32 index, Int32* v)
+ {
+ Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")]
+ public static
+ void VertexAttribI3(UInt32 index, UInt32[] v)
+ {
+ unsafe
+ {
+ fixed (UInt32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")]
+ public static
+ void VertexAttribI3(Int32 index, Int32[] v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")]
+ public static
+ void VertexAttribI3(UInt32 index, ref UInt32 v)
+ {
+ unsafe
+ {
+ fixed (UInt32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")]
+ public static
+ void VertexAttribI3(Int32 index, ref Int32 v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")]
+ public static
+ unsafe void VertexAttribI3(UInt32 index, UInt32* v)
+ {
+ Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")]
+ public static
+ unsafe void VertexAttribI3(Int32 index, Int32* v)
+ {
+ Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")]
+ public static
+ void VertexAttribI4(UInt32 index, UInt32[] v)
+ {
+ unsafe
+ {
+ fixed (UInt32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")]
+ public static
+ void VertexAttribI4(Int32 index, Int32[] v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = v)
+ {
+ Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")]
+ public static
+ void VertexAttribI4(UInt32 index, ref UInt32 v)
+ {
+ unsafe
+ {
+ fixed (UInt32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")]
+ public static
+ void VertexAttribI4(Int32 index, ref Int32 v)
+ {
+ unsafe
+ {
+ fixed (Int32* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")]
+ public static
+ unsafe void VertexAttribI4(UInt32 index, UInt32* v)
+ {
+ Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")]
+ public static
+ unsafe void VertexAttribI4(Int32 index, Int32* v)
+ {
+ Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4bv")]
+ public static
+ void VertexAttribI4(UInt32 index, SByte[] v)
+ {
+ unsafe
+ {
+ fixed (SByte* v_ptr = v)
+ {
+ Delegates.glVertexAttribI4bv((UInt32)index, (SByte*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4bv")]
+ public static
+ void VertexAttribI4(UInt32 index, ref SByte v)
+ {
+ unsafe
+ {
+ fixed (SByte* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI4bv((UInt32)index, (SByte*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4bv")]
+ public static
+ unsafe void VertexAttribI4(UInt32 index, SByte* v)
+ {
+ Delegates.glVertexAttribI4bv((UInt32)index, (SByte*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4sv")]
+ public static
+ void VertexAttribI4(UInt32 index, Int16[] v)
+ {
+ unsafe
+ {
+ fixed (Int16* v_ptr = v)
+ {
+ Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4sv")]
+ public static
+ void VertexAttribI4(UInt32 index, ref Int16 v)
+ {
+ unsafe
+ {
+ fixed (Int16* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4sv")]
+ public static
+ unsafe void VertexAttribI4(UInt32 index, Int16* v)
+ {
+ Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")]
+ public static
+ void VertexAttribI4(UInt32 index, Byte[] v)
+ {
+ unsafe
+ {
+ fixed (Byte* v_ptr = v)
+ {
+ Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")]
+ public static
+ void VertexAttribI4(Int32 index, Byte[] v)
+ {
+ unsafe
+ {
+ fixed (Byte* v_ptr = v)
+ {
+ Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")]
+ public static
+ void VertexAttribI4(UInt32 index, ref Byte v)
+ {
+ unsafe
+ {
+ fixed (Byte* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")]
+ public static
+ void VertexAttribI4(Int32 index, ref Byte v)
+ {
+ unsafe
+ {
+ fixed (Byte* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")]
+ public static
+ unsafe void VertexAttribI4(UInt32 index, Byte* v)
+ {
+ Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")]
+ public static
+ unsafe void VertexAttribI4(Int32 index, Byte* v)
+ {
+ Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4usv")]
+ public static
+ void VertexAttribI4(UInt32 index, UInt16[] v)
+ {
+ unsafe
+ {
+ fixed (UInt16* v_ptr = v)
+ {
+ Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4usv")]
+ public static
+ void VertexAttribI4(Int32 index, Int16[] v)
+ {
+ unsafe
+ {
+ fixed (Int16* v_ptr = v)
+ {
+ Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4usv")]
+ public static
+ void VertexAttribI4(UInt32 index, ref UInt16 v)
+ {
+ unsafe
+ {
+ fixed (UInt16* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4usv")]
+ public static
+ void VertexAttribI4(Int32 index, ref Int16 v)
+ {
+ unsafe
+ {
+ fixed (Int16* v_ptr = &v)
+ {
+ Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4usv")]
+ public static
+ unsafe void VertexAttribI4(UInt32 index, UInt16* v)
+ {
+ Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribI4usv")]
+ public static
+ unsafe void VertexAttribI4(Int32 index, Int16* v)
+ {
+ Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
+ public static
+ void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.Version30 type, Int32 stride, IntPtr pointer)
+ {
+ unsafe
+ {
+ Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.Version30)type, (Int32)stride, (IntPtr)pointer);
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
+ public static
+ void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.Version30 type, Int32 stride, IntPtr pointer)
+ {
+ unsafe
+ {
+ Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.Version30)type, (Int32)stride, (IntPtr)pointer);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
+ public static
+ void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.Version30 type, Int32 stride, [In, Out] object pointer)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject());
+ Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.Version30)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
- addr_ptr.Free();
+ pointer_ptr.Free();
}
}
}
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
public static
- void SetInvariantEXT(Int32 id, OpenTK.Graphics.All type, [In, Out] object addr)
+ void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.Version30 type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
- System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
+ System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject());
+ Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.Version30)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
- addr_ptr.Free();
+ pointer_ptr.Free();
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")]
public static
- void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr)
+ void GetVertexAttribI(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] Int32[] @params)
{
unsafe
{
- Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr);
- }
- }
-
- public static
- void SetLocalConstantEXT(Int32 id, OpenTK.Graphics.All type, IntPtr addr)
- {
- unsafe
- {
- Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr);
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.All type, [In, Out] object addr)
- {
- unsafe
- {
- System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
- try
+ fixed (Int32* @params_ptr = @params)
{
- Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject());
- }
- finally
- {
- addr_ptr.Free();
- }
- }
- }
-
- public static
- void SetLocalConstantEXT(Int32 id, OpenTK.Graphics.All type, [In, Out] object addr)
- {
- unsafe
- {
- System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
- try
- {
- Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.All)type, (IntPtr)addr_ptr.AddrOfPinnedObject());
- }
- finally
- {
- addr_ptr.Free();
+ Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.Version30)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")]
public static
- IntPtr GetUniformOffsetEXT(UInt32 program, Int32 location)
+ void GetVertexAttribI(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] out Int32 @params)
{
- return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location);
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.Version30)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
}
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")]
public static
- IntPtr GetUniformOffsetEXT(Int32 program, Int32 location)
+ unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] Int32* @params)
{
- return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location);
+ Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.Version30)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")]
+ public static
+ void GetVertexAttribI(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.Version30)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")]
+ public static
+ void GetVertexAttribI(Int32 index, OpenTK.Graphics.Version30 pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.Version30)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")]
+ public static
+ void GetVertexAttribI(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] out UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.Version30)pname, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")]
+ public static
+ void GetVertexAttribI(Int32 index, OpenTK.Graphics.Version30 pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.Version30)pname, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")]
+ public static
+ unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] UInt32* @params)
+ {
+ Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.Version30)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")]
+ public static
+ unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.Version30 pname, [Out] Int32* @params)
+ {
+ Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.Version30)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetUniformuiv")]
+ public static
+ void GetUniform(UInt32 program, Int32 location, [Out] UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetUniformuiv")]
+ public static
+ void GetUniform(Int32 program, Int32 location, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetUniformuiv")]
+ public static
+ void GetUniform(UInt32 program, Int32 location, [Out] out UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetUniformuiv")]
+ public static
+ void GetUniform(Int32 program, Int32 location, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetUniformuiv")]
+ public static
+ unsafe void GetUniform(UInt32 program, Int32 location, [Out] UInt32* @params)
+ {
+ Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetUniformuiv")]
+ public static
+ unsafe void GetUniform(Int32 program, Int32 location, [Out] Int32* @params)
+ {
+ Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glBindFragDataLocation")]
+ public static
+ void BindFragDataLocation(UInt32 program, UInt32 color, System.String name)
+ {
+ Delegates.glBindFragDataLocation((UInt32)program, (UInt32)color, (System.String)name);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glBindFragDataLocation")]
+ public static
+ void BindFragDataLocation(Int32 program, Int32 color, System.String name)
+ {
+ Delegates.glBindFragDataLocation((UInt32)program, (UInt32)color, (System.String)name);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetFragDataLocation")]
+ public static
+ Int32 GetFragDataLocation(UInt32 program, System.String name)
+ {
+ return Delegates.glGetFragDataLocation((UInt32)program, (System.String)name);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetFragDataLocation")]
+ public static
+ Int32 GetFragDataLocation(Int32 program, System.String name)
+ {
+ return Delegates.glGetFragDataLocation((UInt32)program, (System.String)name);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform1ui")]
+ public static
+ void Uniform1(Int32 location, UInt32 v0)
+ {
+ Delegates.glUniform1ui((Int32)location, (UInt32)v0);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform1ui")]
+ public static
+ void Uniform1(Int32 location, Int32 v0)
+ {
+ Delegates.glUniform1ui((Int32)location, (UInt32)v0);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform2ui")]
+ public static
+ void Uniform2(Int32 location, UInt32 v0, UInt32 v1)
+ {
+ Delegates.glUniform2ui((Int32)location, (UInt32)v0, (UInt32)v1);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform2ui")]
+ public static
+ void Uniform2(Int32 location, Int32 v0, Int32 v1)
+ {
+ Delegates.glUniform2ui((Int32)location, (UInt32)v0, (UInt32)v1);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform3ui")]
+ public static
+ void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2)
+ {
+ Delegates.glUniform3ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform3ui")]
+ public static
+ void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2)
+ {
+ Delegates.glUniform3ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform4ui")]
+ public static
+ void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3)
+ {
+ Delegates.glUniform4ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform4ui")]
+ public static
+ void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3)
+ {
+ Delegates.glUniform4ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform1uiv")]
+ public static
+ void Uniform1(Int32 location, Int32 count, UInt32[] value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = value)
+ {
+ Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform1uiv")]
+ public static
+ void Uniform1(Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform1uiv")]
+ public static
+ void Uniform1(Int32 location, Int32 count, ref UInt32 value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = &value)
+ {
+ Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform1uiv")]
+ public static
+ void Uniform1(Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform1uiv")]
+ public static
+ unsafe void Uniform1(Int32 location, Int32 count, UInt32* value)
+ {
+ Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform1uiv")]
+ public static
+ unsafe void Uniform1(Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform2uiv")]
+ public static
+ void Uniform2v(Int32 location, Int32 count, UInt32[] value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = value)
+ {
+ Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform2uiv")]
+ public static
+ void Uniform2v(Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform2uiv")]
+ public static
+ void Uniform2v(Int32 location, Int32 count, ref UInt32 value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = &value)
+ {
+ Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform2uiv")]
+ public static
+ void Uniform2v(Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform2uiv")]
+ public static
+ unsafe void Uniform2v(Int32 location, Int32 count, UInt32* value)
+ {
+ Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform2uiv")]
+ public static
+ unsafe void Uniform2v(Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform3uiv")]
+ public static
+ void Uniform3(Int32 location, Int32 count, UInt32[] value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = value)
+ {
+ Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform3uiv")]
+ public static
+ void Uniform3(Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform3uiv")]
+ public static
+ void Uniform3(Int32 location, Int32 count, ref UInt32 value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = &value)
+ {
+ Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform3uiv")]
+ public static
+ void Uniform3(Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform3uiv")]
+ public static
+ unsafe void Uniform3(Int32 location, Int32 count, UInt32* value)
+ {
+ Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform3uiv")]
+ public static
+ unsafe void Uniform3(Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform4uiv")]
+ public static
+ void Uniform4(Int32 location, Int32 count, UInt32[] value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = value)
+ {
+ Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform4uiv")]
+ public static
+ void Uniform4(Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform4uiv")]
+ public static
+ void Uniform4(Int32 location, Int32 count, ref UInt32 value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = &value)
+ {
+ Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform4uiv")]
+ public static
+ void Uniform4(Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform4uiv")]
+ public static
+ unsafe void Uniform4(Int32 location, Int32 count, UInt32* value)
+ {
+ Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glUniform4uiv")]
+ public static
+ unsafe void Uniform4(Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTexParameterIuiv")]
+ public static
+ void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTexParameterIuiv")]
+ public static
+ void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTexParameterIuiv")]
+ public static
+ void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTexParameterIuiv")]
+ public static
+ void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTexParameterIuiv")]
+ public static
+ unsafe void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params)
+ {
+ Delegates.glTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glTexParameterIuiv")]
+ public static
+ unsafe void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params)
+ {
+ Delegates.glTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")]
+ public static
+ void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glGetTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")]
+ public static
+ void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")]
+ public static
+ void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glGetTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")]
+ public static
+ void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")]
+ public static
+ unsafe void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params)
+ {
+ Delegates.glGetTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetTexParameterIuiv")]
+ public static
+ unsafe void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetTexParameterIuiv((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferuiv")]
+ public static
+ void ClearBuffer(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, UInt32[] value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = value)
+ {
+ Delegates.glClearBufferuiv((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferuiv")]
+ public static
+ void ClearBuffer(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glClearBufferuiv((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferuiv")]
+ public static
+ void ClearBuffer(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, ref UInt32 value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = &value)
+ {
+ Delegates.glClearBufferuiv((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferuiv")]
+ public static
+ void ClearBuffer(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glClearBufferuiv((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferuiv")]
+ public static
+ unsafe void ClearBuffer(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, UInt32* value)
+ {
+ Delegates.glClearBufferuiv((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferuiv")]
+ public static
+ unsafe void ClearBuffer(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Int32* value)
+ {
+ Delegates.glClearBufferuiv((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (UInt32*)value);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferfv")]
+ public static
+ void ClearBuffer(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glClearBufferfv((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferfv")]
+ public static
+ void ClearBuffer(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glClearBufferfv((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferfv")]
+ public static
+ unsafe void ClearBuffer(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Single* value)
+ {
+ Delegates.glClearBufferfv((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (Single*)value);
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glClearBufferfi")]
+ public static
+ void ClearBufferf(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Single depth, Int32 stencil)
+ {
+ Delegates.glClearBufferfi((OpenTK.Graphics.Version30)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetStringi")]
+ public static
+ string GetString(OpenTK.Graphics.Version30 name, UInt32 index)
+ {
+ unsafe
+ {
+ return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(Delegates.glGetStringi((OpenTK.Graphics.Version30)name, (UInt32)index));
+ }
+ }
+
+ [AutoGenerated(Category = "Version30", Version = "3.0", EntryPoint = "glGetStringi")]
+ public static
+ string GetString(OpenTK.Graphics.Version30 name, Int32 index)
+ {
+ unsafe
+ {
+ return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(Delegates.glGetStringi((OpenTK.Graphics.Version30)name, (UInt32)index));
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glIsRenderbuffer")]
+ public static
+ bool IsRenderbuffer(UInt32 renderbuffer)
+ {
+ return Delegates.glIsRenderbuffer((UInt32)renderbuffer);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glIsRenderbuffer")]
+ public static
+ bool IsRenderbuffer(Int32 renderbuffer)
+ {
+ return Delegates.glIsRenderbuffer((UInt32)renderbuffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glBindRenderbuffer")]
+ public static
+ void BindRenderbuffer(OpenTK.Graphics.RenderbufferTarget target, UInt32 renderbuffer)
+ {
+ Delegates.glBindRenderbuffer((OpenTK.Graphics.RenderbufferTarget)target, (UInt32)renderbuffer);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glBindRenderbuffer")]
+ public static
+ void BindRenderbuffer(OpenTK.Graphics.RenderbufferTarget target, Int32 renderbuffer)
+ {
+ Delegates.glBindRenderbuffer((OpenTK.Graphics.RenderbufferTarget)target, (UInt32)renderbuffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")]
+ public static
+ void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers)
+ {
+ unsafe
+ {
+ fixed (UInt32* renderbuffers_ptr = renderbuffers)
+ {
+ Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")]
+ public static
+ void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers)
+ {
+ unsafe
+ {
+ fixed (Int32* renderbuffers_ptr = renderbuffers)
+ {
+ Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")]
+ public static
+ void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers)
+ {
+ unsafe
+ {
+ fixed (UInt32* renderbuffers_ptr = &renderbuffers)
+ {
+ Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")]
+ public static
+ void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers)
+ {
+ unsafe
+ {
+ fixed (Int32* renderbuffers_ptr = &renderbuffers)
+ {
+ Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")]
+ public static
+ unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers)
+ {
+ Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")]
+ public static
+ unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers)
+ {
+ Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenRenderbuffers")]
+ public static
+ void GenRenderbuffers(Int32 n, [Out] UInt32[] renderbuffers)
+ {
+ unsafe
+ {
+ fixed (UInt32* renderbuffers_ptr = renderbuffers)
+ {
+ Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenRenderbuffers")]
+ public static
+ void GenRenderbuffers(Int32 n, [Out] Int32[] renderbuffers)
+ {
+ unsafe
+ {
+ fixed (Int32* renderbuffers_ptr = renderbuffers)
+ {
+ Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenRenderbuffers")]
+ public static
+ void GenRenderbuffers(Int32 n, [Out] out UInt32 renderbuffers)
+ {
+ unsafe
+ {
+ fixed (UInt32* renderbuffers_ptr = &renderbuffers)
+ {
+ Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr);
+ renderbuffers = *renderbuffers_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenRenderbuffers")]
+ public static
+ void GenRenderbuffers(Int32 n, [Out] out Int32 renderbuffers)
+ {
+ unsafe
+ {
+ fixed (Int32* renderbuffers_ptr = &renderbuffers)
+ {
+ Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr);
+ renderbuffers = *renderbuffers_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenRenderbuffers")]
+ public static
+ unsafe void GenRenderbuffers(Int32 n, [Out] UInt32* renderbuffers)
+ {
+ Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenRenderbuffers")]
+ public static
+ unsafe void GenRenderbuffers(Int32 n, [Out] Int32* renderbuffers)
+ {
+ Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glRenderbufferStorage")]
+ public static
+ void RenderbufferStorage(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferStorage internalformat, Int32 width, Int32 height)
+ {
+ Delegates.glRenderbufferStorage((OpenTK.Graphics.RenderbufferTarget)target, (OpenTK.Graphics.RenderbufferStorage)internalformat, (Int32)width, (Int32)height);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")]
+ public static
+ void GetRenderbufferParameter(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.RenderbufferTarget)target, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")]
+ public static
+ void GetRenderbufferParameter(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.RenderbufferTarget)target, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGetRenderbufferParameteriv")]
+ public static
+ unsafe void GetRenderbufferParameter(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32* @params)
+ {
+ Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.RenderbufferTarget)target, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glIsFramebuffer")]
+ public static
+ bool IsFramebuffer(UInt32 framebuffer)
+ {
+ return Delegates.glIsFramebuffer((UInt32)framebuffer);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glIsFramebuffer")]
+ public static
+ bool IsFramebuffer(Int32 framebuffer)
+ {
+ return Delegates.glIsFramebuffer((UInt32)framebuffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glBindFramebuffer")]
+ public static
+ void BindFramebuffer(OpenTK.Graphics.FramebufferTarget target, UInt32 framebuffer)
+ {
+ Delegates.glBindFramebuffer((OpenTK.Graphics.FramebufferTarget)target, (UInt32)framebuffer);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glBindFramebuffer")]
+ public static
+ void BindFramebuffer(OpenTK.Graphics.FramebufferTarget target, Int32 framebuffer)
+ {
+ Delegates.glBindFramebuffer((OpenTK.Graphics.FramebufferTarget)target, (UInt32)framebuffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteFramebuffers")]
+ public static
+ void DeleteFramebuffers(Int32 n, UInt32[] framebuffers)
+ {
+ unsafe
+ {
+ fixed (UInt32* framebuffers_ptr = framebuffers)
+ {
+ Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteFramebuffers")]
+ public static
+ void DeleteFramebuffers(Int32 n, Int32[] framebuffers)
+ {
+ unsafe
+ {
+ fixed (Int32* framebuffers_ptr = framebuffers)
+ {
+ Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteFramebuffers")]
+ public static
+ void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers)
+ {
+ unsafe
+ {
+ fixed (UInt32* framebuffers_ptr = &framebuffers)
+ {
+ Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteFramebuffers")]
+ public static
+ void DeleteFramebuffers(Int32 n, ref Int32 framebuffers)
+ {
+ unsafe
+ {
+ fixed (Int32* framebuffers_ptr = &framebuffers)
+ {
+ Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteFramebuffers")]
+ public static
+ unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers)
+ {
+ Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glDeleteFramebuffers")]
+ public static
+ unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers)
+ {
+ Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenFramebuffers")]
+ public static
+ void GenFramebuffers(Int32 n, [Out] UInt32[] framebuffers)
+ {
+ unsafe
+ {
+ fixed (UInt32* framebuffers_ptr = framebuffers)
+ {
+ Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenFramebuffers")]
+ public static
+ void GenFramebuffers(Int32 n, [Out] Int32[] framebuffers)
+ {
+ unsafe
+ {
+ fixed (Int32* framebuffers_ptr = framebuffers)
+ {
+ Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenFramebuffers")]
+ public static
+ void GenFramebuffers(Int32 n, [Out] out UInt32 framebuffers)
+ {
+ unsafe
+ {
+ fixed (UInt32* framebuffers_ptr = &framebuffers)
+ {
+ Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr);
+ framebuffers = *framebuffers_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenFramebuffers")]
+ public static
+ void GenFramebuffers(Int32 n, [Out] out Int32 framebuffers)
+ {
+ unsafe
+ {
+ fixed (Int32* framebuffers_ptr = &framebuffers)
+ {
+ Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr);
+ framebuffers = *framebuffers_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenFramebuffers")]
+ public static
+ unsafe void GenFramebuffers(Int32 n, [Out] UInt32* framebuffers)
+ {
+ Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenFramebuffers")]
+ public static
+ unsafe void GenFramebuffers(Int32 n, [Out] Int32* framebuffers)
+ {
+ Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glCheckFramebufferStatus")]
+ public static
+ OpenTK.Graphics.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.FramebufferTarget target)
+ {
+ return Delegates.glCheckFramebufferStatus((OpenTK.Graphics.FramebufferTarget)target);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferTexture1D")]
+ public static
+ void FramebufferTexture1D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level)
+ {
+ Delegates.glFramebufferTexture1D((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferTexture1D")]
+ public static
+ void FramebufferTexture1D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level)
+ {
+ Delegates.glFramebufferTexture1D((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferTexture2D")]
+ public static
+ void FramebufferTexture2D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level)
+ {
+ Delegates.glFramebufferTexture2D((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferTexture2D")]
+ public static
+ void FramebufferTexture2D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level)
+ {
+ Delegates.glFramebufferTexture2D((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferTexture3D")]
+ public static
+ void FramebufferTexture3D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset)
+ {
+ Delegates.glFramebufferTexture3D((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferTexture3D")]
+ public static
+ void FramebufferTexture3D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset)
+ {
+ Delegates.glFramebufferTexture3D((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")]
+ public static
+ void FramebufferRenderbuffer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer)
+ {
+ Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferRenderbuffer")]
+ public static
+ void FramebufferRenderbuffer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, Int32 renderbuffer)
+ {
+ Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")]
+ public static
+ void GetFramebufferAttachmentParameter(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.FramebufferParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")]
+ public static
+ void GetFramebufferAttachmentParameter(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.FramebufferParameterName)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")]
+ public static
+ unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] Int32* @params)
+ {
+ Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.FramebufferParameterName)pname, (Int32*)@params);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glGenerate")]
+ public static
+ void Generate(OpenTK.Graphics.GenerateMipmapTarget target)
+ {
+ Delegates.glGenerate((OpenTK.Graphics.GenerateMipmapTarget)target);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glBlitFramebuffer")]
+ public static
+ void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ClearBufferMask mask, OpenTK.Graphics.BlitFramebufferFilter filter)
+ {
+ Delegates.glBlitFramebuffer((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ClearBufferMask)mask, (OpenTK.Graphics.BlitFramebufferFilter)filter);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")]
+ public static
+ void RenderbufferStorageMultisample(OpenTK.Graphics.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.RenderbufferStorage internalformat, Int32 width, Int32 height)
+ {
+ Delegates.glRenderbufferStorageMultisample((OpenTK.Graphics.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.RenderbufferStorage)internalformat, (Int32)width, (Int32)height);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")]
+ public static
+ void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer)
+ {
+ Delegates.glFramebufferTextureLayer((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer);
+ }
+
+ [AutoGenerated(Category = "ArbFramebufferObject", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")]
+ public static
+ void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer)
+ {
+ Delegates.glFramebufferTextureLayer((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbInstancedArrays", Version = "2.0", EntryPoint = "glVertexAttribDivisor")]
+ public static
+ void VertexAttribDivisor(UInt32 index, UInt32 divisor)
+ {
+ Delegates.glVertexAttribDivisor((UInt32)index, (UInt32)divisor);
+ }
+
+ [AutoGenerated(Category = "ArbInstancedArrays", Version = "2.0", EntryPoint = "glVertexAttribDivisor")]
+ public static
+ void VertexAttribDivisor(Int32 index, Int32 divisor)
+ {
+ Delegates.glVertexAttribDivisor((UInt32)index, (UInt32)divisor);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMapBufferRange", Version = "3.0", EntryPoint = "glMapBufferRange")]
+ public static
+ void MapBufferRange(OpenTK.Graphics.ArbMapBufferRange target, IntPtr offset, IntPtr length, UInt32 access)
+ {
+ Delegates.glMapBufferRange((OpenTK.Graphics.ArbMapBufferRange)target, (IntPtr)offset, (IntPtr)length, (UInt32)access);
+ }
+
+ [AutoGenerated(Category = "ArbMapBufferRange", Version = "3.0", EntryPoint = "glMapBufferRange")]
+ public static
+ void MapBufferRange(OpenTK.Graphics.ArbMapBufferRange target, IntPtr offset, IntPtr length, Int32 access)
+ {
+ Delegates.glMapBufferRange((OpenTK.Graphics.ArbMapBufferRange)target, (IntPtr)offset, (IntPtr)length, (UInt32)access);
+ }
+
+ [AutoGenerated(Category = "ArbMapBufferRange", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")]
+ public static
+ void FlushMappedBufferRange(OpenTK.Graphics.ArbMapBufferRange target, IntPtr offset, IntPtr length)
+ {
+ Delegates.glFlushMappedBufferRange((OpenTK.Graphics.ArbMapBufferRange)target, (IntPtr)offset, (IntPtr)length);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glBindVertexArray")]
+ public static
+ void BindVertexArray(UInt32 array)
+ {
+ Delegates.glBindVertexArray((UInt32)array);
+ }
+
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glBindVertexArray")]
+ public static
+ void BindVertexArray(Int32 array)
+ {
+ Delegates.glBindVertexArray((UInt32)array);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glDeleteVertexArrays")]
+ public static
+ void DeleteVertexArrays(Int32 n, UInt32[] arrays)
+ {
+ unsafe
+ {
+ fixed (UInt32* arrays_ptr = arrays)
+ {
+ Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glDeleteVertexArrays")]
+ public static
+ void DeleteVertexArrays(Int32 n, Int32[] arrays)
+ {
+ unsafe
+ {
+ fixed (Int32* arrays_ptr = arrays)
+ {
+ Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glDeleteVertexArrays")]
+ public static
+ void DeleteVertexArrays(Int32 n, ref UInt32 arrays)
+ {
+ unsafe
+ {
+ fixed (UInt32* arrays_ptr = &arrays)
+ {
+ Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glDeleteVertexArrays")]
+ public static
+ void DeleteVertexArrays(Int32 n, ref Int32 arrays)
+ {
+ unsafe
+ {
+ fixed (Int32* arrays_ptr = &arrays)
+ {
+ Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glDeleteVertexArrays")]
+ public static
+ unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays)
+ {
+ Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glDeleteVertexArrays")]
+ public static
+ unsafe void DeleteVertexArrays(Int32 n, Int32* arrays)
+ {
+ Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glGenVertexArrays")]
+ public static
+ void GenVertexArrays(Int32 n, [Out] UInt32[] arrays)
+ {
+ unsafe
+ {
+ fixed (UInt32* arrays_ptr = arrays)
+ {
+ Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glGenVertexArrays")]
+ public static
+ void GenVertexArrays(Int32 n, [Out] Int32[] arrays)
+ {
+ unsafe
+ {
+ fixed (Int32* arrays_ptr = arrays)
+ {
+ Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glGenVertexArrays")]
+ public static
+ void GenVertexArrays(Int32 n, [Out] out UInt32 arrays)
+ {
+ unsafe
+ {
+ fixed (UInt32* arrays_ptr = &arrays)
+ {
+ Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr);
+ arrays = *arrays_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glGenVertexArrays")]
+ public static
+ void GenVertexArrays(Int32 n, [Out] out Int32 arrays)
+ {
+ unsafe
+ {
+ fixed (Int32* arrays_ptr = &arrays)
+ {
+ Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr);
+ arrays = *arrays_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glGenVertexArrays")]
+ public static
+ unsafe void GenVertexArrays(Int32 n, [Out] UInt32* arrays)
+ {
+ Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glGenVertexArrays")]
+ public static
+ unsafe void GenVertexArrays(Int32 n, [Out] Int32* arrays)
+ {
+ Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glIsVertexArray")]
+ public static
+ bool IsVertexArray(UInt32 array)
+ {
+ return Delegates.glIsVertexArray((UInt32)array);
+ }
+
+ [AutoGenerated(Category = "ArbVertexArrayObject", Version = "3.0", EntryPoint = "glIsVertexArray")]
+ public static
+ bool IsVertexArray(Int32 array)
+ {
+ return Delegates.glIsVertexArray((UInt32)array);
}
public static partial class NV
{
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetBooleanv")]
public static
void GetBoolea(OpenTK.Graphics.GetPName pname, [Out] bool[] @params)
{
@@ -13104,6 +16783,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetBooleanv")]
public static
void GetBoolea(OpenTK.Graphics.GetPName pname, [Out] out bool @params)
{
@@ -13118,18 +16798,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "StateReq", Version = "1.0", EntryPoint = "glGetBooleanv")]
public static
unsafe void GetBoolea(OpenTK.Graphics.GetPName pname, [Out] bool* @params)
{
Delegates.glGetBooleanv((OpenTK.Graphics.GetPName)pname, (bool*)@params);
}
+ [AutoGenerated(Category = "NvVertexArrayRange", Version = "1.1", EntryPoint = "glFlushVertexArrayRangeNV")]
public static
void FlushVertexArrayRange()
{
Delegates.glFlushVertexArrayRangeNV();
}
+ [AutoGenerated(Category = "NvVertexArrayRange", Version = "1.1", EntryPoint = "glVertexArrayRangeNV")]
public static
void VertexArrayRange(Int32 length, IntPtr pointer)
{
@@ -13139,6 +16822,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexArrayRange", Version = "1.1", EntryPoint = "glVertexArrayRangeNV")]
public static
void VertexArrayRange(Int32 length, [In, Out] object pointer)
{
@@ -13156,291 +16840,321 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerParameterfvNV")]
public static
- void CombinerParameterv(OpenTK.Graphics.All pname, Single[] @params)
+ void CombinerParameterv(OpenTK.Graphics.NvRegisterCombiners pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glCombinerParameterfvNV((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glCombinerParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerParameterfvNV")]
public static
- void CombinerParameterv(OpenTK.Graphics.All pname, ref Single @params)
+ void CombinerParameterv(OpenTK.Graphics.NvRegisterCombiners pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glCombinerParameterfvNV((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glCombinerParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerParameterfvNV")]
public static
- unsafe void CombinerParameterv(OpenTK.Graphics.All pname, Single* @params)
+ unsafe void CombinerParameterv(OpenTK.Graphics.NvRegisterCombiners pname, Single* @params)
{
- Delegates.glCombinerParameterfvNV((OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glCombinerParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerParameterfNV")]
public static
- void CombinerParameter(OpenTK.Graphics.All pname, Single param)
+ void CombinerParameter(OpenTK.Graphics.NvRegisterCombiners pname, Single param)
{
- Delegates.glCombinerParameterfNV((OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glCombinerParameterfNV((OpenTK.Graphics.NvRegisterCombiners)pname, (Single)param);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerParameterivNV")]
public static
- void CombinerParameterv(OpenTK.Graphics.All pname, Int32[] @params)
+ void CombinerParameterv(OpenTK.Graphics.NvRegisterCombiners pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glCombinerParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glCombinerParameterivNV((OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerParameterivNV")]
public static
- void CombinerParameterv(OpenTK.Graphics.All pname, ref Int32 @params)
+ void CombinerParameterv(OpenTK.Graphics.NvRegisterCombiners pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glCombinerParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glCombinerParameterivNV((OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerParameterivNV")]
public static
- unsafe void CombinerParameterv(OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void CombinerParameterv(OpenTK.Graphics.NvRegisterCombiners pname, Int32* @params)
{
- Delegates.glCombinerParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glCombinerParameterivNV((OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerParameteriNV")]
public static
- void CombinerParameter(OpenTK.Graphics.All pname, Int32 param)
+ void CombinerParameter(OpenTK.Graphics.NvRegisterCombiners pname, Int32 param)
{
- Delegates.glCombinerParameteriNV((OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glCombinerParameteriNV((OpenTK.Graphics.NvRegisterCombiners)pname, (Int32)param);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerInputNV")]
public static
- void CombinerInput(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All input, OpenTK.Graphics.All mapping, OpenTK.Graphics.All componentUsage)
+ void CombinerInput(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners input, OpenTK.Graphics.NvRegisterCombiners mapping, OpenTK.Graphics.NvRegisterCombiners componentUsage)
{
- Delegates.glCombinerInputNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)input, (OpenTK.Graphics.All)mapping, (OpenTK.Graphics.All)componentUsage);
+ Delegates.glCombinerInputNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)input, (OpenTK.Graphics.NvRegisterCombiners)mapping, (OpenTK.Graphics.NvRegisterCombiners)componentUsage);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glCombinerOutputNV")]
public static
- void CombinerOutput(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All abOutput, OpenTK.Graphics.All cdOutput, OpenTK.Graphics.All sumOutput, OpenTK.Graphics.All scale, OpenTK.Graphics.All bias, bool abDotProduct, bool cdDotProduct, bool muxSum)
+ void CombinerOutput(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners abOutput, OpenTK.Graphics.NvRegisterCombiners cdOutput, OpenTK.Graphics.NvRegisterCombiners sumOutput, OpenTK.Graphics.NvRegisterCombiners scale, OpenTK.Graphics.NvRegisterCombiners bias, bool abDotProduct, bool cdDotProduct, bool muxSum)
{
- Delegates.glCombinerOutputNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)abOutput, (OpenTK.Graphics.All)cdOutput, (OpenTK.Graphics.All)sumOutput, (OpenTK.Graphics.All)scale, (OpenTK.Graphics.All)bias, (bool)abDotProduct, (bool)cdDotProduct, (bool)muxSum);
+ Delegates.glCombinerOutputNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)abOutput, (OpenTK.Graphics.NvRegisterCombiners)cdOutput, (OpenTK.Graphics.NvRegisterCombiners)sumOutput, (OpenTK.Graphics.NvRegisterCombiners)scale, (OpenTK.Graphics.NvRegisterCombiners)bias, (bool)abDotProduct, (bool)cdDotProduct, (bool)muxSum);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glFinalCombinerInputNV")]
public static
- void FinalCombinerInput(OpenTK.Graphics.All variable, OpenTK.Graphics.All input, OpenTK.Graphics.All mapping, OpenTK.Graphics.All componentUsage)
+ void FinalCombinerInput(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners input, OpenTK.Graphics.NvRegisterCombiners mapping, OpenTK.Graphics.NvRegisterCombiners componentUsage)
{
- Delegates.glFinalCombinerInputNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)input, (OpenTK.Graphics.All)mapping, (OpenTK.Graphics.All)componentUsage);
+ Delegates.glFinalCombinerInputNV((OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)input, (OpenTK.Graphics.NvRegisterCombiners)mapping, (OpenTK.Graphics.NvRegisterCombiners)componentUsage);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerInputParameterfvNV")]
public static
- void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerInputParameterfvNV")]
public static
- void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerInputParameterfvNV")]
public static
- unsafe void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Single* @params)
{
- Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerInputParameterivNV")]
public static
- void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerInputParameterivNV")]
public static
- void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerInputParameterivNV")]
public static
- unsafe void GetCombinerInputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Int32* @params)
{
- Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerOutputParameterfvNV")]
public static
- void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetCombinerOutputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerOutputParameterfvNV")]
public static
- void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetCombinerOutputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerOutputParameterfvNV")]
public static
- unsafe void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetCombinerOutputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Single* @params)
{
- Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerOutputParameterivNV")]
public static
- void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetCombinerOutputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerOutputParameterivNV")]
public static
- void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetCombinerOutputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetCombinerOutputParameterivNV")]
public static
- unsafe void GetCombinerOutputParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetCombinerOutputParameter(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Int32* @params)
{
- Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)portion, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.NvRegisterCombiners)stage, (OpenTK.Graphics.NvRegisterCombiners)portion, (OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetFinalCombinerInputParameterfvNV")]
public static
- void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetFinalCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetFinalCombinerInputParameterfvNV")]
public static
- void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetFinalCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetFinalCombinerInputParameterfvNV")]
public static
- unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Single* @params)
{
- Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetFinalCombinerInputParameterivNV")]
public static
- void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetFinalCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetFinalCombinerInputParameterivNV")]
public static
- void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetFinalCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners", Version = "1.1", EntryPoint = "glGetFinalCombinerInputParameterivNV")]
public static
- unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Int32* @params)
{
- Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.All)variable, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.NvRegisterCombiners)variable, (OpenTK.Graphics.NvRegisterCombiners)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glDeleteFencesNV")]
public static
void DeleteFences(Int32 n, UInt32[] fences)
{
@@ -13453,6 +17167,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glDeleteFencesNV")]
public static
void DeleteFences(Int32 n, Int32[] fences)
{
@@ -13466,6 +17181,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glDeleteFencesNV")]
public static
void DeleteFences(Int32 n, ref UInt32 fences)
{
@@ -13478,6 +17194,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glDeleteFencesNV")]
public static
void DeleteFences(Int32 n, ref Int32 fences)
{
@@ -13491,6 +17208,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glDeleteFencesNV")]
public static
unsafe void DeleteFences(Int32 n, UInt32* fences)
{
@@ -13498,6 +17216,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glDeleteFencesNV")]
public static
unsafe void DeleteFences(Int32 n, Int32* fences)
{
@@ -13505,6 +17224,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGenFencesNV")]
public static
void GenFences(Int32 n, [Out] UInt32[] fences)
{
@@ -13517,6 +17237,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGenFencesNV")]
public static
void GenFences(Int32 n, [Out] Int32[] fences)
{
@@ -13530,6 +17251,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGenFencesNV")]
public static
void GenFences(Int32 n, [Out] out UInt32 fences)
{
@@ -13543,6 +17265,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGenFencesNV")]
public static
void GenFences(Int32 n, [Out] out Int32 fences)
{
@@ -13557,6 +17280,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGenFencesNV")]
public static
unsafe void GenFences(Int32 n, [Out] UInt32* fences)
{
@@ -13564,6 +17288,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGenFencesNV")]
public static
unsafe void GenFences(Int32 n, [Out] Int32* fences)
{
@@ -13571,12 +17296,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glIsFenceNV")]
public static
bool IsFence(UInt32 fence)
{
return Delegates.glIsFenceNV((UInt32)fence);
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glIsFenceNV")]
public static
bool IsFence(Int32 fence)
{
@@ -13584,12 +17311,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glTestFenceNV")]
public static
bool TestFence(UInt32 fence)
{
return Delegates.glTestFenceNV((UInt32)fence);
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glTestFenceNV")]
public static
bool TestFence(Int32 fence)
{
@@ -13597,78 +17326,86 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGetFenceivNV")]
public static
- void GetFence(UInt32 fence, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetFence(UInt32 fence, OpenTK.Graphics.NvFence pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.NvFence)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGetFenceivNV")]
public static
- void GetFence(Int32 fence, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetFence(Int32 fence, OpenTK.Graphics.NvFence pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.NvFence)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGetFenceivNV")]
public static
- void GetFence(UInt32 fence, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetFence(UInt32 fence, OpenTK.Graphics.NvFence pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.NvFence)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGetFenceivNV")]
public static
- void GetFence(Int32 fence, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetFence(Int32 fence, OpenTK.Graphics.NvFence pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.NvFence)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGetFenceivNV")]
public static
- unsafe void GetFence(UInt32 fence, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetFence(UInt32 fence, OpenTK.Graphics.NvFence pname, [Out] Int32* @params)
{
- Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.NvFence)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glGetFenceivNV")]
public static
- unsafe void GetFence(Int32 fence, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetFence(Int32 fence, OpenTK.Graphics.NvFence pname, [Out] Int32* @params)
{
- Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.NvFence)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glFinishFenceNV")]
public static
void FinishFence(UInt32 fence)
{
Delegates.glFinishFenceNV((UInt32)fence);
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glFinishFenceNV")]
public static
void FinishFence(Int32 fence)
{
@@ -13676,47 +17413,52 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glSetFenceNV")]
public static
- void SetFence(UInt32 fence, OpenTK.Graphics.All condition)
+ void SetFence(UInt32 fence, OpenTK.Graphics.NvFence condition)
{
- Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.All)condition);
+ Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.NvFence)condition);
}
+ [AutoGenerated(Category = "NvFence", Version = "1.2", EntryPoint = "glSetFenceNV")]
public static
- void SetFence(Int32 fence, OpenTK.Graphics.All condition)
+ void SetFence(Int32 fence, OpenTK.Graphics.NvFence condition)
{
- Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.All)condition);
+ Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.NvFence)condition);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapControlPointsNV")]
public static
- void MapControlPoints(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points)
+ void MapControlPoints(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points)
{
unsafe
{
- Delegates.glMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points);
+ Delegates.glMapControlPointsNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points);
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapControlPointsNV")]
public static
- void MapControlPoints(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points)
+ void MapControlPoints(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points)
{
unsafe
{
- Delegates.glMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points);
+ Delegates.glMapControlPointsNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points);
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapControlPointsNV")]
public static
- void MapControlPoints(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points)
+ void MapControlPoints(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points)
{
unsafe
{
System.Runtime.InteropServices.GCHandle points_ptr = System.Runtime.InteropServices.GCHandle.Alloc(points, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject());
+ Delegates.glMapControlPointsNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject());
}
finally
{
@@ -13725,15 +17467,16 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapControlPointsNV")]
public static
- void MapControlPoints(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points)
+ void MapControlPoints(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, [In, Out] object points)
{
unsafe
{
System.Runtime.InteropServices.GCHandle points_ptr = System.Runtime.InteropServices.GCHandle.Alloc(points, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject());
+ Delegates.glMapControlPointsNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject());
}
finally
{
@@ -13742,97 +17485,106 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapParameterivNV")]
public static
- void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params)
+ void MapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glMapParameterivNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapParameterivNV")]
public static
- void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params)
+ void MapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glMapParameterivNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapParameterivNV")]
public static
- unsafe void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void MapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, Int32* @params)
{
- Delegates.glMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glMapParameterivNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapParameterfvNV")]
public static
- void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params)
+ void MapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glMapParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapParameterfvNV")]
public static
- void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params)
+ void MapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glMapParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glMapParameterfvNV")]
public static
- unsafe void MapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params)
+ unsafe void MapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, Single* @params)
{
- Delegates.glMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glMapParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapControlPointsNV")]
public static
- void GetMapControlPoints(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points)
+ void GetMapControlPoints(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points)
{
unsafe
{
- Delegates.glGetMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points);
+ Delegates.glGetMapControlPointsNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points);
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapControlPointsNV")]
public static
- void GetMapControlPoints(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points)
+ void GetMapControlPoints(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points)
{
unsafe
{
- Delegates.glGetMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points);
+ Delegates.glGetMapControlPointsNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points);
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapControlPointsNV")]
public static
- void GetMapControlPoints(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points)
+ void GetMapControlPoints(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points)
{
unsafe
{
System.Runtime.InteropServices.GCHandle points_ptr = System.Runtime.InteropServices.GCHandle.Alloc(points, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject());
+ Delegates.glGetMapControlPointsNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject());
}
finally
{
@@ -13841,15 +17593,16 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapControlPointsNV")]
public static
- void GetMapControlPoints(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points)
+ void GetMapControlPoints(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [In, Out] object points)
{
unsafe
{
System.Runtime.InteropServices.GCHandle points_ptr = System.Runtime.InteropServices.GCHandle.Alloc(points, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetMapControlPointsNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject());
+ Delegates.glGetMapControlPointsNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject());
}
finally
{
@@ -13858,272 +17611,298 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapParameterivNV")]
public static
- void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetMapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMapParameterivNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapParameterivNV")]
public static
- void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetMapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMapParameterivNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapParameterivNV")]
public static
- unsafe void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetMapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, [Out] Int32* @params)
{
- Delegates.glGetMapParameterivNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetMapParameterivNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapParameterfvNV")]
public static
- void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetMapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMapParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapParameterfvNV")]
public static
- void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetMapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMapParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapParameterfvNV")]
public static
- unsafe void GetMapParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetMapParameter(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, [Out] Single* @params)
{
- Delegates.glGetMapParameterfvNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetMapParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterivNV")]
public static
- void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterivNV")]
public static
- void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterivNV")]
public static
- void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterivNV")]
public static
- void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterivNV")]
public static
- unsafe void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Int32* @params)
{
- Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterivNV")]
public static
- unsafe void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Int32* @params)
{
- Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterfvNV")]
public static
- void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterfvNV")]
public static
- void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterfvNV")]
public static
- void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterfvNV")]
public static
- void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterfvNV")]
public static
- unsafe void GetMapAttribParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Single* @params)
{
- Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glGetMapAttribParameterfvNV")]
public static
- unsafe void GetMapAttribParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetMapAttribParameter(OpenTK.Graphics.NvEvaluators target, Int32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Single* @params)
{
- Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.NvEvaluators)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "NvEvaluators", Version = "1.1", EntryPoint = "glEvalMapsNV")]
public static
- void EvalMap(OpenTK.Graphics.All target, OpenTK.Graphics.All mode)
+ void EvalMap(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators mode)
{
- Delegates.glEvalMapsNV((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)mode);
+ Delegates.glEvalMapsNV((OpenTK.Graphics.NvEvaluators)target, (OpenTK.Graphics.NvEvaluators)mode);
}
+ [AutoGenerated(Category = "NvRegisterCombiners2", Version = "1.1", EntryPoint = "glCombinerStageParameterfvNV")]
public static
- void CombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, Single[] @params)
+ void CombinerStageParameter(OpenTK.Graphics.NvRegisterCombiners2 stage, OpenTK.Graphics.NvRegisterCombiners2 pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.NvRegisterCombiners2)stage, (OpenTK.Graphics.NvRegisterCombiners2)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners2", Version = "1.1", EntryPoint = "glCombinerStageParameterfvNV")]
public static
- void CombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, ref Single @params)
+ void CombinerStageParameter(OpenTK.Graphics.NvRegisterCombiners2 stage, OpenTK.Graphics.NvRegisterCombiners2 pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.NvRegisterCombiners2)stage, (OpenTK.Graphics.NvRegisterCombiners2)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners2", Version = "1.1", EntryPoint = "glCombinerStageParameterfvNV")]
public static
- unsafe void CombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, Single* @params)
+ unsafe void CombinerStageParameter(OpenTK.Graphics.NvRegisterCombiners2 stage, OpenTK.Graphics.NvRegisterCombiners2 pname, Single* @params)
{
- Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.NvRegisterCombiners2)stage, (OpenTK.Graphics.NvRegisterCombiners2)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "NvRegisterCombiners2", Version = "1.1", EntryPoint = "glGetCombinerStageParameterfvNV")]
public static
- void GetCombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetCombinerStageParameter(OpenTK.Graphics.NvRegisterCombiners2 stage, OpenTK.Graphics.NvRegisterCombiners2 pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.NvRegisterCombiners2)stage, (OpenTK.Graphics.NvRegisterCombiners2)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvRegisterCombiners2", Version = "1.1", EntryPoint = "glGetCombinerStageParameterfvNV")]
public static
- void GetCombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetCombinerStageParameter(OpenTK.Graphics.NvRegisterCombiners2 stage, OpenTK.Graphics.NvRegisterCombiners2 pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.NvRegisterCombiners2)stage, (OpenTK.Graphics.NvRegisterCombiners2)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvRegisterCombiners2", Version = "1.1", EntryPoint = "glGetCombinerStageParameterfvNV")]
public static
- unsafe void GetCombinerStageParameter(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetCombinerStageParameter(OpenTK.Graphics.NvRegisterCombiners2 stage, OpenTK.Graphics.NvRegisterCombiners2 pname, [Out] Single* @params)
{
- Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.All)stage, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.NvRegisterCombiners2)stage, (OpenTK.Graphics.NvRegisterCombiners2)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glAreProgramsResidentNV")]
public static
bool AreProgramsResident(Int32 n, UInt32[] programs, [Out] bool[] residences)
{
@@ -14137,6 +17916,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glAreProgramsResidentNV")]
public static
bool AreProgramsResident(Int32 n, Int32[] programs, [Out] bool[] residences)
{
@@ -14151,6 +17931,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glAreProgramsResidentNV")]
public static
bool AreProgramsResident(Int32 n, ref UInt32 programs, [Out] out bool residences)
{
@@ -14166,6 +17947,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glAreProgramsResidentNV")]
public static
bool AreProgramsResident(Int32 n, ref Int32 programs, [Out] out bool residences)
{
@@ -14182,6 +17964,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glAreProgramsResidentNV")]
public static
unsafe bool AreProgramsResident(Int32 n, UInt32* programs, [Out] bool* residences)
{
@@ -14189,6 +17972,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glAreProgramsResidentNV")]
public static
unsafe bool AreProgramsResident(Int32 n, Int32* programs, [Out] bool* residences)
{
@@ -14196,19 +17980,22 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glBindProgramNV")]
public static
- void BindProgram(OpenTK.Graphics.All target, UInt32 id)
+ void BindProgram(OpenTK.Graphics.NvVertexProgram target, UInt32 id)
{
- Delegates.glBindProgramNV((OpenTK.Graphics.All)target, (UInt32)id);
+ Delegates.glBindProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glBindProgramNV")]
public static
- void BindProgram(OpenTK.Graphics.All target, Int32 id)
+ void BindProgram(OpenTK.Graphics.NvVertexProgram target, Int32 id)
{
- Delegates.glBindProgramNV((OpenTK.Graphics.All)target, (UInt32)id);
+ Delegates.glBindProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glDeleteProgramsNV")]
public static
void DeleteProgram(Int32 n, UInt32[] programs)
{
@@ -14221,6 +18008,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glDeleteProgramsNV")]
public static
void DeleteProgram(Int32 n, Int32[] programs)
{
@@ -14234,6 +18022,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glDeleteProgramsNV")]
public static
void DeleteProgram(Int32 n, ref UInt32 programs)
{
@@ -14246,6 +18035,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glDeleteProgramsNV")]
public static
void DeleteProgram(Int32 n, ref Int32 programs)
{
@@ -14259,6 +18049,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glDeleteProgramsNV")]
public static
unsafe void DeleteProgram(Int32 n, UInt32* programs)
{
@@ -14266,6 +18057,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glDeleteProgramsNV")]
public static
unsafe void DeleteProgram(Int32 n, Int32* programs)
{
@@ -14273,70 +18065,77 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glExecuteProgramNV")]
public static
- void ExecuteProgram(OpenTK.Graphics.All target, UInt32 id, Single[] @params)
+ void ExecuteProgram(OpenTK.Graphics.NvVertexProgram target, UInt32 id, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params_ptr);
+ Delegates.glExecuteProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glExecuteProgramNV")]
public static
- void ExecuteProgram(OpenTK.Graphics.All target, Int32 id, Single[] @params)
+ void ExecuteProgram(OpenTK.Graphics.NvVertexProgram target, Int32 id, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params_ptr);
+ Delegates.glExecuteProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glExecuteProgramNV")]
public static
- void ExecuteProgram(OpenTK.Graphics.All target, UInt32 id, ref Single @params)
+ void ExecuteProgram(OpenTK.Graphics.NvVertexProgram target, UInt32 id, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params_ptr);
+ Delegates.glExecuteProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glExecuteProgramNV")]
public static
- void ExecuteProgram(OpenTK.Graphics.All target, Int32 id, ref Single @params)
+ void ExecuteProgram(OpenTK.Graphics.NvVertexProgram target, Int32 id, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params_ptr);
+ Delegates.glExecuteProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glExecuteProgramNV")]
public static
- unsafe void ExecuteProgram(OpenTK.Graphics.All target, UInt32 id, Single* @params)
+ unsafe void ExecuteProgram(OpenTK.Graphics.NvVertexProgram target, UInt32 id, Single* @params)
{
- Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params);
+ Delegates.glExecuteProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glExecuteProgramNV")]
public static
- unsafe void ExecuteProgram(OpenTK.Graphics.All target, Int32 id, Single* @params)
+ unsafe void ExecuteProgram(OpenTK.Graphics.NvVertexProgram target, Int32 id, Single* @params)
{
- Delegates.glExecuteProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Single*)@params);
+ Delegates.glExecuteProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGenProgramsNV")]
public static
void GenProgram(Int32 n, [Out] UInt32[] programs)
{
@@ -14349,6 +18148,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGenProgramsNV")]
public static
void GenProgram(Int32 n, [Out] Int32[] programs)
{
@@ -14362,6 +18162,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGenProgramsNV")]
public static
void GenProgram(Int32 n, [Out] out UInt32 programs)
{
@@ -14375,6 +18176,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGenProgramsNV")]
public static
void GenProgram(Int32 n, [Out] out Int32 programs)
{
@@ -14389,6 +18191,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGenProgramsNV")]
public static
unsafe void GenProgram(Int32 n, [Out] UInt32* programs)
{
@@ -14396,6 +18199,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGenProgramsNV")]
public static
unsafe void GenProgram(Int32 n, [Out] Int32* programs)
{
@@ -14403,562 +18207,613 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterdvNV")]
public static
- void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Double[] @params)
+ void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double[] @params)
{
unsafe
{
fixed (Double* @params_ptr = @params)
{
- Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterdvNV")]
public static
- void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Double[] @params)
+ void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double[] @params)
{
unsafe
{
fixed (Double* @params_ptr = @params)
{
- Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterdvNV")]
public static
- void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] out Double @params)
+ void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Double @params)
{
unsafe
{
fixed (Double* @params_ptr = &@params)
{
- Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterdvNV")]
public static
- void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] out Double @params)
+ void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Double @params)
{
unsafe
{
fixed (Double* @params_ptr = &@params)
{
- Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterdvNV")]
public static
- unsafe void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Double* @params)
+ unsafe void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double* @params)
{
- Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params);
+ Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterdvNV")]
public static
- unsafe void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Double* @params)
+ unsafe void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double* @params)
{
- Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params);
+ Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterfvNV")]
public static
- void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterfvNV")]
public static
- void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterfvNV")]
public static
- void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterfvNV")]
public static
- void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterfvNV")]
public static
- unsafe void GetProgramParameter(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single* @params)
{
- Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramParameterfvNV")]
public static
- unsafe void GetProgramParameter(OpenTK.Graphics.All target, Int32 index, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetProgramParameter(OpenTK.Graphics.NvVertexProgram target, Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single* @params)
{
- Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.All)target, (UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramivNV")]
public static
- void GetProgram(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetProgram(UInt32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramivNV")]
public static
- void GetProgram(Int32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetProgram(Int32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramivNV")]
public static
- void GetProgram(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetProgram(UInt32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramivNV")]
public static
- void GetProgram(Int32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetProgram(Int32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramivNV")]
public static
- unsafe void GetProgram(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetProgram(UInt32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32* @params)
{
- Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramivNV")]
public static
- unsafe void GetProgram(Int32 id, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetProgram(Int32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32* @params)
{
- Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramStringNV")]
public static
- void GetProgramString(UInt32 id, OpenTK.Graphics.All pname, [Out] Byte[] program)
+ void GetProgramString(UInt32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Byte[] program)
{
unsafe
{
fixed (Byte* program_ptr = program)
{
- Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program_ptr);
+ Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Byte*)program_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramStringNV")]
public static
- void GetProgramString(Int32 id, OpenTK.Graphics.All pname, [Out] Byte[] program)
+ void GetProgramString(Int32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Byte[] program)
{
unsafe
{
fixed (Byte* program_ptr = program)
{
- Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program_ptr);
+ Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Byte*)program_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramStringNV")]
public static
- void GetProgramString(UInt32 id, OpenTK.Graphics.All pname, [Out] out Byte program)
+ void GetProgramString(UInt32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] out Byte program)
{
unsafe
{
fixed (Byte* program_ptr = &program)
{
- Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program_ptr);
+ Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Byte*)program_ptr);
program = *program_ptr;
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramStringNV")]
public static
- void GetProgramString(Int32 id, OpenTK.Graphics.All pname, [Out] out Byte program)
+ void GetProgramString(Int32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] out Byte program)
{
unsafe
{
fixed (Byte* program_ptr = &program)
{
- Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program_ptr);
+ Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Byte*)program_ptr);
program = *program_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramStringNV")]
public static
- unsafe void GetProgramString(UInt32 id, OpenTK.Graphics.All pname, [Out] Byte* program)
+ unsafe void GetProgramString(UInt32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Byte* program)
{
- Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program);
+ Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Byte*)program);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetProgramStringNV")]
public static
- unsafe void GetProgramString(Int32 id, OpenTK.Graphics.All pname, [Out] Byte* program)
+ unsafe void GetProgramString(Int32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Byte* program)
{
- Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.All)pname, (Byte*)program);
+ Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.NvVertexProgram)pname, (Byte*)program);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetTrackMatrixivNV")]
public static
- void GetTrackMatrix(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetTrackMatrix(OpenTK.Graphics.NvVertexProgram target, UInt32 address, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)address, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetTrackMatrixivNV")]
public static
- void GetTrackMatrix(OpenTK.Graphics.All target, Int32 address, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetTrackMatrix(OpenTK.Graphics.NvVertexProgram target, Int32 address, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)address, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetTrackMatrixivNV")]
public static
- void GetTrackMatrix(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetTrackMatrix(OpenTK.Graphics.NvVertexProgram target, UInt32 address, OpenTK.Graphics.NvVertexProgram pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)address, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetTrackMatrixivNV")]
public static
- void GetTrackMatrix(OpenTK.Graphics.All target, Int32 address, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetTrackMatrix(OpenTK.Graphics.NvVertexProgram target, Int32 address, OpenTK.Graphics.NvVertexProgram pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)address, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetTrackMatrixivNV")]
public static
- unsafe void GetTrackMatrix(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetTrackMatrix(OpenTK.Graphics.NvVertexProgram target, UInt32 address, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32* @params)
{
- Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)address, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetTrackMatrixivNV")]
public static
- unsafe void GetTrackMatrix(OpenTK.Graphics.All target, Int32 address, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetTrackMatrix(OpenTK.Graphics.NvVertexProgram target, Int32 address, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32* @params)
{
- Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)address, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribdvNV")]
public static
- void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Double[] @params)
+ void GetVertexAttrib(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double[] @params)
{
unsafe
{
fixed (Double* @params_ptr = @params)
{
- Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribdvNV")]
public static
- void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Double[] @params)
+ void GetVertexAttrib(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double[] @params)
{
unsafe
{
fixed (Double* @params_ptr = @params)
{
- Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribdvNV")]
public static
- void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] out Double @params)
+ void GetVertexAttrib(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Double @params)
{
unsafe
{
fixed (Double* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribdvNV")]
public static
- void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] out Double @params)
+ void GetVertexAttrib(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Double @params)
{
unsafe
{
fixed (Double* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribdvNV")]
public static
- unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Double* @params)
+ unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double* @params)
{
- Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params);
+ Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribdvNV")]
public static
- unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Double* @params)
+ unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double* @params)
{
- Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Double*)@params);
+ Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Double*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribfvNV")]
public static
- void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetVertexAttrib(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribfvNV")]
public static
- void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetVertexAttrib(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribfvNV")]
public static
- void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetVertexAttrib(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribfvNV")]
public static
- void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetVertexAttrib(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribfvNV")]
public static
- unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single* @params)
{
- Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribfvNV")]
public static
- unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single* @params)
{
- Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribivNV")]
public static
- void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetVertexAttrib(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribivNV")]
public static
- void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetVertexAttrib(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribivNV")]
public static
- void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetVertexAttrib(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribivNV")]
public static
- void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetVertexAttrib(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribivNV")]
public static
- unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32* @params)
{
- Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribivNV")]
public static
- unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32* @params)
{
- Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribPointervNV")]
public static
- void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.All pname, [Out] IntPtr pointer)
+ void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] IntPtr pointer)
{
unsafe
{
- Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.All)pname, (IntPtr)pointer);
+ Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribPointervNV")]
public static
- void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.All pname, [Out] IntPtr pointer)
+ void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] IntPtr pointer)
{
unsafe
{
- Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.All)pname, (IntPtr)pointer);
+ Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (IntPtr)pointer);
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribPointervNV")]
public static
- void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.All pname, [In, Out] object pointer)
+ void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.All)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -14967,15 +18822,16 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glGetVertexAttribPointervNV")]
public static
- void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.All pname, [In, Out] object pointer)
+ void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.NvVertexProgram pname, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.All)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -14985,12 +18841,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glIsProgramNV")]
public static
bool IsProgram(UInt32 id)
{
return Delegates.glIsProgramNV((UInt32)id);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glIsProgramNV")]
public static
bool IsProgram(Int32 id)
{
@@ -14998,352 +18856,387 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glLoadProgramNV")]
public static
- void LoadProgram(OpenTK.Graphics.All target, UInt32 id, Int32 len, Byte[] program)
+ void LoadProgram(OpenTK.Graphics.NvVertexProgram target, UInt32 id, Int32 len, Byte[] program)
{
unsafe
{
fixed (Byte* program_ptr = program)
{
- Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr);
+ Delegates.glLoadProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glLoadProgramNV")]
public static
- void LoadProgram(OpenTK.Graphics.All target, Int32 id, Int32 len, Byte[] program)
+ void LoadProgram(OpenTK.Graphics.NvVertexProgram target, Int32 id, Int32 len, Byte[] program)
{
unsafe
{
fixed (Byte* program_ptr = program)
{
- Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr);
+ Delegates.glLoadProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glLoadProgramNV")]
public static
- void LoadProgram(OpenTK.Graphics.All target, UInt32 id, Int32 len, ref Byte program)
+ void LoadProgram(OpenTK.Graphics.NvVertexProgram target, UInt32 id, Int32 len, ref Byte program)
{
unsafe
{
fixed (Byte* program_ptr = &program)
{
- Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr);
+ Delegates.glLoadProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glLoadProgramNV")]
public static
- void LoadProgram(OpenTK.Graphics.All target, Int32 id, Int32 len, ref Byte program)
+ void LoadProgram(OpenTK.Graphics.NvVertexProgram target, Int32 id, Int32 len, ref Byte program)
{
unsafe
{
fixed (Byte* program_ptr = &program)
{
- Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program_ptr);
+ Delegates.glLoadProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glLoadProgramNV")]
public static
- unsafe void LoadProgram(OpenTK.Graphics.All target, UInt32 id, Int32 len, Byte* program)
+ unsafe void LoadProgram(OpenTK.Graphics.NvVertexProgram target, UInt32 id, Int32 len, Byte* program)
{
- Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program);
+ Delegates.glLoadProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glLoadProgramNV")]
public static
- unsafe void LoadProgram(OpenTK.Graphics.All target, Int32 id, Int32 len, Byte* program)
+ unsafe void LoadProgram(OpenTK.Graphics.NvVertexProgram target, Int32 id, Int32 len, Byte* program)
{
- Delegates.glLoadProgramNV((OpenTK.Graphics.All)target, (UInt32)id, (Int32)len, (Byte*)program);
+ Delegates.glLoadProgramNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)id, (Int32)len, (Byte*)program);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4dNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Double x, Double y, Double z, Double w)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Double x, Double y, Double z, Double w)
{
- Delegates.glProgramParameter4dNV((OpenTK.Graphics.All)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
+ Delegates.glProgramParameter4dNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4dNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Double x, Double y, Double z, Double w)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Double x, Double y, Double z, Double w)
{
- Delegates.glProgramParameter4dNV((OpenTK.Graphics.All)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
+ Delegates.glProgramParameter4dNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4dvNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Double[] v)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Double[] v)
{
unsafe
{
fixed (Double* v_ptr = v)
{
- Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v_ptr);
+ Delegates.glProgramParameter4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Double*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4dvNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Double[] v)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Double[] v)
{
unsafe
{
fixed (Double* v_ptr = v)
{
- Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v_ptr);
+ Delegates.glProgramParameter4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Double*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4dvNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, ref Double v)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, ref Double v)
{
unsafe
{
fixed (Double* v_ptr = &v)
{
- Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v_ptr);
+ Delegates.glProgramParameter4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Double*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4dvNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, ref Double v)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, Int32 index, ref Double v)
{
unsafe
{
fixed (Double* v_ptr = &v)
{
- Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v_ptr);
+ Delegates.glProgramParameter4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Double*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4dvNV")]
public static
- unsafe void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Double* v)
+ unsafe void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Double* v)
{
- Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v);
+ Delegates.glProgramParameter4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Double*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4dvNV")]
public static
- unsafe void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Double* v)
+ unsafe void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Double* v)
{
- Delegates.glProgramParameter4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (Double*)v);
+ Delegates.glProgramParameter4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Double*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4fNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Single x, Single y, Single z, Single w)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Single x, Single y, Single z, Single w)
{
- Delegates.glProgramParameter4fNV((OpenTK.Graphics.All)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
+ Delegates.glProgramParameter4fNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4fNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Single x, Single y, Single z, Single w)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Single x, Single y, Single z, Single w)
{
- Delegates.glProgramParameter4fNV((OpenTK.Graphics.All)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
+ Delegates.glProgramParameter4fNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4fvNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Single[] v)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Single[] v)
{
unsafe
{
fixed (Single* v_ptr = v)
{
- Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v_ptr);
+ Delegates.glProgramParameter4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Single*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4fvNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Single[] v)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Single[] v)
{
unsafe
{
fixed (Single* v_ptr = v)
{
- Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v_ptr);
+ Delegates.glProgramParameter4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Single*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4fvNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, ref Single v)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, ref Single v)
{
unsafe
{
fixed (Single* v_ptr = &v)
{
- Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v_ptr);
+ Delegates.glProgramParameter4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Single*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4fvNV")]
public static
- void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, ref Single v)
+ void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, Int32 index, ref Single v)
{
unsafe
{
fixed (Single* v_ptr = &v)
{
- Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v_ptr);
+ Delegates.glProgramParameter4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Single*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4fvNV")]
public static
- unsafe void ProgramParameter4(OpenTK.Graphics.All target, UInt32 index, Single* v)
+ unsafe void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Single* v)
{
- Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v);
+ Delegates.glProgramParameter4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Single*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameter4fvNV")]
public static
- unsafe void ProgramParameter4(OpenTK.Graphics.All target, Int32 index, Single* v)
+ unsafe void ProgramParameter4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Single* v)
{
- Delegates.glProgramParameter4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (Single*)v);
+ Delegates.glProgramParameter4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (Single*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4dvNV")]
public static
- void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Double[] v)
+ void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, UInt32 count, Double[] v)
{
unsafe
{
fixed (Double* v_ptr = v)
{
- Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr);
+ Delegates.glProgramParameters4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4dvNV")]
public static
- void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Double[] v)
+ void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Int32 count, Double[] v)
{
unsafe
{
fixed (Double* v_ptr = v)
{
- Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr);
+ Delegates.glProgramParameters4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4dvNV")]
public static
- void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, ref Double v)
+ void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, UInt32 count, ref Double v)
{
unsafe
{
fixed (Double* v_ptr = &v)
{
- Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr);
+ Delegates.glProgramParameters4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4dvNV")]
public static
- void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Double v)
+ void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Int32 count, ref Double v)
{
unsafe
{
fixed (Double* v_ptr = &v)
{
- Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v_ptr);
+ Delegates.glProgramParameters4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4dvNV")]
public static
- unsafe void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Double* v)
+ unsafe void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, UInt32 count, Double* v)
{
- Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v);
+ Delegates.glProgramParameters4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4dvNV")]
public static
- unsafe void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Double* v)
+ unsafe void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Int32 count, Double* v)
{
- Delegates.glProgramParameters4dvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Double*)v);
+ Delegates.glProgramParameters4dvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Double*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4fvNV")]
public static
- void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Single[] v)
+ void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, UInt32 count, Single[] v)
{
unsafe
{
fixed (Single* v_ptr = v)
{
- Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr);
+ Delegates.glProgramParameters4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4fvNV")]
public static
- void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single[] v)
+ void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Int32 count, Single[] v)
{
unsafe
{
fixed (Single* v_ptr = v)
{
- Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr);
+ Delegates.glProgramParameters4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4fvNV")]
public static
- void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, ref Single v)
+ void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, UInt32 count, ref Single v)
{
unsafe
{
fixed (Single* v_ptr = &v)
{
- Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr);
+ Delegates.glProgramParameters4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4fvNV")]
public static
- void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Single v)
+ void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Int32 count, ref Single v)
{
unsafe
{
fixed (Single* v_ptr = &v)
{
- Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v_ptr);
+ Delegates.glProgramParameters4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4fvNV")]
public static
- unsafe void ProgramParameters4(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Single* v)
+ unsafe void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, UInt32 index, UInt32 count, Single* v)
{
- Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v);
+ Delegates.glProgramParameters4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glProgramParameters4fvNV")]
public static
- unsafe void ProgramParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single* v)
+ unsafe void ProgramParameters4(OpenTK.Graphics.NvVertexProgram target, Int32 index, Int32 count, Single* v)
{
- Delegates.glProgramParameters4fvNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)count, (Single*)v);
+ Delegates.glProgramParameters4fvNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)index, (UInt32)count, (Single*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glRequestResidentProgramsNV")]
public static
void RequestResidentProgram(Int32 n, UInt32[] programs)
{
@@ -15356,6 +19249,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glRequestResidentProgramsNV")]
public static
void RequestResidentProgram(Int32 n, Int32[] programs)
{
@@ -15369,6 +19263,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glRequestResidentProgramsNV")]
public static
void RequestResidentProgram(Int32 n, ref UInt32 programs)
{
@@ -15381,6 +19276,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glRequestResidentProgramsNV")]
public static
void RequestResidentProgram(Int32 n, ref Int32 programs)
{
@@ -15394,6 +19290,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glRequestResidentProgramsNV")]
public static
unsafe void RequestResidentProgram(Int32 n, UInt32* programs)
{
@@ -15401,6 +19298,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glRequestResidentProgramsNV")]
public static
unsafe void RequestResidentProgram(Int32 n, Int32* programs)
{
@@ -15408,47 +19306,52 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glTrackMatrixNV")]
public static
- void TrackMatrix(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All matrix, OpenTK.Graphics.All transform)
+ void TrackMatrix(OpenTK.Graphics.NvVertexProgram target, UInt32 address, OpenTK.Graphics.NvVertexProgram matrix, OpenTK.Graphics.NvVertexProgram transform)
{
- Delegates.glTrackMatrixNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)matrix, (OpenTK.Graphics.All)transform);
+ Delegates.glTrackMatrixNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)address, (OpenTK.Graphics.NvVertexProgram)matrix, (OpenTK.Graphics.NvVertexProgram)transform);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glTrackMatrixNV")]
public static
- void TrackMatrix(OpenTK.Graphics.All target, Int32 address, OpenTK.Graphics.All matrix, OpenTK.Graphics.All transform)
+ void TrackMatrix(OpenTK.Graphics.NvVertexProgram target, Int32 address, OpenTK.Graphics.NvVertexProgram matrix, OpenTK.Graphics.NvVertexProgram transform)
{
- Delegates.glTrackMatrixNV((OpenTK.Graphics.All)target, (UInt32)address, (OpenTK.Graphics.All)matrix, (OpenTK.Graphics.All)transform);
+ Delegates.glTrackMatrixNV((OpenTK.Graphics.NvVertexProgram)target, (UInt32)address, (OpenTK.Graphics.NvVertexProgram)matrix, (OpenTK.Graphics.NvVertexProgram)transform);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribPointerNV")]
public static
- void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.NvVertexProgram type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.NvVertexProgram)type, (Int32)stride, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribPointerNV")]
public static
- void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.NvVertexProgram type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.NvVertexProgram)type, (Int32)stride, (IntPtr)pointer);
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribPointerNV")]
public static
- void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.NvVertexProgram type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.NvVertexProgram)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -15457,15 +19360,16 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribPointerNV")]
public static
- void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.NvVertexProgram type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.NvVertexProgram)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -15475,12 +19379,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1dNV")]
public static
void VertexAttrib1(UInt32 index, Double x)
{
Delegates.glVertexAttrib1dNV((UInt32)index, (Double)x);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1dNV")]
public static
void VertexAttrib1(Int32 index, Double x)
{
@@ -15488,6 +19394,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1dvNV")]
public static
void VertexAttrib1v(UInt32 index, Double[] v)
{
@@ -15500,6 +19407,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1dvNV")]
public static
void VertexAttrib1v(Int32 index, Double[] v)
{
@@ -15513,6 +19421,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1dvNV")]
public static
void VertexAttrib1v(UInt32 index, ref Double v)
{
@@ -15525,6 +19434,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1dvNV")]
public static
void VertexAttrib1v(Int32 index, ref Double v)
{
@@ -15538,6 +19448,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1dvNV")]
public static
unsafe void VertexAttrib1v(UInt32 index, Double* v)
{
@@ -15545,6 +19456,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1dvNV")]
public static
unsafe void VertexAttrib1v(Int32 index, Double* v)
{
@@ -15552,12 +19464,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1fNV")]
public static
void VertexAttrib1(UInt32 index, Single x)
{
Delegates.glVertexAttrib1fNV((UInt32)index, (Single)x);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1fNV")]
public static
void VertexAttrib1(Int32 index, Single x)
{
@@ -15565,6 +19479,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1fvNV")]
public static
void VertexAttrib1v(UInt32 index, Single[] v)
{
@@ -15577,6 +19492,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1fvNV")]
public static
void VertexAttrib1v(Int32 index, Single[] v)
{
@@ -15590,6 +19506,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1fvNV")]
public static
void VertexAttrib1v(UInt32 index, ref Single v)
{
@@ -15602,6 +19519,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1fvNV")]
public static
void VertexAttrib1v(Int32 index, ref Single v)
{
@@ -15615,6 +19533,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1fvNV")]
public static
unsafe void VertexAttrib1v(UInt32 index, Single* v)
{
@@ -15622,6 +19541,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1fvNV")]
public static
unsafe void VertexAttrib1v(Int32 index, Single* v)
{
@@ -15629,12 +19549,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1sNV")]
public static
void VertexAttrib1(UInt32 index, Int16 x)
{
Delegates.glVertexAttrib1sNV((UInt32)index, (Int16)x);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1sNV")]
public static
void VertexAttrib1(Int32 index, Int16 x)
{
@@ -15642,6 +19564,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1svNV")]
public static
void VertexAttrib1v(UInt32 index, Int16[] v)
{
@@ -15654,6 +19577,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1svNV")]
public static
void VertexAttrib1v(Int32 index, Int16[] v)
{
@@ -15667,6 +19591,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1svNV")]
public static
void VertexAttrib1v(UInt32 index, ref Int16 v)
{
@@ -15679,6 +19604,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1svNV")]
public static
void VertexAttrib1v(Int32 index, ref Int16 v)
{
@@ -15692,6 +19618,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1svNV")]
public static
unsafe void VertexAttrib1v(UInt32 index, Int16* v)
{
@@ -15699,6 +19626,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib1svNV")]
public static
unsafe void VertexAttrib1v(Int32 index, Int16* v)
{
@@ -15706,12 +19634,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2dNV")]
public static
void VertexAttrib2(UInt32 index, Double x, Double y)
{
Delegates.glVertexAttrib2dNV((UInt32)index, (Double)x, (Double)y);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2dNV")]
public static
void VertexAttrib2(Int32 index, Double x, Double y)
{
@@ -15719,6 +19649,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2dvNV")]
public static
void VertexAttrib2(UInt32 index, Double[] v)
{
@@ -15731,6 +19662,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2dvNV")]
public static
void VertexAttrib2(Int32 index, Double[] v)
{
@@ -15744,6 +19676,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2dvNV")]
public static
void VertexAttrib2(UInt32 index, ref Double v)
{
@@ -15756,6 +19689,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2dvNV")]
public static
void VertexAttrib2(Int32 index, ref Double v)
{
@@ -15769,6 +19703,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2dvNV")]
public static
unsafe void VertexAttrib2(UInt32 index, Double* v)
{
@@ -15776,6 +19711,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2dvNV")]
public static
unsafe void VertexAttrib2(Int32 index, Double* v)
{
@@ -15783,12 +19719,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2fNV")]
public static
void VertexAttrib2(UInt32 index, Single x, Single y)
{
Delegates.glVertexAttrib2fNV((UInt32)index, (Single)x, (Single)y);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2fNV")]
public static
void VertexAttrib2(Int32 index, Single x, Single y)
{
@@ -15796,6 +19734,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2fvNV")]
public static
void VertexAttrib2(UInt32 index, Single[] v)
{
@@ -15808,6 +19747,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2fvNV")]
public static
void VertexAttrib2(Int32 index, Single[] v)
{
@@ -15821,6 +19761,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2fvNV")]
public static
void VertexAttrib2(UInt32 index, ref Single v)
{
@@ -15833,6 +19774,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2fvNV")]
public static
void VertexAttrib2(Int32 index, ref Single v)
{
@@ -15846,6 +19788,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2fvNV")]
public static
unsafe void VertexAttrib2(UInt32 index, Single* v)
{
@@ -15853,6 +19796,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2fvNV")]
public static
unsafe void VertexAttrib2(Int32 index, Single* v)
{
@@ -15860,12 +19804,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2sNV")]
public static
void VertexAttrib2(UInt32 index, Int16 x, Int16 y)
{
Delegates.glVertexAttrib2sNV((UInt32)index, (Int16)x, (Int16)y);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2sNV")]
public static
void VertexAttrib2(Int32 index, Int16 x, Int16 y)
{
@@ -15873,6 +19819,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2svNV")]
public static
void VertexAttrib2(UInt32 index, Int16[] v)
{
@@ -15885,6 +19832,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2svNV")]
public static
void VertexAttrib2(Int32 index, Int16[] v)
{
@@ -15898,6 +19846,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2svNV")]
public static
void VertexAttrib2(UInt32 index, ref Int16 v)
{
@@ -15910,6 +19859,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2svNV")]
public static
void VertexAttrib2(Int32 index, ref Int16 v)
{
@@ -15923,6 +19873,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2svNV")]
public static
unsafe void VertexAttrib2(UInt32 index, Int16* v)
{
@@ -15930,6 +19881,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib2svNV")]
public static
unsafe void VertexAttrib2(Int32 index, Int16* v)
{
@@ -15937,12 +19889,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3dNV")]
public static
void VertexAttrib3(UInt32 index, Double x, Double y, Double z)
{
Delegates.glVertexAttrib3dNV((UInt32)index, (Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3dNV")]
public static
void VertexAttrib3(Int32 index, Double x, Double y, Double z)
{
@@ -15950,6 +19904,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3dvNV")]
public static
void VertexAttrib3(UInt32 index, Double[] v)
{
@@ -15962,6 +19917,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3dvNV")]
public static
void VertexAttrib3(Int32 index, Double[] v)
{
@@ -15975,6 +19931,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3dvNV")]
public static
void VertexAttrib3(UInt32 index, ref Double v)
{
@@ -15987,6 +19944,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3dvNV")]
public static
void VertexAttrib3(Int32 index, ref Double v)
{
@@ -16000,6 +19958,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3dvNV")]
public static
unsafe void VertexAttrib3(UInt32 index, Double* v)
{
@@ -16007,6 +19966,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3dvNV")]
public static
unsafe void VertexAttrib3(Int32 index, Double* v)
{
@@ -16014,12 +19974,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3fNV")]
public static
void VertexAttrib3(UInt32 index, Single x, Single y, Single z)
{
Delegates.glVertexAttrib3fNV((UInt32)index, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3fNV")]
public static
void VertexAttrib3(Int32 index, Single x, Single y, Single z)
{
@@ -16027,6 +19989,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3fvNV")]
public static
void VertexAttrib3(UInt32 index, Single[] v)
{
@@ -16039,6 +20002,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3fvNV")]
public static
void VertexAttrib3(Int32 index, Single[] v)
{
@@ -16052,6 +20016,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3fvNV")]
public static
void VertexAttrib3(UInt32 index, ref Single v)
{
@@ -16064,6 +20029,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3fvNV")]
public static
void VertexAttrib3(Int32 index, ref Single v)
{
@@ -16077,6 +20043,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3fvNV")]
public static
unsafe void VertexAttrib3(UInt32 index, Single* v)
{
@@ -16084,6 +20051,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3fvNV")]
public static
unsafe void VertexAttrib3(Int32 index, Single* v)
{
@@ -16091,12 +20059,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3sNV")]
public static
void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z)
{
Delegates.glVertexAttrib3sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3sNV")]
public static
void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z)
{
@@ -16104,6 +20074,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3svNV")]
public static
void VertexAttrib3(UInt32 index, Int16[] v)
{
@@ -16116,6 +20087,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3svNV")]
public static
void VertexAttrib3(Int32 index, Int16[] v)
{
@@ -16129,6 +20101,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3svNV")]
public static
void VertexAttrib3(UInt32 index, ref Int16 v)
{
@@ -16141,6 +20114,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3svNV")]
public static
void VertexAttrib3(Int32 index, ref Int16 v)
{
@@ -16154,6 +20128,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3svNV")]
public static
unsafe void VertexAttrib3(UInt32 index, Int16* v)
{
@@ -16161,6 +20136,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib3svNV")]
public static
unsafe void VertexAttrib3(Int32 index, Int16* v)
{
@@ -16168,12 +20144,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4dNV")]
public static
void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w)
{
Delegates.glVertexAttrib4dNV((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4dNV")]
public static
void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w)
{
@@ -16181,6 +20159,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4dvNV")]
public static
void VertexAttrib4(UInt32 index, Double[] v)
{
@@ -16193,6 +20172,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4dvNV")]
public static
void VertexAttrib4(Int32 index, Double[] v)
{
@@ -16206,6 +20186,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4dvNV")]
public static
void VertexAttrib4(UInt32 index, ref Double v)
{
@@ -16218,6 +20199,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4dvNV")]
public static
void VertexAttrib4(Int32 index, ref Double v)
{
@@ -16231,6 +20213,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4dvNV")]
public static
unsafe void VertexAttrib4(UInt32 index, Double* v)
{
@@ -16238,6 +20221,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4dvNV")]
public static
unsafe void VertexAttrib4(Int32 index, Double* v)
{
@@ -16245,12 +20229,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4fNV")]
public static
void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w)
{
Delegates.glVertexAttrib4fNV((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4fNV")]
public static
void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w)
{
@@ -16258,6 +20244,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4fvNV")]
public static
void VertexAttrib4(UInt32 index, Single[] v)
{
@@ -16270,6 +20257,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4fvNV")]
public static
void VertexAttrib4(Int32 index, Single[] v)
{
@@ -16283,6 +20271,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4fvNV")]
public static
void VertexAttrib4(UInt32 index, ref Single v)
{
@@ -16295,6 +20284,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4fvNV")]
public static
void VertexAttrib4(Int32 index, ref Single v)
{
@@ -16308,6 +20298,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4fvNV")]
public static
unsafe void VertexAttrib4(UInt32 index, Single* v)
{
@@ -16315,6 +20306,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4fvNV")]
public static
unsafe void VertexAttrib4(Int32 index, Single* v)
{
@@ -16322,12 +20314,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4sNV")]
public static
void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w)
{
Delegates.glVertexAttrib4sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4sNV")]
public static
void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w)
{
@@ -16335,6 +20329,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4svNV")]
public static
void VertexAttrib4(UInt32 index, Int16[] v)
{
@@ -16347,6 +20342,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4svNV")]
public static
void VertexAttrib4(Int32 index, Int16[] v)
{
@@ -16360,6 +20356,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4svNV")]
public static
void VertexAttrib4(UInt32 index, ref Int16 v)
{
@@ -16372,6 +20369,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4svNV")]
public static
void VertexAttrib4(Int32 index, ref Int16 v)
{
@@ -16385,6 +20383,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4svNV")]
public static
unsafe void VertexAttrib4(UInt32 index, Int16* v)
{
@@ -16392,6 +20391,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4svNV")]
public static
unsafe void VertexAttrib4(Int32 index, Int16* v)
{
@@ -16399,12 +20399,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4ubNV")]
public static
void VertexAttrib4(UInt32 index, Byte x, Byte y, Byte z, Byte w)
{
Delegates.glVertexAttrib4ubNV((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w);
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4ubNV")]
public static
void VertexAttrib4(Int32 index, Byte x, Byte y, Byte z, Byte w)
{
@@ -16412,6 +20414,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4ubvNV")]
public static
void VertexAttrib4(UInt32 index, Byte[] v)
{
@@ -16424,6 +20427,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4ubvNV")]
public static
void VertexAttrib4(Int32 index, Byte[] v)
{
@@ -16437,6 +20441,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4ubvNV")]
public static
void VertexAttrib4(UInt32 index, ref Byte v)
{
@@ -16449,6 +20454,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4ubvNV")]
public static
void VertexAttrib4(Int32 index, ref Byte v)
{
@@ -16462,6 +20468,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4ubvNV")]
public static
unsafe void VertexAttrib4(UInt32 index, Byte* v)
{
@@ -16469,6 +20476,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttrib4ubvNV")]
public static
unsafe void VertexAttrib4(Int32 index, Byte* v)
{
@@ -16476,6 +20484,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1dvNV")]
public static
void VertexAttribs1(UInt32 index, Int32 count, Double[] v)
{
@@ -16488,6 +20497,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1dvNV")]
public static
void VertexAttribs1(Int32 index, Int32 count, Double[] v)
{
@@ -16501,6 +20511,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1dvNV")]
public static
void VertexAttribs1(UInt32 index, Int32 count, ref Double v)
{
@@ -16513,6 +20524,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1dvNV")]
public static
void VertexAttribs1(Int32 index, Int32 count, ref Double v)
{
@@ -16526,6 +20538,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1dvNV")]
public static
unsafe void VertexAttribs1(UInt32 index, Int32 count, Double* v)
{
@@ -16533,6 +20546,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1dvNV")]
public static
unsafe void VertexAttribs1(Int32 index, Int32 count, Double* v)
{
@@ -16540,6 +20554,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1fvNV")]
public static
void VertexAttribs1(UInt32 index, Int32 count, Single[] v)
{
@@ -16552,6 +20567,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1fvNV")]
public static
void VertexAttribs1(Int32 index, Int32 count, Single[] v)
{
@@ -16565,6 +20581,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1fvNV")]
public static
void VertexAttribs1(UInt32 index, Int32 count, ref Single v)
{
@@ -16577,6 +20594,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1fvNV")]
public static
void VertexAttribs1(Int32 index, Int32 count, ref Single v)
{
@@ -16590,6 +20608,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1fvNV")]
public static
unsafe void VertexAttribs1(UInt32 index, Int32 count, Single* v)
{
@@ -16597,6 +20616,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1fvNV")]
public static
unsafe void VertexAttribs1(Int32 index, Int32 count, Single* v)
{
@@ -16604,6 +20624,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1svNV")]
public static
void VertexAttribs1(UInt32 index, Int32 count, Int16[] v)
{
@@ -16616,6 +20637,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1svNV")]
public static
void VertexAttribs1(Int32 index, Int32 count, Int16[] v)
{
@@ -16629,6 +20651,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1svNV")]
public static
void VertexAttribs1(UInt32 index, Int32 count, ref Int16 v)
{
@@ -16641,6 +20664,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1svNV")]
public static
void VertexAttribs1(Int32 index, Int32 count, ref Int16 v)
{
@@ -16654,6 +20678,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1svNV")]
public static
unsafe void VertexAttribs1(UInt32 index, Int32 count, Int16* v)
{
@@ -16661,6 +20686,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs1svNV")]
public static
unsafe void VertexAttribs1(Int32 index, Int32 count, Int16* v)
{
@@ -16668,6 +20694,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2dvNV")]
public static
void VertexAttribs2(UInt32 index, Int32 count, Double[] v)
{
@@ -16680,6 +20707,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2dvNV")]
public static
void VertexAttribs2(Int32 index, Int32 count, Double[] v)
{
@@ -16693,6 +20721,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2dvNV")]
public static
void VertexAttribs2(UInt32 index, Int32 count, ref Double v)
{
@@ -16705,6 +20734,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2dvNV")]
public static
void VertexAttribs2(Int32 index, Int32 count, ref Double v)
{
@@ -16718,6 +20748,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2dvNV")]
public static
unsafe void VertexAttribs2(UInt32 index, Int32 count, Double* v)
{
@@ -16725,6 +20756,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2dvNV")]
public static
unsafe void VertexAttribs2(Int32 index, Int32 count, Double* v)
{
@@ -16732,6 +20764,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2fvNV")]
public static
void VertexAttribs2(UInt32 index, Int32 count, Single[] v)
{
@@ -16744,6 +20777,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2fvNV")]
public static
void VertexAttribs2(Int32 index, Int32 count, Single[] v)
{
@@ -16757,6 +20791,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2fvNV")]
public static
void VertexAttribs2(UInt32 index, Int32 count, ref Single v)
{
@@ -16769,6 +20804,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2fvNV")]
public static
void VertexAttribs2(Int32 index, Int32 count, ref Single v)
{
@@ -16782,6 +20818,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2fvNV")]
public static
unsafe void VertexAttribs2(UInt32 index, Int32 count, Single* v)
{
@@ -16789,6 +20826,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2fvNV")]
public static
unsafe void VertexAttribs2(Int32 index, Int32 count, Single* v)
{
@@ -16796,6 +20834,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2svNV")]
public static
void VertexAttribs2(UInt32 index, Int32 count, Int16[] v)
{
@@ -16808,6 +20847,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2svNV")]
public static
void VertexAttribs2(Int32 index, Int32 count, Int16[] v)
{
@@ -16821,6 +20861,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2svNV")]
public static
void VertexAttribs2(UInt32 index, Int32 count, ref Int16 v)
{
@@ -16833,6 +20874,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2svNV")]
public static
void VertexAttribs2(Int32 index, Int32 count, ref Int16 v)
{
@@ -16846,6 +20888,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2svNV")]
public static
unsafe void VertexAttribs2(UInt32 index, Int32 count, Int16* v)
{
@@ -16853,6 +20896,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs2svNV")]
public static
unsafe void VertexAttribs2(Int32 index, Int32 count, Int16* v)
{
@@ -16860,6 +20904,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3dvNV")]
public static
void VertexAttribs3(UInt32 index, Int32 count, Double[] v)
{
@@ -16872,6 +20917,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3dvNV")]
public static
void VertexAttribs3(Int32 index, Int32 count, Double[] v)
{
@@ -16885,6 +20931,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3dvNV")]
public static
void VertexAttribs3(UInt32 index, Int32 count, ref Double v)
{
@@ -16897,6 +20944,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3dvNV")]
public static
void VertexAttribs3(Int32 index, Int32 count, ref Double v)
{
@@ -16910,6 +20958,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3dvNV")]
public static
unsafe void VertexAttribs3(UInt32 index, Int32 count, Double* v)
{
@@ -16917,6 +20966,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3dvNV")]
public static
unsafe void VertexAttribs3(Int32 index, Int32 count, Double* v)
{
@@ -16924,6 +20974,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3fvNV")]
public static
void VertexAttribs3(UInt32 index, Int32 count, Single[] v)
{
@@ -16936,6 +20987,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3fvNV")]
public static
void VertexAttribs3(Int32 index, Int32 count, Single[] v)
{
@@ -16949,6 +21001,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3fvNV")]
public static
void VertexAttribs3(UInt32 index, Int32 count, ref Single v)
{
@@ -16961,6 +21014,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3fvNV")]
public static
void VertexAttribs3(Int32 index, Int32 count, ref Single v)
{
@@ -16974,6 +21028,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3fvNV")]
public static
unsafe void VertexAttribs3(UInt32 index, Int32 count, Single* v)
{
@@ -16981,6 +21036,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3fvNV")]
public static
unsafe void VertexAttribs3(Int32 index, Int32 count, Single* v)
{
@@ -16988,6 +21044,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3svNV")]
public static
void VertexAttribs3(UInt32 index, Int32 count, Int16[] v)
{
@@ -17000,6 +21057,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3svNV")]
public static
void VertexAttribs3(Int32 index, Int32 count, Int16[] v)
{
@@ -17013,6 +21071,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3svNV")]
public static
void VertexAttribs3(UInt32 index, Int32 count, ref Int16 v)
{
@@ -17025,6 +21084,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3svNV")]
public static
void VertexAttribs3(Int32 index, Int32 count, ref Int16 v)
{
@@ -17038,6 +21098,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3svNV")]
public static
unsafe void VertexAttribs3(UInt32 index, Int32 count, Int16* v)
{
@@ -17045,6 +21106,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs3svNV")]
public static
unsafe void VertexAttribs3(Int32 index, Int32 count, Int16* v)
{
@@ -17052,6 +21114,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4dvNV")]
public static
void VertexAttribs4(UInt32 index, Int32 count, Double[] v)
{
@@ -17064,6 +21127,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4dvNV")]
public static
void VertexAttribs4(Int32 index, Int32 count, Double[] v)
{
@@ -17077,6 +21141,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4dvNV")]
public static
void VertexAttribs4(UInt32 index, Int32 count, ref Double v)
{
@@ -17089,6 +21154,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4dvNV")]
public static
void VertexAttribs4(Int32 index, Int32 count, ref Double v)
{
@@ -17102,6 +21168,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4dvNV")]
public static
unsafe void VertexAttribs4(UInt32 index, Int32 count, Double* v)
{
@@ -17109,6 +21176,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4dvNV")]
public static
unsafe void VertexAttribs4(Int32 index, Int32 count, Double* v)
{
@@ -17116,6 +21184,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4fvNV")]
public static
void VertexAttribs4(UInt32 index, Int32 count, Single[] v)
{
@@ -17128,6 +21197,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4fvNV")]
public static
void VertexAttribs4(Int32 index, Int32 count, Single[] v)
{
@@ -17141,6 +21211,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4fvNV")]
public static
void VertexAttribs4(UInt32 index, Int32 count, ref Single v)
{
@@ -17153,6 +21224,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4fvNV")]
public static
void VertexAttribs4(Int32 index, Int32 count, ref Single v)
{
@@ -17166,6 +21238,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4fvNV")]
public static
unsafe void VertexAttribs4(UInt32 index, Int32 count, Single* v)
{
@@ -17173,6 +21246,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4fvNV")]
public static
unsafe void VertexAttribs4(Int32 index, Int32 count, Single* v)
{
@@ -17180,6 +21254,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4svNV")]
public static
void VertexAttribs4(UInt32 index, Int32 count, Int16[] v)
{
@@ -17192,6 +21267,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4svNV")]
public static
void VertexAttribs4(Int32 index, Int32 count, Int16[] v)
{
@@ -17205,6 +21281,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4svNV")]
public static
void VertexAttribs4(UInt32 index, Int32 count, ref Int16 v)
{
@@ -17217,6 +21294,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4svNV")]
public static
void VertexAttribs4(Int32 index, Int32 count, ref Int16 v)
{
@@ -17230,6 +21308,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4svNV")]
public static
unsafe void VertexAttribs4(UInt32 index, Int32 count, Int16* v)
{
@@ -17237,6 +21316,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4svNV")]
public static
unsafe void VertexAttribs4(Int32 index, Int32 count, Int16* v)
{
@@ -17244,6 +21324,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4ubvNV")]
public static
void VertexAttribs4(UInt32 index, Int32 count, Byte[] v)
{
@@ -17256,6 +21337,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4ubvNV")]
public static
void VertexAttribs4(Int32 index, Int32 count, Byte[] v)
{
@@ -17269,6 +21351,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4ubvNV")]
public static
void VertexAttribs4(UInt32 index, Int32 count, ref Byte v)
{
@@ -17281,6 +21364,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4ubvNV")]
public static
void VertexAttribs4(Int32 index, Int32 count, ref Byte v)
{
@@ -17294,6 +21378,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4ubvNV")]
public static
unsafe void VertexAttribs4(UInt32 index, Int32 count, Byte* v)
{
@@ -17301,6 +21386,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram", Version = "1.2", EntryPoint = "glVertexAttribs4ubvNV")]
public static
unsafe void VertexAttribs4(Int32 index, Int32 count, Byte* v)
{
@@ -17308,6 +21394,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGenOcclusionQueriesNV")]
public static
void GenOcclusionQueries(Int32 n, [Out] UInt32[] ids)
{
@@ -17320,6 +21407,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGenOcclusionQueriesNV")]
public static
void GenOcclusionQueries(Int32 n, [Out] Int32[] ids)
{
@@ -17333,6 +21421,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGenOcclusionQueriesNV")]
public static
void GenOcclusionQueries(Int32 n, [Out] out UInt32 ids)
{
@@ -17346,6 +21435,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGenOcclusionQueriesNV")]
public static
void GenOcclusionQueries(Int32 n, [Out] out Int32 ids)
{
@@ -17360,6 +21450,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGenOcclusionQueriesNV")]
public static
unsafe void GenOcclusionQueries(Int32 n, [Out] UInt32* ids)
{
@@ -17367,6 +21458,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGenOcclusionQueriesNV")]
public static
unsafe void GenOcclusionQueries(Int32 n, [Out] Int32* ids)
{
@@ -17374,6 +21466,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glDeleteOcclusionQueriesNV")]
public static
void DeleteOcclusionQueries(Int32 n, UInt32[] ids)
{
@@ -17386,6 +21479,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glDeleteOcclusionQueriesNV")]
public static
void DeleteOcclusionQueries(Int32 n, Int32[] ids)
{
@@ -17399,6 +21493,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glDeleteOcclusionQueriesNV")]
public static
void DeleteOcclusionQueries(Int32 n, ref UInt32 ids)
{
@@ -17411,6 +21506,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glDeleteOcclusionQueriesNV")]
public static
void DeleteOcclusionQueries(Int32 n, ref Int32 ids)
{
@@ -17424,6 +21520,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glDeleteOcclusionQueriesNV")]
public static
unsafe void DeleteOcclusionQueries(Int32 n, UInt32* ids)
{
@@ -17431,6 +21528,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glDeleteOcclusionQueriesNV")]
public static
unsafe void DeleteOcclusionQueries(Int32 n, Int32* ids)
{
@@ -17438,12 +21536,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glIsOcclusionQueryNV")]
public static
bool IsOcclusionQuery(UInt32 id)
{
return Delegates.glIsOcclusionQueryNV((UInt32)id);
}
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glIsOcclusionQueryNV")]
public static
bool IsOcclusionQuery(Int32 id)
{
@@ -17451,18 +21551,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glBeginOcclusionQueryNV")]
public static
void BeginOcclusionQuery(UInt32 id)
{
Delegates.glBeginOcclusionQueryNV((UInt32)id);
}
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glBeginOcclusionQueryNV")]
public static
void BeginOcclusionQuery(Int32 id)
{
Delegates.glBeginOcclusionQueryNV((UInt32)id);
}
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glEndOcclusionQueryNV")]
public static
void EndOcclusionQuery()
{
@@ -17470,143 +21573,157 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGetOcclusionQueryivNV")]
public static
- void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.NvOcclusionQuery)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGetOcclusionQueryivNV")]
public static
- void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.NvOcclusionQuery)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGetOcclusionQueryivNV")]
public static
- unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] Int32* @params)
{
- Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.NvOcclusionQuery)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGetOcclusionQueryuivNV")]
public static
- void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32[] @params)
+ void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.NvOcclusionQuery)pname, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGetOcclusionQueryuivNV")]
public static
- void GetOcclusionQuery(Int32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetOcclusionQuery(Int32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.NvOcclusionQuery)pname, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGetOcclusionQueryuivNV")]
public static
- void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] out UInt32 @params)
+ void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] out UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.NvOcclusionQuery)pname, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGetOcclusionQueryuivNV")]
public static
- void GetOcclusionQuery(Int32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetOcclusionQuery(Int32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.NvOcclusionQuery)pname, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGetOcclusionQueryuivNV")]
public static
- unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32* @params)
+ unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] UInt32* @params)
{
- Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params);
+ Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.NvOcclusionQuery)pname, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvOcclusionQuery", Version = "1.2", EntryPoint = "glGetOcclusionQueryuivNV")]
public static
- unsafe void GetOcclusionQuery(Int32 id, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetOcclusionQuery(Int32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] Int32* @params)
{
- Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params);
+ Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.NvOcclusionQuery)pname, (UInt32*)@params);
}
+ [AutoGenerated(Category = "NvPointSprite", Version = "1.2", EntryPoint = "glPointParameteriNV")]
public static
- void PointParameter(OpenTK.Graphics.All pname, Int32 param)
+ void PointParameter(OpenTK.Graphics.NvPointSprite pname, Int32 param)
{
- Delegates.glPointParameteriNV((OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glPointParameteriNV((OpenTK.Graphics.NvPointSprite)pname, (Int32)param);
}
+ [AutoGenerated(Category = "NvPointSprite", Version = "1.2", EntryPoint = "glPointParameterivNV")]
public static
- void PointParameterv(OpenTK.Graphics.All pname, Int32[] @params)
+ void PointParameterv(OpenTK.Graphics.NvPointSprite pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glPointParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glPointParameterivNV((OpenTK.Graphics.NvPointSprite)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvPointSprite", Version = "1.2", EntryPoint = "glPointParameterivNV")]
public static
- void PointParameterv(OpenTK.Graphics.All pname, ref Int32 @params)
+ void PointParameterv(OpenTK.Graphics.NvPointSprite pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glPointParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glPointParameterivNV((OpenTK.Graphics.NvPointSprite)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvPointSprite", Version = "1.2", EntryPoint = "glPointParameterivNV")]
public static
- unsafe void PointParameterv(OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void PointParameterv(OpenTK.Graphics.NvPointSprite pname, Int32* @params)
{
- Delegates.glPointParameterivNV((OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glPointParameterivNV((OpenTK.Graphics.NvPointSprite)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fNV")]
public static
void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, Single x, Single y, Single z, Single w)
{
@@ -17619,6 +21736,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fNV")]
public static
void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, Single x, Single y, Single z, Single w)
{
@@ -17632,6 +21750,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fNV")]
public static
void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Single x, Single y, Single z, Single w)
{
@@ -17644,6 +21763,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fNV")]
public static
void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Single x, Single y, Single z, Single w)
{
@@ -17657,6 +21777,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fNV")]
public static
unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single x, Single y, Single z, Single w)
{
@@ -17664,6 +21785,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fNV")]
public static
unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single x, Single y, Single z, Single w)
{
@@ -17671,6 +21793,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dNV")]
public static
void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, Double x, Double y, Double z, Double w)
{
@@ -17683,6 +21806,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dNV")]
public static
void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, Double x, Double y, Double z, Double w)
{
@@ -17696,6 +21820,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dNV")]
public static
void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, Double x, Double y, Double z, Double w)
{
@@ -17708,6 +21833,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dNV")]
public static
void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, Double x, Double y, Double z, Double w)
{
@@ -17721,6 +21847,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dNV")]
public static
unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double x, Double y, Double z, Double w)
{
@@ -17728,6 +21855,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dNV")]
public static
unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double x, Double y, Double z, Double w)
{
@@ -17735,6 +21863,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")]
public static
void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, Single[] v)
{
@@ -17748,6 +21877,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")]
public static
void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, Single[] v)
{
@@ -17762,6 +21892,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")]
public static
void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, ref Single v)
{
@@ -17775,6 +21906,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")]
public static
void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, ref Single v)
{
@@ -17789,6 +21921,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")]
public static
unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single* v)
{
@@ -17796,6 +21929,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")]
public static
unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single* v)
{
@@ -17803,6 +21937,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")]
public static
void ProgramNamedParameter4(UInt32 id, Int32 len, Byte[] name, Double[] v)
{
@@ -17816,6 +21951,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")]
public static
void ProgramNamedParameter4(Int32 id, Int32 len, Byte[] name, Double[] v)
{
@@ -17830,6 +21966,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")]
public static
void ProgramNamedParameter4(UInt32 id, Int32 len, ref Byte name, ref Double v)
{
@@ -17843,6 +21980,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")]
public static
void ProgramNamedParameter4(Int32 id, Int32 len, ref Byte name, ref Double v)
{
@@ -17857,6 +21995,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")]
public static
unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double* v)
{
@@ -17864,6 +22003,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")]
public static
unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double* v)
{
@@ -17871,6 +22011,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")]
public static
void GetProgramNamedParameter(UInt32 id, Int32 len, Byte[] name, [Out] Single[] @params)
{
@@ -17884,6 +22025,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")]
public static
void GetProgramNamedParameter(Int32 id, Int32 len, Byte[] name, [Out] Single[] @params)
{
@@ -17898,6 +22040,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")]
public static
void GetProgramNamedParameter(UInt32 id, Int32 len, ref Byte name, [Out] out Single @params)
{
@@ -17912,6 +22055,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")]
public static
void GetProgramNamedParameter(Int32 id, Int32 len, ref Byte name, [Out] out Single @params)
{
@@ -17927,6 +22071,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")]
public static
unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [Out] Single* @params)
{
@@ -17934,6 +22079,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")]
public static
unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [Out] Single* @params)
{
@@ -17941,6 +22087,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")]
public static
void GetProgramNamedParameter(UInt32 id, Int32 len, Byte[] name, [Out] Double[] @params)
{
@@ -17954,6 +22101,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")]
public static
void GetProgramNamedParameter(Int32 id, Int32 len, Byte[] name, [Out] Double[] @params)
{
@@ -17968,6 +22116,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")]
public static
void GetProgramNamedParameter(UInt32 id, Int32 len, ref Byte name, [Out] out Double @params)
{
@@ -17982,6 +22131,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")]
public static
void GetProgramNamedParameter(Int32 id, Int32 len, ref Byte name, [Out] out Double @params)
{
@@ -17997,6 +22147,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")]
public static
unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [Out] Double* @params)
{
@@ -18004,1903 +22155,1350 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")]
public static
unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [Out] Double* @params)
{
Delegates.glGetProgramNamedParameterdvNV((UInt32)id, (Int32)len, (Byte*)name, (Double*)@params);
}
- [System.CLSCompliant(false)]
- public static
- void Vertex2h(UInt16 x, UInt16 y)
- {
- Delegates.glVertex2hNV((UInt16)x, (UInt16)y);
- }
-
- public static
- void Vertex2h(Int16 x, Int16 y)
- {
- Delegates.glVertex2hNV((UInt16)x, (UInt16)y);
- }
-
- [System.CLSCompliant(false)]
- public static
- void Vertex2h(UInt16[] v)
- {
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glVertex2hvNV((UInt16*)v_ptr);
- }
- }
- }
-
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex2hNV")]
public static
- void Vertex2h(Int16[] v)
+ void Vertex2h(OpenTK.Math.Half x, OpenTK.Math.Half y)
{
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glVertex2hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glVertex2hNV((OpenTK.Math.Half)x, (OpenTK.Math.Half)y);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex2hvNV")]
public static
- void Vertex2h(ref UInt16 v)
+ void Vertex2h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertex2hvNV((UInt16*)v_ptr);
+ Delegates.glVertex2hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex2hvNV")]
public static
- void Vertex2h(ref Int16 v)
+ void Vertex2h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertex2hvNV((UInt16*)v_ptr);
+ Delegates.glVertex2hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex2hvNV")]
public static
- unsafe void Vertex2h(UInt16* v)
- {
- Delegates.glVertex2hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Vertex2h(Int16* v)
- {
- Delegates.glVertex2hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void Vertex3h(UInt16 x, UInt16 y, UInt16 z)
- {
- Delegates.glVertex3hNV((UInt16)x, (UInt16)y, (UInt16)z);
- }
-
- public static
- void Vertex3h(Int16 x, Int16 y, Int16 z)
- {
- Delegates.glVertex3hNV((UInt16)x, (UInt16)y, (UInt16)z);
- }
-
- [System.CLSCompliant(false)]
- public static
- void Vertex3h(UInt16[] v)
+ unsafe void Vertex2h(OpenTK.Math.Half* v)
{
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glVertex3hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glVertex2hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex3hNV")]
public static
- void Vertex3h(Int16[] v)
+ void Vertex3h(OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z)
{
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glVertex3hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glVertex3hNV((OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex3hvNV")]
public static
- void Vertex3h(ref UInt16 v)
+ void Vertex3h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertex3hvNV((UInt16*)v_ptr);
+ Delegates.glVertex3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex3hvNV")]
public static
- void Vertex3h(ref Int16 v)
+ void Vertex3h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertex3hvNV((UInt16*)v_ptr);
+ Delegates.glVertex3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex3hvNV")]
public static
- unsafe void Vertex3h(UInt16* v)
- {
- Delegates.glVertex3hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Vertex3h(Int16* v)
- {
- Delegates.glVertex3hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void Vertex4h(UInt16 x, UInt16 y, UInt16 z, UInt16 w)
- {
- Delegates.glVertex4hNV((UInt16)x, (UInt16)y, (UInt16)z, (UInt16)w);
- }
-
- public static
- 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
- void Vertex4h(UInt16[] v)
+ unsafe void Vertex3h(OpenTK.Math.Half* v)
{
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glVertex4hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glVertex3hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex4hNV")]
public static
- void Vertex4h(Int16[] v)
+ void Vertex4h(OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w)
{
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glVertex4hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glVertex4hNV((OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z, (OpenTK.Math.Half)w);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex4hvNV")]
public static
- void Vertex4h(ref UInt16 v)
+ void Vertex4h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertex4hvNV((UInt16*)v_ptr);
+ Delegates.glVertex4hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex4hvNV")]
public static
- void Vertex4h(ref Int16 v)
+ void Vertex4h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertex4hvNV((UInt16*)v_ptr);
+ Delegates.glVertex4hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertex4hvNV")]
public static
- unsafe void Vertex4h(UInt16* v)
- {
- Delegates.glVertex4hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Vertex4h(Int16* v)
- {
- Delegates.glVertex4hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void Normal3h(UInt16 nx, UInt16 ny, UInt16 nz)
- {
- Delegates.glNormal3hNV((UInt16)nx, (UInt16)ny, (UInt16)nz);
- }
-
- public static
- void Normal3h(Int16 nx, Int16 ny, Int16 nz)
- {
- Delegates.glNormal3hNV((UInt16)nx, (UInt16)ny, (UInt16)nz);
- }
-
- [System.CLSCompliant(false)]
- public static
- void Normal3h(UInt16[] v)
+ unsafe void Vertex4h(OpenTK.Math.Half* v)
{
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glNormal3hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glVertex4hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glNormal3hNV")]
public static
- void Normal3h(Int16[] v)
+ void Normal3h(OpenTK.Math.Half nx, OpenTK.Math.Half ny, OpenTK.Math.Half nz)
{
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glNormal3hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glNormal3hNV((OpenTK.Math.Half)nx, (OpenTK.Math.Half)ny, (OpenTK.Math.Half)nz);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glNormal3hvNV")]
public static
- void Normal3h(ref UInt16 v)
+ void Normal3h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glNormal3hvNV((UInt16*)v_ptr);
+ Delegates.glNormal3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glNormal3hvNV")]
public static
- void Normal3h(ref Int16 v)
+ void Normal3h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glNormal3hvNV((UInt16*)v_ptr);
+ Delegates.glNormal3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glNormal3hvNV")]
public static
- unsafe void Normal3h(UInt16* v)
- {
- Delegates.glNormal3hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Normal3h(Int16* v)
+ unsafe void Normal3h(OpenTK.Math.Half* v)
{
- Delegates.glNormal3hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void Color3h(UInt16 red, UInt16 green, UInt16 blue)
- {
- Delegates.glColor3hNV((UInt16)red, (UInt16)green, (UInt16)blue);
+ Delegates.glNormal3hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor3hNV")]
public static
- void Color3h(Int16 red, Int16 green, Int16 blue)
+ void Color3h(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue)
{
- Delegates.glColor3hNV((UInt16)red, (UInt16)green, (UInt16)blue);
+ Delegates.glColor3hNV((OpenTK.Math.Half)red, (OpenTK.Math.Half)green, (OpenTK.Math.Half)blue);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor3hvNV")]
public static
- void Color3h(UInt16[] v)
+ void Color3h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glColor3hvNV((UInt16*)v_ptr);
+ Delegates.glColor3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor3hvNV")]
public static
- void Color3h(Int16[] v)
+ void Color3h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glColor3hvNV((UInt16*)v_ptr);
+ Delegates.glColor3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor3hvNV")]
public static
- void Color3h(ref UInt16 v)
+ unsafe void Color3h(OpenTK.Math.Half* v)
{
- unsafe
- {
- fixed (UInt16* v_ptr = &v)
- {
- Delegates.glColor3hvNV((UInt16*)v_ptr);
- }
- }
- }
-
- public static
- void Color3h(ref Int16 v)
- {
- unsafe
- {
- fixed (Int16* v_ptr = &v)
- {
- Delegates.glColor3hvNV((UInt16*)v_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Color3h(UInt16* v)
- {
- Delegates.glColor3hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Color3h(Int16* v)
- {
- Delegates.glColor3hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void Color4h(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha)
- {
- Delegates.glColor4hNV((UInt16)red, (UInt16)green, (UInt16)blue, (UInt16)alpha);
- }
-
- public static
- 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
- void Color4h(UInt16[] v)
- {
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glColor4hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glColor3hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor4hNV")]
public static
- void Color4h(Int16[] v)
+ void Color4h(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue, OpenTK.Math.Half alpha)
{
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glColor4hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glColor4hNV((OpenTK.Math.Half)red, (OpenTK.Math.Half)green, (OpenTK.Math.Half)blue, (OpenTK.Math.Half)alpha);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor4hvNV")]
public static
- void Color4h(ref UInt16 v)
+ void Color4h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glColor4hvNV((UInt16*)v_ptr);
+ Delegates.glColor4hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor4hvNV")]
public static
- void Color4h(ref Int16 v)
+ void Color4h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glColor4hvNV((UInt16*)v_ptr);
+ Delegates.glColor4hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glColor4hvNV")]
public static
- unsafe void Color4h(UInt16* v)
- {
- Delegates.glColor4hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void Color4h(Int16* v)
- {
- Delegates.glColor4hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void TexCoord1h(UInt16 s)
+ unsafe void Color4h(OpenTK.Math.Half* v)
{
- Delegates.glTexCoord1hNV((UInt16)s);
+ Delegates.glColor4hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord1hNV")]
public static
- void TexCoord1h(Int16 s)
+ void TexCoord1h(OpenTK.Math.Half s)
{
- Delegates.glTexCoord1hNV((UInt16)s);
+ Delegates.glTexCoord1hNV((OpenTK.Math.Half)s);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord1hvNV")]
public static
- void TexCoord1hv(UInt16[] v)
+ void TexCoord1hv(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glTexCoord1hvNV((UInt16*)v_ptr);
+ Delegates.glTexCoord1hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord1hvNV")]
public static
- void TexCoord1hv(Int16[] v)
+ void TexCoord1hv(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glTexCoord1hvNV((UInt16*)v_ptr);
+ Delegates.glTexCoord1hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord1hvNV")]
public static
- void TexCoord1hv(ref UInt16 v)
+ unsafe void TexCoord1hv(OpenTK.Math.Half* v)
{
- unsafe
- {
- fixed (UInt16* v_ptr = &v)
- {
- Delegates.glTexCoord1hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glTexCoord1hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord2hNV")]
public static
- void TexCoord1hv(ref Int16 v)
+ void TexCoord2h(OpenTK.Math.Half s, OpenTK.Math.Half t)
{
- unsafe
- {
- fixed (Int16* v_ptr = &v)
- {
- Delegates.glTexCoord1hvNV((UInt16*)v_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void TexCoord1hv(UInt16* v)
- {
- Delegates.glTexCoord1hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void TexCoord1hv(Int16* v)
- {
- Delegates.glTexCoord1hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void TexCoord2h(UInt16 s, UInt16 t)
- {
- Delegates.glTexCoord2hNV((UInt16)s, (UInt16)t);
- }
-
- public static
- void TexCoord2h(Int16 s, Int16 t)
- {
- Delegates.glTexCoord2hNV((UInt16)s, (UInt16)t);
+ Delegates.glTexCoord2hNV((OpenTK.Math.Half)s, (OpenTK.Math.Half)t);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord2hvNV")]
public static
- void TexCoord2h(UInt16[] v)
+ void TexCoord2h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glTexCoord2hvNV((UInt16*)v_ptr);
+ Delegates.glTexCoord2hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord2hvNV")]
public static
- void TexCoord2h(Int16[] v)
+ void TexCoord2h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glTexCoord2hvNV((UInt16*)v_ptr);
+ Delegates.glTexCoord2hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord2hvNV")]
public static
- void TexCoord2h(ref UInt16 v)
+ unsafe void TexCoord2h(OpenTK.Math.Half* v)
{
- unsafe
- {
- fixed (UInt16* v_ptr = &v)
- {
- Delegates.glTexCoord2hvNV((UInt16*)v_ptr);
- }
- }
- }
-
- public static
- void TexCoord2h(ref Int16 v)
- {
- unsafe
- {
- fixed (Int16* v_ptr = &v)
- {
- Delegates.glTexCoord2hvNV((UInt16*)v_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void TexCoord2h(UInt16* v)
- {
- Delegates.glTexCoord2hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void TexCoord2h(Int16* v)
- {
- Delegates.glTexCoord2hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void TexCoord3h(UInt16 s, UInt16 t, UInt16 r)
- {
- Delegates.glTexCoord3hNV((UInt16)s, (UInt16)t, (UInt16)r);
- }
-
- public static
- void TexCoord3h(Int16 s, Int16 t, Int16 r)
- {
- Delegates.glTexCoord3hNV((UInt16)s, (UInt16)t, (UInt16)r);
- }
-
- [System.CLSCompliant(false)]
- public static
- void TexCoord3h(UInt16[] v)
- {
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glTexCoord3hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glTexCoord2hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord3hNV")]
public static
- void TexCoord3h(Int16[] v)
+ void TexCoord3h(OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r)
{
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glTexCoord3hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glTexCoord3hNV((OpenTK.Math.Half)s, (OpenTK.Math.Half)t, (OpenTK.Math.Half)r);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord3hvNV")]
public static
- void TexCoord3h(ref UInt16 v)
+ void TexCoord3h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glTexCoord3hvNV((UInt16*)v_ptr);
+ Delegates.glTexCoord3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord3hvNV")]
public static
- void TexCoord3h(ref Int16 v)
+ void TexCoord3h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glTexCoord3hvNV((UInt16*)v_ptr);
+ Delegates.glTexCoord3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord3hvNV")]
public static
- unsafe void TexCoord3h(UInt16* v)
- {
- Delegates.glTexCoord3hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void TexCoord3h(Int16* v)
- {
- Delegates.glTexCoord3hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void TexCoord4h(UInt16 s, UInt16 t, UInt16 r, UInt16 q)
- {
- Delegates.glTexCoord4hNV((UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q);
- }
-
- public static
- 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
- void TexCoord4h(UInt16[] v)
+ unsafe void TexCoord3h(OpenTK.Math.Half* v)
{
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glTexCoord4hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glTexCoord3hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord4hNV")]
public static
- void TexCoord4h(Int16[] v)
+ void TexCoord4h(OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r, OpenTK.Math.Half q)
{
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glTexCoord4hvNV((UInt16*)v_ptr);
- }
- }
+ Delegates.glTexCoord4hNV((OpenTK.Math.Half)s, (OpenTK.Math.Half)t, (OpenTK.Math.Half)r, (OpenTK.Math.Half)q);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord4hvNV")]
public static
- void TexCoord4h(ref UInt16 v)
+ void TexCoord4h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glTexCoord4hvNV((UInt16*)v_ptr);
+ Delegates.glTexCoord4hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord4hvNV")]
public static
- void TexCoord4h(ref Int16 v)
+ void TexCoord4h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glTexCoord4hvNV((UInt16*)v_ptr);
+ Delegates.glTexCoord4hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glTexCoord4hvNV")]
public static
- unsafe void TexCoord4h(UInt16* v)
- {
- Delegates.glTexCoord4hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void TexCoord4h(Int16* v)
- {
- Delegates.glTexCoord4hvNV((UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void MultiTexCoord1h(OpenTK.Graphics.TextureUnit target, UInt16 s)
- {
- Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s);
- }
-
- public static
- void MultiTexCoord1h(OpenTK.Graphics.TextureUnit target, Int16 s)
- {
- Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s);
- }
-
- [System.CLSCompliant(false)]
- public static
- void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, UInt16[] v)
+ unsafe void TexCoord4h(OpenTK.Math.Half* v)
{
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
- }
- }
+ Delegates.glTexCoord4hvNV((OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord1hNV")]
public static
- void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, Int16[] v)
+ void MultiTexCoord1h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s)
{
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
- }
- }
+ Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half)s);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord1hvNV")]
public static
- void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, ref UInt16 v)
+ void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
+ Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord1hvNV")]
public static
- void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, ref Int16 v)
+ void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
+ Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord1hvNV")]
public static
- unsafe void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, UInt16* v)
- {
- Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, Int16* v)
- {
- Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t)
+ unsafe void MultiTexCoord1hv(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v)
{
- Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t);
+ Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord2hNV")]
public static
- void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t)
+ void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t)
{
- Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t);
- }
-
- [System.CLSCompliant(false)]
- public static
- void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, UInt16[] v)
- {
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
- }
- }
- }
-
- public static
- void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, Int16[] v)
- {
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
- }
- }
+ Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half)s, (OpenTK.Math.Half)t);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord2hvNV")]
public static
- void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, ref UInt16 v)
+ void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
+ Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord2hvNV")]
public static
- void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, ref Int16 v)
+ void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
+ Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord2hvNV")]
public static
- unsafe void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, UInt16* v)
- {
- Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, Int16* v)
- {
- Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t, UInt16 r)
+ unsafe void MultiTexCoord2h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v)
{
- Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r);
+ Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord3hNV")]
public static
- void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r)
+ void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r)
{
- Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r);
+ Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half)s, (OpenTK.Math.Half)t, (OpenTK.Math.Half)r);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord3hvNV")]
public static
- void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, UInt16[] v)
+ void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
+ Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord3hvNV")]
public static
- void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, Int16[] v)
+ void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
+ Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord3hvNV")]
public static
- void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, ref UInt16 v)
- {
- unsafe
- {
- fixed (UInt16* v_ptr = &v)
- {
- Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
- }
- }
- }
-
- public static
- void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, ref Int16 v)
+ unsafe void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v)
{
- unsafe
- {
- fixed (Int16* v_ptr = &v)
- {
- Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
- }
- }
+ Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord4hNV")]
public static
- unsafe void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, UInt16* v)
+ void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r, OpenTK.Math.Half q)
{
- Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v);
+ Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half)s, (OpenTK.Math.Half)t, (OpenTK.Math.Half)r, (OpenTK.Math.Half)q);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord4hvNV")]
public static
- unsafe void MultiTexCoord3h(OpenTK.Graphics.TextureUnit target, Int16* v)
- {
- Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t, UInt16 r, UInt16 q)
- {
- Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q);
- }
-
- public static
- void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q)
- {
- Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.TextureUnit)target, (UInt16)s, (UInt16)t, (UInt16)r, (UInt16)q);
- }
-
- [System.CLSCompliant(false)]
- public static
- void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, UInt16[] v)
- {
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
- }
- }
- }
-
- public static
- void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, Int16[] v)
- {
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, ref UInt16 v)
+ void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
+ Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord4hvNV")]
public static
- void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, ref Int16 v)
+ void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v_ptr);
+ Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glMultiTexCoord4hvNV")]
public static
- unsafe void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, UInt16* v)
+ unsafe void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v)
{
- Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void MultiTexCoord4h(OpenTK.Graphics.TextureUnit target, Int16* v)
- {
- Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (UInt16*)v);
- }
-
- [System.CLSCompliant(false)]
- public static
- void FogCoordh(UInt16 fog)
- {
- Delegates.glFogCoordhNV((UInt16)fog);
- }
-
- public static
- void FogCoordh(Int16 fog)
- {
- Delegates.glFogCoordhNV((UInt16)fog);
- }
-
- [System.CLSCompliant(false)]
- public static
- void FogCoordhv(UInt16[] fog)
- {
- unsafe
- {
- fixed (UInt16* fog_ptr = fog)
- {
- Delegates.glFogCoordhvNV((UInt16*)fog_ptr);
- }
- }
+ Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.TextureUnit)target, (OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glFogCoordhNV")]
public static
- void FogCoordhv(Int16[] fog)
+ void FogCoordh(OpenTK.Math.Half fog)
{
- unsafe
- {
- fixed (Int16* fog_ptr = fog)
- {
- Delegates.glFogCoordhvNV((UInt16*)fog_ptr);
- }
- }
+ Delegates.glFogCoordhNV((OpenTK.Math.Half)fog);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glFogCoordhvNV")]
public static
- void FogCoordhv(ref UInt16 fog)
+ void FogCoordhv(OpenTK.Math.Half[] fog)
{
unsafe
{
- fixed (UInt16* fog_ptr = &fog)
+ fixed (OpenTK.Math.Half* fog_ptr = fog)
{
- Delegates.glFogCoordhvNV((UInt16*)fog_ptr);
+ Delegates.glFogCoordhvNV((OpenTK.Math.Half*)fog_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glFogCoordhvNV")]
public static
- void FogCoordhv(ref Int16 fog)
+ void FogCoordhv(ref OpenTK.Math.Half fog)
{
unsafe
{
- fixed (Int16* fog_ptr = &fog)
+ fixed (OpenTK.Math.Half* fog_ptr = &fog)
{
- Delegates.glFogCoordhvNV((UInt16*)fog_ptr);
+ Delegates.glFogCoordhvNV((OpenTK.Math.Half*)fog_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glFogCoordhvNV")]
public static
- unsafe void FogCoordhv(UInt16* fog)
+ unsafe void FogCoordhv(OpenTK.Math.Half* fog)
{
- Delegates.glFogCoordhvNV((UInt16*)fog);
+ Delegates.glFogCoordhvNV((OpenTK.Math.Half*)fog);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glSecondaryColor3hNV")]
public static
- unsafe void FogCoordhv(Int16* fog)
+ void SecondaryColor3h(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue)
{
- Delegates.glFogCoordhvNV((UInt16*)fog);
+ Delegates.glSecondaryColor3hNV((OpenTK.Math.Half)red, (OpenTK.Math.Half)green, (OpenTK.Math.Half)blue);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glSecondaryColor3hvNV")]
public static
- void SecondaryColor3h(UInt16 red, UInt16 green, UInt16 blue)
- {
- Delegates.glSecondaryColor3hNV((UInt16)red, (UInt16)green, (UInt16)blue);
- }
-
- public static
- void SecondaryColor3h(Int16 red, Int16 green, Int16 blue)
- {
- Delegates.glSecondaryColor3hNV((UInt16)red, (UInt16)green, (UInt16)blue);
- }
-
- [System.CLSCompliant(false)]
- public static
- void SecondaryColor3h(UInt16[] v)
- {
- unsafe
- {
- fixed (UInt16* v_ptr = v)
- {
- Delegates.glSecondaryColor3hvNV((UInt16*)v_ptr);
- }
- }
- }
-
- public static
- void SecondaryColor3h(Int16[] v)
- {
- unsafe
- {
- fixed (Int16* v_ptr = v)
- {
- Delegates.glSecondaryColor3hvNV((UInt16*)v_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- void SecondaryColor3h(ref UInt16 v)
+ void SecondaryColor3h(OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glSecondaryColor3hvNV((UInt16*)v_ptr);
+ Delegates.glSecondaryColor3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glSecondaryColor3hvNV")]
public static
- void SecondaryColor3h(ref Int16 v)
+ void SecondaryColor3h(ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glSecondaryColor3hvNV((UInt16*)v_ptr);
+ Delegates.glSecondaryColor3hvNV((OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glSecondaryColor3hvNV")]
public static
- unsafe void SecondaryColor3h(UInt16* v)
+ unsafe void SecondaryColor3h(OpenTK.Math.Half* v)
{
- Delegates.glSecondaryColor3hvNV((UInt16*)v);
+ Delegates.glSecondaryColor3hvNV((OpenTK.Math.Half*)v);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexWeighthNV")]
public static
- unsafe void SecondaryColor3h(Int16* v)
+ void VertexWeighth(OpenTK.Math.Half weight)
{
- Delegates.glSecondaryColor3hvNV((UInt16*)v);
+ Delegates.glVertexWeighthNV((OpenTK.Math.Half)weight);
}
- [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexWeighthvNV")]
public static
- void VertexWeighth(UInt16 weight)
- {
- Delegates.glVertexWeighthNV((UInt16)weight);
- }
-
- public static
- void VertexWeighth(Int16 weight)
- {
- Delegates.glVertexWeighthNV((UInt16)weight);
- }
-
- [System.CLSCompliant(false)]
- public static
- void VertexWeighthv(UInt16[] weight)
+ void VertexWeighthv(OpenTK.Math.Half[] weight)
{
unsafe
{
- fixed (UInt16* weight_ptr = weight)
+ fixed (OpenTK.Math.Half* weight_ptr = weight)
{
- Delegates.glVertexWeighthvNV((UInt16*)weight_ptr);
+ Delegates.glVertexWeighthvNV((OpenTK.Math.Half*)weight_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexWeighthvNV")]
public static
- void VertexWeighthv(Int16[] weight)
+ void VertexWeighthv(ref OpenTK.Math.Half weight)
{
unsafe
{
- fixed (Int16* weight_ptr = weight)
+ fixed (OpenTK.Math.Half* weight_ptr = &weight)
{
- Delegates.glVertexWeighthvNV((UInt16*)weight_ptr);
+ Delegates.glVertexWeighthvNV((OpenTK.Math.Half*)weight_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexWeighthvNV")]
public static
- void VertexWeighthv(ref UInt16 weight)
- {
- unsafe
- {
- fixed (UInt16* weight_ptr = &weight)
- {
- Delegates.glVertexWeighthvNV((UInt16*)weight_ptr);
- }
- }
- }
-
- public static
- void VertexWeighthv(ref Int16 weight)
- {
- unsafe
- {
- fixed (Int16* weight_ptr = &weight)
- {
- Delegates.glVertexWeighthvNV((UInt16*)weight_ptr);
- }
- }
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void VertexWeighthv(UInt16* weight)
- {
- Delegates.glVertexWeighthvNV((UInt16*)weight);
- }
-
- [System.CLSCompliant(false)]
- public static
- unsafe void VertexWeighthv(Int16* weight)
+ unsafe void VertexWeighthv(OpenTK.Math.Half* weight)
{
- Delegates.glVertexWeighthvNV((UInt16*)weight);
+ Delegates.glVertexWeighthvNV((OpenTK.Math.Half*)weight);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hNV")]
public static
- void VertexAttrib1h(UInt32 index, UInt16 x)
+ void VertexAttrib1h(UInt32 index, OpenTK.Math.Half x)
{
- Delegates.glVertexAttrib1hNV((UInt32)index, (UInt16)x);
+ Delegates.glVertexAttrib1hNV((UInt32)index, (OpenTK.Math.Half)x);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hNV")]
public static
- void VertexAttrib1h(Int32 index, Int16 x)
+ void VertexAttrib1h(Int32 index, OpenTK.Math.Half x)
{
- Delegates.glVertexAttrib1hNV((UInt32)index, (UInt16)x);
+ Delegates.glVertexAttrib1hNV((UInt32)index, (OpenTK.Math.Half)x);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hvNV")]
public static
- void VertexAttrib1hv(UInt32 index, UInt16[] v)
+ void VertexAttrib1hv(UInt32 index, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttrib1hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hvNV")]
public static
- void VertexAttrib1hv(Int32 index, Int16[] v)
+ void VertexAttrib1hv(Int32 index, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttrib1hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hvNV")]
public static
- void VertexAttrib1hv(UInt32 index, ref UInt16 v)
+ void VertexAttrib1hv(UInt32 index, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttrib1hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hvNV")]
public static
- void VertexAttrib1hv(Int32 index, ref Int16 v)
+ void VertexAttrib1hv(Int32 index, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttrib1hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hvNV")]
public static
- unsafe void VertexAttrib1hv(UInt32 index, UInt16* v)
+ unsafe void VertexAttrib1hv(UInt32 index, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttrib1hvNV((UInt32)index, (UInt16*)v);
+ Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib1hvNV")]
public static
- unsafe void VertexAttrib1hv(Int32 index, Int16* v)
+ unsafe void VertexAttrib1hv(Int32 index, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttrib1hvNV((UInt32)index, (UInt16*)v);
+ Delegates.glVertexAttrib1hvNV((UInt32)index, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hNV")]
public static
- void VertexAttrib2h(UInt32 index, UInt16 x, UInt16 y)
+ void VertexAttrib2h(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y)
{
- Delegates.glVertexAttrib2hNV((UInt32)index, (UInt16)x, (UInt16)y);
+ Delegates.glVertexAttrib2hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hNV")]
public static
- void VertexAttrib2h(Int32 index, Int16 x, Int16 y)
+ void VertexAttrib2h(Int32 index, OpenTK.Math.Half x, OpenTK.Math.Half y)
{
- Delegates.glVertexAttrib2hNV((UInt32)index, (UInt16)x, (UInt16)y);
+ Delegates.glVertexAttrib2hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")]
public static
- void VertexAttrib2h(UInt32 index, UInt16[] v)
+ void VertexAttrib2h(UInt32 index, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttrib2hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")]
public static
- void VertexAttrib2h(Int32 index, Int16[] v)
+ void VertexAttrib2h(Int32 index, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttrib2hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")]
public static
- void VertexAttrib2h(UInt32 index, ref UInt16 v)
+ void VertexAttrib2h(UInt32 index, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttrib2hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")]
public static
- void VertexAttrib2h(Int32 index, ref Int16 v)
+ void VertexAttrib2h(Int32 index, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttrib2hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")]
public static
- unsafe void VertexAttrib2h(UInt32 index, UInt16* v)
+ unsafe void VertexAttrib2h(UInt32 index, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttrib2hvNV((UInt32)index, (UInt16*)v);
+ Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib2hvNV")]
public static
- unsafe void VertexAttrib2h(Int32 index, Int16* v)
+ unsafe void VertexAttrib2h(Int32 index, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttrib2hvNV((UInt32)index, (UInt16*)v);
+ Delegates.glVertexAttrib2hvNV((UInt32)index, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hNV")]
public static
- void VertexAttrib3h(UInt32 index, UInt16 x, UInt16 y, UInt16 z)
+ void VertexAttrib3h(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z)
{
- Delegates.glVertexAttrib3hNV((UInt32)index, (UInt16)x, (UInt16)y, (UInt16)z);
+ Delegates.glVertexAttrib3hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hNV")]
public static
- void VertexAttrib3h(Int32 index, Int16 x, Int16 y, Int16 z)
+ void VertexAttrib3h(Int32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z)
{
- Delegates.glVertexAttrib3hNV((UInt32)index, (UInt16)x, (UInt16)y, (UInt16)z);
+ Delegates.glVertexAttrib3hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")]
public static
- void VertexAttrib3h(UInt32 index, UInt16[] v)
+ void VertexAttrib3h(UInt32 index, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttrib3hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")]
public static
- void VertexAttrib3h(Int32 index, Int16[] v)
+ void VertexAttrib3h(Int32 index, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttrib3hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")]
public static
- void VertexAttrib3h(UInt32 index, ref UInt16 v)
+ void VertexAttrib3h(UInt32 index, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttrib3hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")]
public static
- void VertexAttrib3h(Int32 index, ref Int16 v)
+ void VertexAttrib3h(Int32 index, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttrib3hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")]
public static
- unsafe void VertexAttrib3h(UInt32 index, UInt16* v)
+ unsafe void VertexAttrib3h(UInt32 index, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttrib3hvNV((UInt32)index, (UInt16*)v);
+ Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib3hvNV")]
public static
- unsafe void VertexAttrib3h(Int32 index, Int16* v)
+ unsafe void VertexAttrib3h(Int32 index, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttrib3hvNV((UInt32)index, (UInt16*)v);
+ Delegates.glVertexAttrib3hvNV((UInt32)index, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hNV")]
public static
- void VertexAttrib4h(UInt32 index, UInt16 x, UInt16 y, UInt16 z, UInt16 w)
+ void VertexAttrib4h(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w)
{
- Delegates.glVertexAttrib4hNV((UInt32)index, (UInt16)x, (UInt16)y, (UInt16)z, (UInt16)w);
+ Delegates.glVertexAttrib4hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z, (OpenTK.Math.Half)w);
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hNV")]
public static
- void VertexAttrib4h(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w)
+ void VertexAttrib4h(Int32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w)
{
- Delegates.glVertexAttrib4hNV((UInt32)index, (UInt16)x, (UInt16)y, (UInt16)z, (UInt16)w);
+ Delegates.glVertexAttrib4hNV((UInt32)index, (OpenTK.Math.Half)x, (OpenTK.Math.Half)y, (OpenTK.Math.Half)z, (OpenTK.Math.Half)w);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")]
public static
- void VertexAttrib4h(UInt32 index, UInt16[] v)
+ void VertexAttrib4h(UInt32 index, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttrib4hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")]
public static
- void VertexAttrib4h(Int32 index, Int16[] v)
+ void VertexAttrib4h(Int32 index, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttrib4hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")]
public static
- void VertexAttrib4h(UInt32 index, ref UInt16 v)
+ void VertexAttrib4h(UInt32 index, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttrib4hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")]
public static
- void VertexAttrib4h(Int32 index, ref Int16 v)
+ void VertexAttrib4h(Int32 index, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttrib4hvNV((UInt32)index, (UInt16*)v_ptr);
+ Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")]
public static
- unsafe void VertexAttrib4h(UInt32 index, UInt16* v)
+ unsafe void VertexAttrib4h(UInt32 index, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttrib4hvNV((UInt32)index, (UInt16*)v);
+ Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttrib4hvNV")]
public static
- unsafe void VertexAttrib4h(Int32 index, Int16* v)
+ unsafe void VertexAttrib4h(Int32 index, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttrib4hvNV((UInt32)index, (UInt16*)v);
+ Delegates.glVertexAttrib4hvNV((UInt32)index, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")]
public static
- void VertexAttribs1h(UInt32 index, Int32 n, UInt16[] v)
+ void VertexAttribs1h(UInt32 index, Int32 n, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")]
public static
- void VertexAttribs1h(Int32 index, Int32 n, Int16[] v)
+ void VertexAttribs1h(Int32 index, Int32 n, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")]
public static
- void VertexAttribs1h(UInt32 index, Int32 n, ref UInt16 v)
+ void VertexAttribs1h(UInt32 index, Int32 n, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")]
public static
- void VertexAttribs1h(Int32 index, Int32 n, ref Int16 v)
+ void VertexAttribs1h(Int32 index, Int32 n, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")]
public static
- unsafe void VertexAttribs1h(UInt32 index, Int32 n, UInt16* v)
+ unsafe void VertexAttribs1h(UInt32 index, Int32 n, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (UInt16*)v);
+ Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs1hvNV")]
public static
- unsafe void VertexAttribs1h(Int32 index, Int32 n, Int16* v)
+ unsafe void VertexAttribs1h(Int32 index, Int32 n, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (UInt16*)v);
+ Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")]
public static
- void VertexAttribs2h(UInt32 index, Int32 n, UInt16[] v)
+ void VertexAttribs2h(UInt32 index, Int32 n, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")]
public static
- void VertexAttribs2h(Int32 index, Int32 n, Int16[] v)
+ void VertexAttribs2h(Int32 index, Int32 n, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")]
public static
- void VertexAttribs2h(UInt32 index, Int32 n, ref UInt16 v)
+ void VertexAttribs2h(UInt32 index, Int32 n, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")]
public static
- void VertexAttribs2h(Int32 index, Int32 n, ref Int16 v)
+ void VertexAttribs2h(Int32 index, Int32 n, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")]
public static
- unsafe void VertexAttribs2h(UInt32 index, Int32 n, UInt16* v)
+ unsafe void VertexAttribs2h(UInt32 index, Int32 n, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (UInt16*)v);
+ Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs2hvNV")]
public static
- unsafe void VertexAttribs2h(Int32 index, Int32 n, Int16* v)
+ unsafe void VertexAttribs2h(Int32 index, Int32 n, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (UInt16*)v);
+ Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")]
public static
- void VertexAttribs3h(UInt32 index, Int32 n, UInt16[] v)
+ void VertexAttribs3h(UInt32 index, Int32 n, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")]
public static
- void VertexAttribs3h(Int32 index, Int32 n, Int16[] v)
+ void VertexAttribs3h(Int32 index, Int32 n, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")]
public static
- void VertexAttribs3h(UInt32 index, Int32 n, ref UInt16 v)
+ void VertexAttribs3h(UInt32 index, Int32 n, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")]
public static
- void VertexAttribs3h(Int32 index, Int32 n, ref Int16 v)
+ void VertexAttribs3h(Int32 index, Int32 n, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")]
public static
- unsafe void VertexAttribs3h(UInt32 index, Int32 n, UInt16* v)
+ unsafe void VertexAttribs3h(UInt32 index, Int32 n, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (UInt16*)v);
+ Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs3hvNV")]
public static
- unsafe void VertexAttribs3h(Int32 index, Int32 n, Int16* v)
+ unsafe void VertexAttribs3h(Int32 index, Int32 n, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (UInt16*)v);
+ Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")]
public static
- void VertexAttribs4h(UInt32 index, Int32 n, UInt16[] v)
+ void VertexAttribs4h(UInt32 index, Int32 n, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (UInt16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")]
public static
- void VertexAttribs4h(Int32 index, Int32 n, Int16[] v)
+ void VertexAttribs4h(Int32 index, Int32 n, OpenTK.Math.Half[] v)
{
unsafe
{
- fixed (Int16* v_ptr = v)
+ fixed (OpenTK.Math.Half* v_ptr = v)
{
- Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")]
public static
- void VertexAttribs4h(UInt32 index, Int32 n, ref UInt16 v)
+ void VertexAttribs4h(UInt32 index, Int32 n, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (UInt16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")]
public static
- void VertexAttribs4h(Int32 index, Int32 n, ref Int16 v)
+ void VertexAttribs4h(Int32 index, Int32 n, ref OpenTK.Math.Half v)
{
unsafe
{
- fixed (Int16* v_ptr = &v)
+ fixed (OpenTK.Math.Half* v_ptr = &v)
{
- Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (UInt16*)v_ptr);
+ Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")]
public static
- unsafe void VertexAttribs4h(UInt32 index, Int32 n, UInt16* v)
+ unsafe void VertexAttribs4h(UInt32 index, Int32 n, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (UInt16*)v);
+ Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvHalfFloat", Version = "1.2", EntryPoint = "glVertexAttribs4hvNV")]
public static
- unsafe void VertexAttribs4h(Int32 index, Int32 n, Int16* v)
+ unsafe void VertexAttribs4h(Int32 index, Int32 n, OpenTK.Math.Half* v)
{
- Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (UInt16*)v);
+ Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (OpenTK.Math.Half*)v);
}
+ [AutoGenerated(Category = "NvPixelDataRange", Version = "1.2", EntryPoint = "glPixelDataRangeNV")]
public static
- void PixelDataRange(OpenTK.Graphics.All target, Int32 length, [Out] IntPtr pointer)
+ void PixelDataRange(OpenTK.Graphics.NvPixelDataRange target, Int32 length, [Out] IntPtr pointer)
{
unsafe
{
- Delegates.glPixelDataRangeNV((OpenTK.Graphics.All)target, (Int32)length, (IntPtr)pointer);
+ Delegates.glPixelDataRangeNV((OpenTK.Graphics.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "NvPixelDataRange", Version = "1.2", EntryPoint = "glPixelDataRangeNV")]
public static
- void PixelDataRange(OpenTK.Graphics.All target, Int32 length, [In, Out] object pointer)
+ void PixelDataRange(OpenTK.Graphics.NvPixelDataRange target, Int32 length, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glPixelDataRangeNV((OpenTK.Graphics.All)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glPixelDataRangeNV((OpenTK.Graphics.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -19909,12 +23507,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvPixelDataRange", Version = "1.2", EntryPoint = "glFlushPixelDataRangeNV")]
public static
- void FlushPixelDataRange(OpenTK.Graphics.All target)
+ void FlushPixelDataRange(OpenTK.Graphics.NvPixelDataRange target)
{
- Delegates.glFlushPixelDataRangeNV((OpenTK.Graphics.All)target);
+ Delegates.glFlushPixelDataRangeNV((OpenTK.Graphics.NvPixelDataRange)target);
}
+ [AutoGenerated(Category = "NvPrimitiveRestart", Version = "1.2", EntryPoint = "glPrimitiveRestartNV")]
public static
void PrimitiveRestart()
{
@@ -19922,12 +23522,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvPrimitiveRestart", Version = "1.2", EntryPoint = "glPrimitiveRestartIndexNV")]
public static
void PrimitiveRestartIndex(UInt32 index)
{
Delegates.glPrimitiveRestartIndexNV((UInt32)index);
}
+ [AutoGenerated(Category = "NvPrimitiveRestart", Version = "1.2", EntryPoint = "glPrimitiveRestartIndexNV")]
public static
void PrimitiveRestartIndex(Int32 index)
{
@@ -19935,657 +23537,722 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4iNV")]
public static
- void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w)
+ void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w)
{
- Delegates.glProgramLocalParameterI4iNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w);
+ Delegates.glProgramLocalParameterI4iNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4ivNV")]
public static
- void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32[] @params)
+ void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr);
+ Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4ivNV")]
public static
- void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, ref Int32 @params)
+ void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr);
+ Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4ivNV")]
public static
- unsafe void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32* @params)
+ unsafe void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32* @params)
{
- Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params);
+ Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParametersI4ivNV")]
public static
- void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32[] @params)
+ void ProgramLocalParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
+ Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParametersI4ivNV")]
public static
- void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref Int32 @params)
+ void ProgramLocalParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
+ Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParametersI4ivNV")]
public static
- unsafe void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32* @params)
+ unsafe void ProgramLocalParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params)
{
- Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params);
+ Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4uiNV")]
public static
- void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w)
+ void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w)
{
- Delegates.glProgramLocalParameterI4uiNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
+ Delegates.glProgramLocalParameterI4uiNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4uiNV")]
public static
- void ProgramLocalParameterI4(OpenTK.Graphics.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w)
+ void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w)
{
- Delegates.glProgramLocalParameterI4uiNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
+ Delegates.glProgramLocalParameterI4uiNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4uivNV")]
public static
- void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32[] @params)
+ void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4uivNV")]
public static
- void ProgramLocalParameterI4(OpenTK.Graphics.All target, Int32 index, Int32[] @params)
+ void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4uivNV")]
public static
- void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, ref UInt32 @params)
+ void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, ref UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4uivNV")]
public static
- void ProgramLocalParameterI4(OpenTK.Graphics.All target, Int32 index, ref Int32 @params)
+ void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4uivNV")]
public static
- unsafe void ProgramLocalParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32* @params)
+ unsafe void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32* @params)
{
- Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params);
+ Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParameterI4uivNV")]
public static
- unsafe void ProgramLocalParameterI4(OpenTK.Graphics.All target, Int32 index, Int32* @params)
+ unsafe void ProgramLocalParameterI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32* @params)
{
- Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params);
+ Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParametersI4uivNV")]
public static
- void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32[] @params)
+ void ProgramLocalParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParametersI4uivNV")]
public static
- void ProgramLocalParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, Int32[] @params)
+ void ProgramLocalParametersI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32 count, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParametersI4uivNV")]
public static
- void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref UInt32 @params)
+ void ProgramLocalParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, ref UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParametersI4uivNV")]
public static
- void ProgramLocalParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Int32 @params)
+ void ProgramLocalParametersI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32 count, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParametersI4uivNV")]
public static
- unsafe void ProgramLocalParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32* @params)
+ unsafe void ProgramLocalParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params)
{
- Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params);
+ Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramLocalParametersI4uivNV")]
public static
- unsafe void ProgramLocalParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, Int32* @params)
+ unsafe void ProgramLocalParametersI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32 count, Int32* @params)
{
- Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params);
+ Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4iNV")]
public static
- void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w)
+ void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w)
{
- Delegates.glProgramEnvParameterI4iNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w);
+ Delegates.glProgramEnvParameterI4iNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4ivNV")]
public static
- void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32[] @params)
+ void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr);
+ Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4ivNV")]
public static
- void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, ref Int32 @params)
+ void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr);
+ Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4ivNV")]
public static
- unsafe void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, Int32* @params)
+ unsafe void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32* @params)
{
- Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params);
+ Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParametersI4ivNV")]
public static
- void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32[] @params)
+ void ProgramEnvParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
+ Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParametersI4ivNV")]
public static
- void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref Int32 @params)
+ void ProgramEnvParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
+ Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParametersI4ivNV")]
public static
- unsafe void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32* @params)
+ unsafe void ProgramEnvParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params)
{
- Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Int32*)@params);
+ Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4uiNV")]
public static
- void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w)
+ void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w)
{
- Delegates.glProgramEnvParameterI4uiNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
+ Delegates.glProgramEnvParameterI4uiNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4uiNV")]
public static
- void ProgramEnvParameterI4(OpenTK.Graphics.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w)
+ void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w)
{
- Delegates.glProgramEnvParameterI4uiNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
+ Delegates.glProgramEnvParameterI4uiNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4uivNV")]
public static
- void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32[] @params)
+ void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4uivNV")]
public static
- void ProgramEnvParameterI4(OpenTK.Graphics.All target, Int32 index, Int32[] @params)
+ void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4uivNV")]
public static
- void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, ref UInt32 @params)
+ void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, ref UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4uivNV")]
public static
- void ProgramEnvParameterI4(OpenTK.Graphics.All target, Int32 index, ref Int32 @params)
+ void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4uivNV")]
public static
- unsafe void ProgramEnvParameterI4(OpenTK.Graphics.All target, UInt32 index, UInt32* @params)
+ unsafe void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32* @params)
{
- Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params);
+ Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParameterI4uivNV")]
public static
- unsafe void ProgramEnvParameterI4(OpenTK.Graphics.All target, Int32 index, Int32* @params)
+ unsafe void ProgramEnvParameterI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32* @params)
{
- Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params);
+ Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParametersI4uivNV")]
public static
- void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32[] @params)
+ void ProgramEnvParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParametersI4uivNV")]
public static
- void ProgramEnvParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, Int32[] @params)
+ void ProgramEnvParametersI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32 count, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParametersI4uivNV")]
public static
- void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref UInt32 @params)
+ void ProgramEnvParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, ref UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParametersI4uivNV")]
public static
- void ProgramEnvParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Int32 @params)
+ void ProgramEnvParametersI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32 count, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParametersI4uivNV")]
public static
- unsafe void ProgramEnvParametersI4(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32* @params)
+ unsafe void ProgramEnvParametersI4(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params)
{
- Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params);
+ Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glProgramEnvParametersI4uivNV")]
public static
- unsafe void ProgramEnvParametersI4(OpenTK.Graphics.All target, Int32 index, Int32 count, Int32* @params)
+ unsafe void ProgramEnvParametersI4(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, Int32 count, Int32* @params)
{
- Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (UInt32*)@params);
+ Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramLocalParameterIivNV")]
public static
- void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] Int32[] @params)
+ void GetProgramLocalParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr);
+ Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramLocalParameterIivNV")]
public static
- void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] out Int32 @params)
+ void GetProgramLocalParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr);
+ Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramLocalParameterIivNV")]
public static
- unsafe void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* @params)
+ unsafe void GetProgramLocalParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] Int32* @params)
{
- Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params);
+ Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramLocalParameterIuivNV")]
public static
- void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32[] @params)
+ void GetProgramLocalParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramLocalParameterIuivNV")]
public static
- void GetProgramLocalParameterI(OpenTK.Graphics.All target, Int32 index, [Out] Int32[] @params)
+ void GetProgramLocalParameterI(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramLocalParameterIuivNV")]
public static
- void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] out UInt32 @params)
+ void GetProgramLocalParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] out UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramLocalParameterIuivNV")]
public static
- void GetProgramLocalParameterI(OpenTK.Graphics.All target, Int32 index, [Out] out Int32 @params)
+ void GetProgramLocalParameterI(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramLocalParameterIuivNV")]
public static
- unsafe void GetProgramLocalParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32* @params)
+ unsafe void GetProgramLocalParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] UInt32* @params)
{
- Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params);
+ Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramLocalParameterIuivNV")]
public static
- unsafe void GetProgramLocalParameterI(OpenTK.Graphics.All target, Int32 index, [Out] Int32* @params)
+ unsafe void GetProgramLocalParameterI(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, [Out] Int32* @params)
{
- Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params);
+ Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramEnvParameterIivNV")]
public static
- void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] Int32[] @params)
+ void GetProgramEnvParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr);
+ Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramEnvParameterIivNV")]
public static
- void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] out Int32 @params)
+ void GetProgramEnvParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params_ptr);
+ Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramEnvParameterIivNV")]
public static
- unsafe void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* @params)
+ unsafe void GetProgramEnvParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] Int32* @params)
{
- Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)@params);
+ Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramEnvParameterIuivNV")]
public static
- void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32[] @params)
+ void GetProgramEnvParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramEnvParameterIuivNV")]
public static
- void GetProgramEnvParameterI(OpenTK.Graphics.All target, Int32 index, [Out] Int32[] @params)
+ void GetProgramEnvParameterI(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramEnvParameterIuivNV")]
public static
- void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] out UInt32 @params)
+ void GetProgramEnvParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] out UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramEnvParameterIuivNV")]
public static
- void GetProgramEnvParameterI(OpenTK.Graphics.All target, Int32 index, [Out] out Int32 @params)
+ void GetProgramEnvParameterI(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params_ptr);
+ Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramEnvParameterIuivNV")]
public static
- unsafe void GetProgramEnvParameterI(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32* @params)
+ unsafe void GetProgramEnvParameterI(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] UInt32* @params)
{
- Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params);
+ Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGpuProgram4", Version = "1.3", EntryPoint = "glGetProgramEnvParameterIuivNV")]
public static
- unsafe void GetProgramEnvParameterI(OpenTK.Graphics.All target, Int32 index, [Out] Int32* @params)
+ unsafe void GetProgramEnvParameterI(OpenTK.Graphics.NvGpuProgram4 target, Int32 index, [Out] Int32* @params)
{
- Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32*)@params);
+ Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params);
}
+ [AutoGenerated(Category = "NvGeometryProgram4", Version = "2.0", EntryPoint = "glProgramVertexLimitNV")]
public static
- void ProgramVertexLimit(OpenTK.Graphics.All target, Int32 limit)
+ void ProgramVertexLimit(OpenTK.Graphics.NvGeometryProgram4 target, Int32 limit)
{
- Delegates.glProgramVertexLimitNV((OpenTK.Graphics.All)target, (Int32)limit);
+ Delegates.glProgramVertexLimitNV((OpenTK.Graphics.NvGeometryProgram4)target, (Int32)limit);
}
+ [AutoGenerated(Category = "NvDepthBufferFloat", Version = "2.0", EntryPoint = "glDepthRangedNV")]
public static
void DepthRange(Double zNear, Double zFar)
{
Delegates.glDepthRangedNV((Double)zNear, (Double)zFar);
}
+ [AutoGenerated(Category = "NvDepthBufferFloat", Version = "2.0", EntryPoint = "glClearDepthdNV")]
public static
void ClearDepth(Double depth)
{
Delegates.glClearDepthdNV((Double)depth);
}
+ [AutoGenerated(Category = "NvDepthBufferFloat", Version = "2.0", EntryPoint = "glDepthBoundsdNV")]
public static
void DepthBounds(Double zmin, Double zmax)
{
Delegates.glDepthBoundsdNV((Double)zmin, (Double)zmax);
}
+ [AutoGenerated(Category = "NvFramebufferMultisampleCoverage", Version = "1.5", EntryPoint = "glRenderbufferStorageMultisampleCoverageNV")]
public static
void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height)
{
@@ -20593,172 +24260,189 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersfvNV")]
public static
- void ProgramBufferParameters(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Single[] @params)
+ void ProgramBufferParameters(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersfvNV")]
public static
- void ProgramBufferParameters(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, Single[] @params)
+ void ProgramBufferParameters(OpenTK.Graphics.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersfvNV")]
public static
- void ProgramBufferParameters(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, ref Single @params)
+ void ProgramBufferParameters(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersfvNV")]
public static
- void ProgramBufferParameters(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, ref Single @params)
+ void ProgramBufferParameters(OpenTK.Graphics.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersfvNV")]
public static
- unsafe void ProgramBufferParameters(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Single* @params)
+ unsafe void ProgramBufferParameters(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Single* @params)
{
- Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params);
+ Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersfvNV")]
public static
- unsafe void ProgramBufferParameters(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, Single* @params)
+ unsafe void ProgramBufferParameters(OpenTK.Graphics.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, Single* @params)
{
- Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params);
+ Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersIivNV")]
public static
- void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Int32[] @params)
+ void ProgramBufferParametersI(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
+ Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersIivNV")]
public static
- void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, ref Int32 @params)
+ void ProgramBufferParametersI(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
+ Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersIivNV")]
public static
- unsafe void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params)
+ unsafe void ProgramBufferParametersI(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params)
{
- Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params);
+ Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersIuivNV")]
public static
- void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32[] @params)
+ void ProgramBufferParametersI(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersIuivNV")]
public static
- void ProgramBufferParametersI(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, Int32[] @params)
+ void ProgramBufferParametersI(OpenTK.Graphics.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersIuivNV")]
public static
- void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, ref UInt32 @params)
+ void ProgramBufferParametersI(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, ref UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersIuivNV")]
public static
- void ProgramBufferParametersI(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, ref Int32 @params)
+ void ProgramBufferParametersI(OpenTK.Graphics.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersIuivNV")]
public static
- unsafe void ProgramBufferParametersI(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params)
+ unsafe void ProgramBufferParametersI(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params)
{
- Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params);
+ Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvParameterBufferObject", Version = "1.2", EntryPoint = "glProgramBufferParametersIuivNV")]
public static
- unsafe void ProgramBufferParametersI(OpenTK.Graphics.All target, Int32 buffer, Int32 index, Int32 count, Int32* @params)
+ unsafe void ProgramBufferParametersI(OpenTK.Graphics.NvParameterBufferObject target, Int32 buffer, Int32 index, Int32 count, Int32* @params)
{
- Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.All)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params);
+ Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.NvParameterBufferObject)target, (UInt32)buffer, (UInt32)index, (Int32)count, (UInt32*)@params);
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glBeginTransformFeedbackNV")]
public static
- void BeginTransformFeedback(OpenTK.Graphics.All primitiveMode)
+ void BeginTransformFeedback(OpenTK.Graphics.NvTransformFeedback primitiveMode)
{
- Delegates.glBeginTransformFeedbackNV((OpenTK.Graphics.All)primitiveMode);
+ Delegates.glBeginTransformFeedbackNV((OpenTK.Graphics.NvTransformFeedback)primitiveMode);
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glEndTransformFeedbackNV")]
public static
void EndTransformFeedback()
{
@@ -20766,179 +24450,199 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackAttribsNV")]
public static
- void TransformFeedbackAttrib(UInt32 count, Int32[] attribs, OpenTK.Graphics.All bufferMode)
+ void TransformFeedbackAttrib(UInt32 count, Int32[] attribs, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
unsafe
{
fixed (Int32* attribs_ptr = attribs)
{
- Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
}
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackAttribsNV")]
public static
- void TransformFeedbackAttrib(Int32 count, Int32[] attribs, OpenTK.Graphics.All bufferMode)
+ void TransformFeedbackAttrib(Int32 count, Int32[] attribs, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
unsafe
{
fixed (Int32* attribs_ptr = attribs)
{
- Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackAttribsNV")]
public static
- void TransformFeedbackAttrib(UInt32 count, ref Int32 attribs, OpenTK.Graphics.All bufferMode)
+ void TransformFeedbackAttrib(UInt32 count, ref Int32 attribs, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
unsafe
{
fixed (Int32* attribs_ptr = &attribs)
{
- Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
}
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackAttribsNV")]
public static
- void TransformFeedbackAttrib(Int32 count, ref Int32 attribs, OpenTK.Graphics.All bufferMode)
+ void TransformFeedbackAttrib(Int32 count, ref Int32 attribs, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
unsafe
{
fixed (Int32* attribs_ptr = &attribs)
{
- Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackAttribsNV")]
public static
- unsafe void TransformFeedbackAttrib(UInt32 count, Int32* attribs, OpenTK.Graphics.All bufferMode)
+ unsafe void TransformFeedbackAttrib(UInt32 count, Int32* attribs, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
- Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackAttribsNV")]
public static
- unsafe void TransformFeedbackAttrib(Int32 count, Int32* attribs, OpenTK.Graphics.All bufferMode)
+ unsafe void TransformFeedbackAttrib(Int32 count, Int32* attribs, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
- Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glBindBufferRangeNV")]
public static
- void BindBufferRange(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size)
+ void BindBufferRange(OpenTK.Graphics.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size)
{
- Delegates.glBindBufferRangeNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size);
+ Delegates.glBindBufferRangeNV((OpenTK.Graphics.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size);
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glBindBufferRangeNV")]
public static
- void BindBufferRange(OpenTK.Graphics.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size)
+ void BindBufferRange(OpenTK.Graphics.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size)
{
- Delegates.glBindBufferRangeNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size);
+ Delegates.glBindBufferRangeNV((OpenTK.Graphics.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glBindBufferOffsetNV")]
public static
- void BindBufferOffset(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer, IntPtr offset)
+ void BindBufferOffset(OpenTK.Graphics.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset)
{
- Delegates.glBindBufferOffsetNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset);
+ Delegates.glBindBufferOffsetNV((OpenTK.Graphics.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset);
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glBindBufferOffsetNV")]
public static
- void BindBufferOffset(OpenTK.Graphics.All target, Int32 index, Int32 buffer, IntPtr offset)
+ void BindBufferOffset(OpenTK.Graphics.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset)
{
- Delegates.glBindBufferOffsetNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset);
+ Delegates.glBindBufferOffsetNV((OpenTK.Graphics.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glBindBufferBaseNV")]
public static
- void BindBufferBase(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer)
+ void BindBufferBase(OpenTK.Graphics.NvTransformFeedback target, UInt32 index, UInt32 buffer)
{
- Delegates.glBindBufferBaseNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer);
+ Delegates.glBindBufferBaseNV((OpenTK.Graphics.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer);
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glBindBufferBaseNV")]
public static
- void BindBufferBase(OpenTK.Graphics.All target, Int32 index, Int32 buffer)
+ void BindBufferBase(OpenTK.Graphics.NvTransformFeedback target, Int32 index, Int32 buffer)
{
- Delegates.glBindBufferBaseNV((OpenTK.Graphics.All)target, (UInt32)index, (UInt32)buffer);
+ Delegates.glBindBufferBaseNV((OpenTK.Graphics.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackVaryingsNV")]
public static
- void TransformFeedbackVarying(UInt32 program, Int32 count, Int32[] locations, OpenTK.Graphics.All bufferMode)
+ void TransformFeedbackVarying(UInt32 program, Int32 count, Int32[] locations, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
unsafe
{
fixed (Int32* locations_ptr = locations)
{
- Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
}
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackVaryingsNV")]
public static
- void TransformFeedbackVarying(Int32 program, Int32 count, Int32[] locations, OpenTK.Graphics.All bufferMode)
+ void TransformFeedbackVarying(Int32 program, Int32 count, Int32[] locations, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
unsafe
{
fixed (Int32* locations_ptr = locations)
{
- Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackVaryingsNV")]
public static
- void TransformFeedbackVarying(UInt32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.All bufferMode)
+ void TransformFeedbackVarying(UInt32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
unsafe
{
fixed (Int32* locations_ptr = &locations)
{
- Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
}
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackVaryingsNV")]
public static
- void TransformFeedbackVarying(Int32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.All bufferMode)
+ void TransformFeedbackVarying(Int32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
unsafe
{
fixed (Int32* locations_ptr = &locations)
{
- Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackVaryingsNV")]
public static
- unsafe void TransformFeedbackVarying(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.All bufferMode)
+ unsafe void TransformFeedbackVarying(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
- Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glTransformFeedbackVaryingsNV")]
public static
- unsafe void TransformFeedbackVarying(Int32 program, Int32 count, Int32* locations, OpenTK.Graphics.All bufferMode)
+ unsafe void TransformFeedbackVarying(Int32 program, Int32 count, Int32* locations, OpenTK.Graphics.NvTransformFeedback bufferMode)
{
- Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.All)bufferMode);
+ Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.NvTransformFeedback)bufferMode);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glActiveVaryingNV")]
public static
void ActiveVarying(UInt32 program, System.String name)
{
Delegates.glActiveVaryingNV((UInt32)program, (System.String)name);
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glActiveVaryingNV")]
public static
void ActiveVarying(Int32 program, System.String name)
{
@@ -20946,12 +24650,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetVaryingLocationNV")]
public static
Int32 GetVaryingLocation(UInt32 program, System.String name)
{
return Delegates.glGetVaryingLocationNV((UInt32)program, (System.String)name);
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetVaryingLocationNV")]
public static
Int32 GetVaryingLocation(Int32 program, System.String name)
{
@@ -20959,45 +24665,48 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetActiveVaryingNV")]
public static
- void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name)
+ void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.NvTransformFeedback[] type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = length)
fixed (Int32* size_ptr = size)
- fixed (OpenTK.Graphics.All* type_ptr = type)
+ fixed (OpenTK.Graphics.NvTransformFeedback* type_ptr = type)
{
- Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.NvTransformFeedback*)type_ptr, (System.Text.StringBuilder)name);
}
}
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetActiveVaryingNV")]
public static
- void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name)
+ void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.NvTransformFeedback[] type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = length)
fixed (Int32* size_ptr = size)
- fixed (OpenTK.Graphics.All* type_ptr = type)
+ fixed (OpenTK.Graphics.NvTransformFeedback* type_ptr = type)
{
- Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.NvTransformFeedback*)type_ptr, (System.Text.StringBuilder)name);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetActiveVaryingNV")]
public static
- void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name)
+ void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.NvTransformFeedback type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = &length)
fixed (Int32* size_ptr = &size)
- fixed (OpenTK.Graphics.All* type_ptr = &type)
+ fixed (OpenTK.Graphics.NvTransformFeedback* type_ptr = &type)
{
- Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.NvTransformFeedback*)type_ptr, (System.Text.StringBuilder)name);
length = *length_ptr;
size = *size_ptr;
type = *type_ptr;
@@ -21005,16 +24714,17 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetActiveVaryingNV")]
public static
- void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name)
+ void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.NvTransformFeedback type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = &length)
fixed (Int32* size_ptr = &size)
- fixed (OpenTK.Graphics.All* type_ptr = &type)
+ fixed (OpenTK.Graphics.NvTransformFeedback* type_ptr = &type)
{
- Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.NvTransformFeedback*)type_ptr, (System.Text.StringBuilder)name);
length = *length_ptr;
size = *size_ptr;
type = *type_ptr;
@@ -21023,20 +24733,23 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetActiveVaryingNV")]
public static
- unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name)
+ unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.NvTransformFeedback* type, [Out] System.Text.StringBuilder name)
{
- Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.All*)type, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.NvTransformFeedback*)type, (System.Text.StringBuilder)name);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetActiveVaryingNV")]
public static
- unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name)
+ unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.NvTransformFeedback* type, [Out] System.Text.StringBuilder name)
{
- Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.All*)type, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.NvTransformFeedback*)type, (System.Text.StringBuilder)name);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetTransformFeedbackVaryingNV")]
public static
void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] Int32[] location)
{
@@ -21049,6 +24762,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetTransformFeedbackVaryingNV")]
public static
void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] Int32[] location)
{
@@ -21062,6 +24776,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetTransformFeedbackVaryingNV")]
public static
void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] out Int32 location)
{
@@ -21075,6 +24790,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetTransformFeedbackVaryingNV")]
public static
void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] out Int32 location)
{
@@ -21089,6 +24805,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetTransformFeedbackVaryingNV")]
public static
unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] Int32* location)
{
@@ -21096,34 +24813,364 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback", Version = "1.5", EntryPoint = "glGetTransformFeedbackVaryingNV")]
public static
unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] Int32* location)
{
Delegates.glGetTransformFeedbackVaryingNV((UInt32)program, (UInt32)index, (Int32*)location);
}
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvConditionalRender", Version = "", EntryPoint = "glBeginConditionalRenderNV")]
+ public static
+ void BeginConditionalRender(UInt32 id, OpenTK.Graphics.NvConditionalRender mode)
+ {
+ Delegates.glBeginConditionalRenderNV((UInt32)id, (OpenTK.Graphics.NvConditionalRender)mode);
+ }
+
+ [AutoGenerated(Category = "NvConditionalRender", Version = "", EntryPoint = "glBeginConditionalRenderNV")]
+ public static
+ void BeginConditionalRender(Int32 id, OpenTK.Graphics.NvConditionalRender mode)
+ {
+ Delegates.glBeginConditionalRenderNV((UInt32)id, (OpenTK.Graphics.NvConditionalRender)mode);
+ }
+
+ [AutoGenerated(Category = "NvConditionalRender", Version = "", EntryPoint = "glEndConditionalRenderNV")]
+ public static
+ void EndConditionalRender()
+ {
+ Delegates.glEndConditionalRenderNV();
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glGetMultisamplefvNV")]
+ public static
+ void GetMultisample(OpenTK.Graphics.NvExplicitMultisample pname, UInt32 index, [Out] Single[] val)
+ {
+ unsafe
+ {
+ fixed (Single* val_ptr = val)
+ {
+ Delegates.glGetMultisamplefvNV((OpenTK.Graphics.NvExplicitMultisample)pname, (UInt32)index, (Single*)val_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glGetMultisamplefvNV")]
+ public static
+ void GetMultisample(OpenTK.Graphics.NvExplicitMultisample pname, Int32 index, [Out] Single[] val)
+ {
+ unsafe
+ {
+ fixed (Single* val_ptr = val)
+ {
+ Delegates.glGetMultisamplefvNV((OpenTK.Graphics.NvExplicitMultisample)pname, (UInt32)index, (Single*)val_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glGetMultisamplefvNV")]
+ public static
+ void GetMultisample(OpenTK.Graphics.NvExplicitMultisample pname, UInt32 index, [Out] out Single val)
+ {
+ unsafe
+ {
+ fixed (Single* val_ptr = &val)
+ {
+ Delegates.glGetMultisamplefvNV((OpenTK.Graphics.NvExplicitMultisample)pname, (UInt32)index, (Single*)val_ptr);
+ val = *val_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glGetMultisamplefvNV")]
+ public static
+ void GetMultisample(OpenTK.Graphics.NvExplicitMultisample pname, Int32 index, [Out] out Single val)
+ {
+ unsafe
+ {
+ fixed (Single* val_ptr = &val)
+ {
+ Delegates.glGetMultisamplefvNV((OpenTK.Graphics.NvExplicitMultisample)pname, (UInt32)index, (Single*)val_ptr);
+ val = *val_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glGetMultisamplefvNV")]
+ public static
+ unsafe void GetMultisample(OpenTK.Graphics.NvExplicitMultisample pname, UInt32 index, [Out] Single* val)
+ {
+ Delegates.glGetMultisamplefvNV((OpenTK.Graphics.NvExplicitMultisample)pname, (UInt32)index, (Single*)val);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glGetMultisamplefvNV")]
+ public static
+ unsafe void GetMultisample(OpenTK.Graphics.NvExplicitMultisample pname, Int32 index, [Out] Single* val)
+ {
+ Delegates.glGetMultisamplefvNV((OpenTK.Graphics.NvExplicitMultisample)pname, (UInt32)index, (Single*)val);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glSampleMaskIndexedNV")]
+ public static
+ void SampleMaskIndexe(UInt32 index, UInt32 mask)
+ {
+ Delegates.glSampleMaskIndexedNV((UInt32)index, (UInt32)mask);
+ }
+
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glSampleMaskIndexedNV")]
+ public static
+ void SampleMaskIndexe(Int32 index, Int32 mask)
+ {
+ Delegates.glSampleMaskIndexedNV((UInt32)index, (UInt32)mask);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glTexRenderbufferNV")]
+ public static
+ void TexRenderbuffer(OpenTK.Graphics.TextureTarget target, UInt32 renderbuffer)
+ {
+ Delegates.glTexRenderbufferNV((OpenTK.Graphics.TextureTarget)target, (UInt32)renderbuffer);
+ }
+
+ [AutoGenerated(Category = "NvExplicitMultisample", Version = "", EntryPoint = "glTexRenderbufferNV")]
+ public static
+ void TexRenderbuffer(OpenTK.Graphics.TextureTarget target, Int32 renderbuffer)
+ {
+ Delegates.glTexRenderbufferNV((OpenTK.Graphics.TextureTarget)target, (UInt32)renderbuffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")]
+ public static
+ void BindTransformFeedback(OpenTK.Graphics.NvTransformFeedback2 target, UInt32 id)
+ {
+ Delegates.glBindTransformFeedbackNV((OpenTK.Graphics.NvTransformFeedback2)target, (UInt32)id);
+ }
+
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")]
+ public static
+ void BindTransformFeedback(OpenTK.Graphics.NvTransformFeedback2 target, Int32 id)
+ {
+ Delegates.glBindTransformFeedbackNV((OpenTK.Graphics.NvTransformFeedback2)target, (UInt32)id);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")]
+ public static
+ void DeleteTransformFeedback(Int32 n, UInt32[] ids)
+ {
+ unsafe
+ {
+ fixed (UInt32* ids_ptr = ids)
+ {
+ Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")]
+ public static
+ void DeleteTransformFeedback(Int32 n, Int32[] ids)
+ {
+ unsafe
+ {
+ fixed (Int32* ids_ptr = ids)
+ {
+ Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")]
+ public static
+ void DeleteTransformFeedback(Int32 n, ref UInt32 ids)
+ {
+ unsafe
+ {
+ fixed (UInt32* ids_ptr = &ids)
+ {
+ Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")]
+ public static
+ void DeleteTransformFeedback(Int32 n, ref Int32 ids)
+ {
+ unsafe
+ {
+ fixed (Int32* ids_ptr = &ids)
+ {
+ Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")]
+ public static
+ unsafe void DeleteTransformFeedback(Int32 n, UInt32* ids)
+ {
+ Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")]
+ public static
+ unsafe void DeleteTransformFeedback(Int32 n, Int32* ids)
+ {
+ Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")]
+ public static
+ void GenTransformFeedback(Int32 n, [Out] UInt32[] ids)
+ {
+ unsafe
+ {
+ fixed (UInt32* ids_ptr = ids)
+ {
+ Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")]
+ public static
+ void GenTransformFeedback(Int32 n, [Out] Int32[] ids)
+ {
+ unsafe
+ {
+ fixed (Int32* ids_ptr = ids)
+ {
+ Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")]
+ public static
+ void GenTransformFeedback(Int32 n, [Out] out UInt32 ids)
+ {
+ unsafe
+ {
+ fixed (UInt32* ids_ptr = &ids)
+ {
+ Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr);
+ ids = *ids_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")]
+ public static
+ void GenTransformFeedback(Int32 n, [Out] out Int32 ids)
+ {
+ unsafe
+ {
+ fixed (Int32* ids_ptr = &ids)
+ {
+ Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr);
+ ids = *ids_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")]
+ public static
+ unsafe void GenTransformFeedback(Int32 n, [Out] UInt32* ids)
+ {
+ Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")]
+ public static
+ unsafe void GenTransformFeedback(Int32 n, [Out] Int32* ids)
+ {
+ Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glIsTransformFeedbackNV")]
+ public static
+ bool IsTransformFeedback(UInt32 id)
+ {
+ return Delegates.glIsTransformFeedbackNV((UInt32)id);
+ }
+
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glIsTransformFeedbackNV")]
+ public static
+ bool IsTransformFeedback(Int32 id)
+ {
+ return Delegates.glIsTransformFeedbackNV((UInt32)id);
+ }
+
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glPauseTransformFeedbackNV")]
+ public static
+ void PauseTransformFeedback()
+ {
+ Delegates.glPauseTransformFeedbackNV();
+ }
+
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glResumeTransformFeedbackNV")]
+ public static
+ void ResumeTransformFeedback()
+ {
+ Delegates.glResumeTransformFeedbackNV();
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")]
+ public static
+ void DrawTransformFeedback(OpenTK.Graphics.NvTransformFeedback2 mode, UInt32 id)
+ {
+ Delegates.glDrawTransformFeedbackNV((OpenTK.Graphics.NvTransformFeedback2)mode, (UInt32)id);
+ }
+
+ [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")]
+ public static
+ void DrawTransformFeedback(OpenTK.Graphics.NvTransformFeedback2 mode, Int32 id)
+ {
+ Delegates.glDrawTransformFeedbackNV((OpenTK.Graphics.NvTransformFeedback2)mode, (UInt32)id);
+ }
+
}
public static partial class Arb
{
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glActiveTextureARB")]
public static
void ActiveTexture(OpenTK.Graphics.TextureUnit texture)
{
Delegates.glActiveTextureARB((OpenTK.Graphics.TextureUnit)texture);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glClientActiveTextureARB")]
public static
void ClientActiveTexture(OpenTK.Graphics.TextureUnit texture)
{
Delegates.glClientActiveTextureARB((OpenTK.Graphics.TextureUnit)texture);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1dARB")]
public static
void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Double s)
{
Delegates.glMultiTexCoord1dARB((OpenTK.Graphics.TextureUnit)target, (Double)s);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1dvARB")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Double[] v)
{
@@ -21136,6 +25183,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1dvARB")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Double v)
{
@@ -21149,18 +25197,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1dvARB")]
public static
unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Double* v)
{
Delegates.glMultiTexCoord1dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1fARB")]
public static
void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Single s)
{
Delegates.glMultiTexCoord1fARB((OpenTK.Graphics.TextureUnit)target, (Single)s);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1fvARB")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Single[] v)
{
@@ -21173,6 +25224,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1fvARB")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Single v)
{
@@ -21186,18 +25238,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1fvARB")]
public static
unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Single* v)
{
Delegates.glMultiTexCoord1fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1iARB")]
public static
void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Int32 s)
{
Delegates.glMultiTexCoord1iARB((OpenTK.Graphics.TextureUnit)target, (Int32)s);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1ivARB")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int32[] v)
{
@@ -21210,6 +25265,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1ivARB")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Int32 v)
{
@@ -21223,18 +25279,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1ivARB")]
public static
unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int32* v)
{
Delegates.glMultiTexCoord1ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1sARB")]
public static
void MultiTexCoord1(OpenTK.Graphics.TextureUnit target, Int16 s)
{
Delegates.glMultiTexCoord1sARB((OpenTK.Graphics.TextureUnit)target, (Int16)s);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1svARB")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int16[] v)
{
@@ -21247,6 +25306,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1svARB")]
public static
void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, ref Int16 v)
{
@@ -21260,18 +25320,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord1svARB")]
public static
unsafe void MultiTexCoord1v(OpenTK.Graphics.TextureUnit target, Int16* v)
{
Delegates.glMultiTexCoord1svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2dARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double s, Double t)
{
Delegates.glMultiTexCoord2dARB((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2dvARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double[] v)
{
@@ -21284,6 +25347,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2dvARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Double v)
{
@@ -21297,18 +25361,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2dvARB")]
public static
unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Double* v)
{
Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2fARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single s, Single t)
{
Delegates.glMultiTexCoord2fARB((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2fvARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single[] v)
{
@@ -21321,6 +25388,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2fvARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Single v)
{
@@ -21334,18 +25402,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2fvARB")]
public static
unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Single* v)
{
Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2iARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t)
{
Delegates.glMultiTexCoord2iARB((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2ivARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32[] v)
{
@@ -21358,6 +25429,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2ivARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Int32 v)
{
@@ -21371,18 +25443,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2ivARB")]
public static
unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int32* v)
{
Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2sARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t)
{
Delegates.glMultiTexCoord2sARB((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2svARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16[] v)
{
@@ -21395,6 +25470,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2svARB")]
public static
void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, ref Int16 v)
{
@@ -21408,18 +25484,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord2svARB")]
public static
unsafe void MultiTexCoord2(OpenTK.Graphics.TextureUnit target, Int16* v)
{
Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3dARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r)
{
Delegates.glMultiTexCoord3dARB((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t, (Double)r);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3dvARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double[] v)
{
@@ -21432,6 +25511,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3dvARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Double v)
{
@@ -21445,18 +25525,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3dvARB")]
public static
unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Double* v)
{
Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3fARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r)
{
Delegates.glMultiTexCoord3fARB((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t, (Single)r);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3fvARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single[] v)
{
@@ -21469,6 +25552,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3fvARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Single v)
{
@@ -21482,18 +25566,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3fvARB")]
public static
unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Single* v)
{
Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3iARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r)
{
Delegates.glMultiTexCoord3iARB((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3ivARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32[] v)
{
@@ -21506,6 +25593,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3ivARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Int32 v)
{
@@ -21519,18 +25607,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3ivARB")]
public static
unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int32* v)
{
Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3sARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r)
{
Delegates.glMultiTexCoord3sARB((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3svARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16[] v)
{
@@ -21543,6 +25634,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3svARB")]
public static
void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, ref Int16 v)
{
@@ -21556,18 +25648,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord3svARB")]
public static
unsafe void MultiTexCoord3(OpenTK.Graphics.TextureUnit target, Int16* v)
{
Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4dARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double s, Double t, Double r, Double q)
{
Delegates.glMultiTexCoord4dARB((OpenTK.Graphics.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4dvARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double[] v)
{
@@ -21580,6 +25675,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4dvARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Double v)
{
@@ -21593,18 +25689,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4dvARB")]
public static
unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Double* v)
{
Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.TextureUnit)target, (Double*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4fARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single s, Single t, Single r, Single q)
{
Delegates.glMultiTexCoord4fARB((OpenTK.Graphics.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4fvARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single[] v)
{
@@ -21617,6 +25716,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4fvARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Single v)
{
@@ -21630,18 +25730,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4fvARB")]
public static
unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Single* v)
{
Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.TextureUnit)target, (Single*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4iARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q)
{
Delegates.glMultiTexCoord4iARB((OpenTK.Graphics.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4ivARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32[] v)
{
@@ -21654,6 +25757,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4ivARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Int32 v)
{
@@ -21667,18 +25771,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4ivARB")]
public static
unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int32* v)
{
Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.TextureUnit)target, (Int32*)v);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4sARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q)
{
Delegates.glMultiTexCoord4sARB((OpenTK.Graphics.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q);
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4svARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16[] v)
{
@@ -21691,6 +25798,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4svARB")]
public static
void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, ref Int16 v)
{
@@ -21704,12 +25812,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMultitexture", Version = "1.2", EntryPoint = "glMultiTexCoord4svARB")]
public static
unsafe void MultiTexCoord4(OpenTK.Graphics.TextureUnit target, Int16* v)
{
Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.TextureUnit)target, (Int16*)v);
}
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glLoadTransposeMatrixfARB")]
public static
void LoadTransposeMatrix(Single[] m)
{
@@ -21722,6 +25832,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glLoadTransposeMatrixfARB")]
public static
void LoadTransposeMatrix(ref Single m)
{
@@ -21735,12 +25846,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glLoadTransposeMatrixfARB")]
public static
unsafe void LoadTransposeMatrix(Single* m)
{
Delegates.glLoadTransposeMatrixfARB((Single*)m);
}
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glLoadTransposeMatrixdARB")]
public static
void LoadTransposeMatrix(Double[] m)
{
@@ -21753,6 +25866,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glLoadTransposeMatrixdARB")]
public static
void LoadTransposeMatrix(ref Double m)
{
@@ -21766,12 +25880,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glLoadTransposeMatrixdARB")]
public static
unsafe void LoadTransposeMatrix(Double* m)
{
Delegates.glLoadTransposeMatrixdARB((Double*)m);
}
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glMultTransposeMatrixfARB")]
public static
void MultTransposeMatrix(Single[] m)
{
@@ -21784,6 +25900,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glMultTransposeMatrixfARB")]
public static
void MultTransposeMatrix(ref Single m)
{
@@ -21797,12 +25914,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glMultTransposeMatrixfARB")]
public static
unsafe void MultTransposeMatrix(Single* m)
{
Delegates.glMultTransposeMatrixfARB((Single*)m);
}
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glMultTransposeMatrixdARB")]
public static
void MultTransposeMatrix(Double[] m)
{
@@ -21815,6 +25934,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glMultTransposeMatrixdARB")]
public static
void MultTransposeMatrix(ref Double m)
{
@@ -21828,18 +25948,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbTransposeMatrix", Version = "1.2", EntryPoint = "glMultTransposeMatrixdARB")]
public static
unsafe void MultTransposeMatrix(Double* m)
{
Delegates.glMultTransposeMatrixdARB((Double*)m);
}
+ [AutoGenerated(Category = "ArbMultisample", Version = "1.2", EntryPoint = "glSampleCoverageARB")]
public static
void SampleCoverage(Single value, bool invert)
{
Delegates.glSampleCoverageARB((Single)value, (bool)invert);
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexImage3DARB")]
public static
void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data)
{
@@ -21849,6 +25972,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexImage3DARB")]
public static
void CompressedTexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object data)
{
@@ -21866,6 +25990,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexImage2DARB")]
public static
void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data)
{
@@ -21875,6 +26000,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexImage2DARB")]
public static
void CompressedTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object data)
{
@@ -21892,6 +26018,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexImage1DARB")]
public static
void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data)
{
@@ -21901,6 +26028,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexImage1DARB")]
public static
void CompressedTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object data)
{
@@ -21918,6 +26046,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexSubImage3DARB")]
public static
void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data)
{
@@ -21927,6 +26056,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexSubImage3DARB")]
public static
void CompressedTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object data)
{
@@ -21944,6 +26074,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexSubImage2DARB")]
public static
void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data)
{
@@ -21953,6 +26084,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexSubImage2DARB")]
public static
void CompressedTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object data)
{
@@ -21970,6 +26102,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexSubImage1DARB")]
public static
void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr data)
{
@@ -21979,6 +26112,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glCompressedTexSubImage1DARB")]
public static
void CompressedTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object data)
{
@@ -21996,6 +26130,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glGetCompressedTexImageARB")]
public static
void GetCompressedTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, [Out] IntPtr img)
{
@@ -22005,6 +26140,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbTextureCompression", Version = "1.2", EntryPoint = "glGetCompressedTexImageARB")]
public static
void GetCompressedTexImage(OpenTK.Graphics.TextureTarget target, Int32 level, [In, Out] object img)
{
@@ -22022,44 +26158,49 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbPointParameters", Version = "1.0", EntryPoint = "glPointParameterfARB")]
public static
- void PointParameter(OpenTK.Graphics.All pname, Single param)
+ void PointParameter(OpenTK.Graphics.ArbPointParameters pname, Single param)
{
- Delegates.glPointParameterfARB((OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glPointParameterfARB((OpenTK.Graphics.ArbPointParameters)pname, (Single)param);
}
+ [AutoGenerated(Category = "ArbPointParameters", Version = "1.0", EntryPoint = "glPointParameterfvARB")]
public static
- void PointParameterv(OpenTK.Graphics.All pname, Single[] @params)
+ void PointParameterv(OpenTK.Graphics.ArbPointParameters pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glPointParameterfvARB((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPointParameterfvARB((OpenTK.Graphics.ArbPointParameters)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ArbPointParameters", Version = "1.0", EntryPoint = "glPointParameterfvARB")]
public static
- void PointParameterv(OpenTK.Graphics.All pname, ref Single @params)
+ void PointParameterv(OpenTK.Graphics.ArbPointParameters pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glPointParameterfvARB((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPointParameterfvARB((OpenTK.Graphics.ArbPointParameters)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbPointParameters", Version = "1.0", EntryPoint = "glPointParameterfvARB")]
public static
- unsafe void PointParameterv(OpenTK.Graphics.All pname, Single* @params)
+ unsafe void PointParameterv(OpenTK.Graphics.ArbPointParameters pname, Single* @params)
{
- Delegates.glPointParameterfvARB((OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glPointParameterfvARB((OpenTK.Graphics.ArbPointParameters)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightbvARB")]
public static
void Weight(Int32 size, SByte[] weights)
{
@@ -22073,6 +26214,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightbvARB")]
public static
void Weight(Int32 size, ref SByte weights)
{
@@ -22086,12 +26228,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightbvARB")]
public static
unsafe void Weight(Int32 size, SByte* weights)
{
Delegates.glWeightbvARB((Int32)size, (SByte*)weights);
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightfvARB")]
public static
void Weight(Int32 size, Single[] weights)
{
@@ -22104,6 +26248,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightfvARB")]
public static
void Weight(Int32 size, ref Single weights)
{
@@ -22117,12 +26262,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightfvARB")]
public static
unsafe void Weight(Int32 size, Single* weights)
{
Delegates.glWeightfvARB((Int32)size, (Single*)weights);
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightdvARB")]
public static
void Weight(Int32 size, Double[] weights)
{
@@ -22135,6 +26282,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightdvARB")]
public static
void Weight(Int32 size, ref Double weights)
{
@@ -22148,12 +26296,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightdvARB")]
public static
unsafe void Weight(Int32 size, Double* weights)
{
Delegates.glWeightdvARB((Int32)size, (Double*)weights);
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightubvARB")]
public static
void Weight(Int32 size, Byte[] weights)
{
@@ -22166,6 +26316,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightubvARB")]
public static
void Weight(Int32 size, ref Byte weights)
{
@@ -22179,6 +26330,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightubvARB")]
public static
unsafe void Weight(Int32 size, Byte* weights)
{
@@ -22186,6 +26338,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightusvARB")]
public static
void Weight(Int32 size, UInt16[] weights)
{
@@ -22198,6 +26351,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightusvARB")]
public static
void Weight(Int32 size, Int16[] weights)
{
@@ -22211,6 +26365,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightusvARB")]
public static
void Weight(Int32 size, ref UInt16 weights)
{
@@ -22223,6 +26378,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightusvARB")]
public static
void Weight(Int32 size, ref Int16 weights)
{
@@ -22236,6 +26392,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightusvARB")]
public static
unsafe void Weight(Int32 size, UInt16* weights)
{
@@ -22243,6 +26400,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightusvARB")]
public static
unsafe void Weight(Int32 size, Int16* weights)
{
@@ -22250,6 +26408,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightuivARB")]
public static
void Weight(Int32 size, UInt32[] weights)
{
@@ -22262,6 +26421,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightuivARB")]
public static
void Weight(Int32 size, Int32[] weights)
{
@@ -22275,6 +26435,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightuivARB")]
public static
void Weight(Int32 size, ref UInt32 weights)
{
@@ -22287,6 +26448,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightuivARB")]
public static
void Weight(Int32 size, ref Int32 weights)
{
@@ -22300,6 +26462,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightuivARB")]
public static
unsafe void Weight(Int32 size, UInt32* weights)
{
@@ -22307,30 +26470,33 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightuivARB")]
public static
unsafe void Weight(Int32 size, Int32* weights)
{
Delegates.glWeightuivARB((Int32)size, (UInt32*)weights);
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightPointerARB")]
public static
- void WeightPointer(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void WeightPointer(Int32 size, OpenTK.Graphics.ArbVertexBlend type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glWeightPointerARB")]
public static
- void WeightPointer(Int32 size, OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void WeightPointer(Int32 size, OpenTK.Graphics.ArbVertexBlend type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -22339,18 +26505,21 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBlend", Version = "1.1", EntryPoint = "glVertexBlendARB")]
public static
void VertexBlend(Int32 count)
{
Delegates.glVertexBlendARB((Int32)count);
}
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glCurrentPaletteMatrixARB")]
public static
void CurrentPaletteMatrix(Int32 index)
{
Delegates.glCurrentPaletteMatrixARB((Int32)index);
}
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexubvARB")]
public static
void MatrixIndex(Int32 size, Byte[] indices)
{
@@ -22363,6 +26532,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexubvARB")]
public static
void MatrixIndex(Int32 size, ref Byte indices)
{
@@ -22376,6 +26546,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexubvARB")]
public static
unsafe void MatrixIndex(Int32 size, Byte* indices)
{
@@ -22383,6 +26554,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexusvARB")]
public static
void MatrixIndex(Int32 size, UInt16[] indices)
{
@@ -22395,6 +26567,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexusvARB")]
public static
void MatrixIndex(Int32 size, Int16[] indices)
{
@@ -22408,6 +26581,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexusvARB")]
public static
void MatrixIndex(Int32 size, ref UInt16 indices)
{
@@ -22420,6 +26594,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexusvARB")]
public static
void MatrixIndex(Int32 size, ref Int16 indices)
{
@@ -22433,6 +26608,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexusvARB")]
public static
unsafe void MatrixIndex(Int32 size, UInt16* indices)
{
@@ -22440,6 +26616,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexusvARB")]
public static
unsafe void MatrixIndex(Int32 size, Int16* indices)
{
@@ -22447,6 +26624,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexuivARB")]
public static
void MatrixIndex(Int32 size, UInt32[] indices)
{
@@ -22459,6 +26637,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexuivARB")]
public static
void MatrixIndex(Int32 size, Int32[] indices)
{
@@ -22472,6 +26651,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexuivARB")]
public static
void MatrixIndex(Int32 size, ref UInt32 indices)
{
@@ -22484,6 +26664,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexuivARB")]
public static
void MatrixIndex(Int32 size, ref Int32 indices)
{
@@ -22497,6 +26678,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexuivARB")]
public static
unsafe void MatrixIndex(Int32 size, UInt32* indices)
{
@@ -22504,30 +26686,33 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexuivARB")]
public static
unsafe void MatrixIndex(Int32 size, Int32* indices)
{
Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices);
}
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexPointerARB")]
public static
- void MatrixIndexPointer(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ArbMatrixPalette type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "ArbMatrixPalette", Version = "1.1", EntryPoint = "glMatrixIndexPointerARB")]
public static
- void MatrixIndexPointer(Int32 size, OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ArbMatrixPalette type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -22536,12 +26721,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2dARB")]
public static
void WindowPos2(Double x, Double y)
{
Delegates.glWindowPos2dARB((Double)x, (Double)y);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2dvARB")]
public static
void WindowPos2(Double[] v)
{
@@ -22554,6 +26741,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2dvARB")]
public static
void WindowPos2(ref Double v)
{
@@ -22567,18 +26755,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2dvARB")]
public static
unsafe void WindowPos2(Double* v)
{
Delegates.glWindowPos2dvARB((Double*)v);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2fARB")]
public static
void WindowPos2(Single x, Single y)
{
Delegates.glWindowPos2fARB((Single)x, (Single)y);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2fvARB")]
public static
void WindowPos2(Single[] v)
{
@@ -22591,6 +26782,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2fvARB")]
public static
void WindowPos2(ref Single v)
{
@@ -22604,18 +26796,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2fvARB")]
public static
unsafe void WindowPos2(Single* v)
{
Delegates.glWindowPos2fvARB((Single*)v);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2iARB")]
public static
void WindowPos2(Int32 x, Int32 y)
{
Delegates.glWindowPos2iARB((Int32)x, (Int32)y);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2ivARB")]
public static
void WindowPos2(Int32[] v)
{
@@ -22628,6 +26823,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2ivARB")]
public static
void WindowPos2(ref Int32 v)
{
@@ -22641,18 +26837,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2ivARB")]
public static
unsafe void WindowPos2(Int32* v)
{
Delegates.glWindowPos2ivARB((Int32*)v);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2sARB")]
public static
void WindowPos2(Int16 x, Int16 y)
{
Delegates.glWindowPos2sARB((Int16)x, (Int16)y);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2svARB")]
public static
void WindowPos2(Int16[] v)
{
@@ -22665,6 +26864,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2svARB")]
public static
void WindowPos2(ref Int16 v)
{
@@ -22678,18 +26878,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos2svARB")]
public static
unsafe void WindowPos2(Int16* v)
{
Delegates.glWindowPos2svARB((Int16*)v);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3dARB")]
public static
void WindowPos3(Double x, Double y, Double z)
{
Delegates.glWindowPos3dARB((Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3dvARB")]
public static
void WindowPos3(Double[] v)
{
@@ -22702,6 +26905,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3dvARB")]
public static
void WindowPos3(ref Double v)
{
@@ -22715,18 +26919,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3dvARB")]
public static
unsafe void WindowPos3(Double* v)
{
Delegates.glWindowPos3dvARB((Double*)v);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3fARB")]
public static
void WindowPos3(Single x, Single y, Single z)
{
Delegates.glWindowPos3fARB((Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3fvARB")]
public static
void WindowPos3(Single[] v)
{
@@ -22739,6 +26946,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3fvARB")]
public static
void WindowPos3(ref Single v)
{
@@ -22752,18 +26960,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3fvARB")]
public static
unsafe void WindowPos3(Single* v)
{
Delegates.glWindowPos3fvARB((Single*)v);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3iARB")]
public static
void WindowPos3(Int32 x, Int32 y, Int32 z)
{
Delegates.glWindowPos3iARB((Int32)x, (Int32)y, (Int32)z);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3ivARB")]
public static
void WindowPos3(Int32[] v)
{
@@ -22776,6 +26987,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3ivARB")]
public static
void WindowPos3(ref Int32 v)
{
@@ -22789,18 +27001,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3ivARB")]
public static
unsafe void WindowPos3(Int32* v)
{
Delegates.glWindowPos3ivARB((Int32*)v);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3sARB")]
public static
void WindowPos3(Int16 x, Int16 y, Int16 z)
{
Delegates.glWindowPos3sARB((Int16)x, (Int16)y, (Int16)z);
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3svARB")]
public static
void WindowPos3(Int16[] v)
{
@@ -22813,6 +27028,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3svARB")]
public static
void WindowPos3(ref Int16 v)
{
@@ -22826,6 +27042,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbWindowPos", Version = "1.0", EntryPoint = "glWindowPos3svARB")]
public static
unsafe void WindowPos3(Int16* v)
{
@@ -22833,12 +27050,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1dARB")]
public static
void VertexAttrib1(UInt32 index, Double x)
{
Delegates.glVertexAttrib1dARB((UInt32)index, (Double)x);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1dARB")]
public static
void VertexAttrib1(Int32 index, Double x)
{
@@ -22846,6 +27065,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1dvARB")]
public static
void VertexAttrib1v(UInt32 index, Double[] v)
{
@@ -22858,6 +27078,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1dvARB")]
public static
void VertexAttrib1v(Int32 index, Double[] v)
{
@@ -22871,6 +27092,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1dvARB")]
public static
void VertexAttrib1v(UInt32 index, ref Double v)
{
@@ -22883,6 +27105,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1dvARB")]
public static
void VertexAttrib1v(Int32 index, ref Double v)
{
@@ -22896,6 +27119,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1dvARB")]
public static
unsafe void VertexAttrib1v(UInt32 index, Double* v)
{
@@ -22903,6 +27127,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1dvARB")]
public static
unsafe void VertexAttrib1v(Int32 index, Double* v)
{
@@ -22910,12 +27135,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1fARB")]
public static
void VertexAttrib1(UInt32 index, Single x)
{
Delegates.glVertexAttrib1fARB((UInt32)index, (Single)x);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1fARB")]
public static
void VertexAttrib1(Int32 index, Single x)
{
@@ -22923,6 +27150,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1fvARB")]
public static
void VertexAttrib1v(UInt32 index, Single[] v)
{
@@ -22935,6 +27163,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1fvARB")]
public static
void VertexAttrib1v(Int32 index, Single[] v)
{
@@ -22948,6 +27177,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1fvARB")]
public static
void VertexAttrib1v(UInt32 index, ref Single v)
{
@@ -22960,6 +27190,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1fvARB")]
public static
void VertexAttrib1v(Int32 index, ref Single v)
{
@@ -22973,6 +27204,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1fvARB")]
public static
unsafe void VertexAttrib1v(UInt32 index, Single* v)
{
@@ -22980,6 +27212,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1fvARB")]
public static
unsafe void VertexAttrib1v(Int32 index, Single* v)
{
@@ -22987,12 +27220,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1sARB")]
public static
void VertexAttrib1(UInt32 index, Int16 x)
{
Delegates.glVertexAttrib1sARB((UInt32)index, (Int16)x);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1sARB")]
public static
void VertexAttrib1(Int32 index, Int16 x)
{
@@ -23000,6 +27235,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1svARB")]
public static
void VertexAttrib1v(UInt32 index, Int16[] v)
{
@@ -23012,6 +27248,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1svARB")]
public static
void VertexAttrib1v(Int32 index, Int16[] v)
{
@@ -23025,6 +27262,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1svARB")]
public static
void VertexAttrib1v(UInt32 index, ref Int16 v)
{
@@ -23037,6 +27275,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1svARB")]
public static
void VertexAttrib1v(Int32 index, ref Int16 v)
{
@@ -23050,6 +27289,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1svARB")]
public static
unsafe void VertexAttrib1v(UInt32 index, Int16* v)
{
@@ -23057,6 +27297,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib1svARB")]
public static
unsafe void VertexAttrib1v(Int32 index, Int16* v)
{
@@ -23064,12 +27305,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2dARB")]
public static
void VertexAttrib2(UInt32 index, Double x, Double y)
{
Delegates.glVertexAttrib2dARB((UInt32)index, (Double)x, (Double)y);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2dARB")]
public static
void VertexAttrib2(Int32 index, Double x, Double y)
{
@@ -23077,6 +27320,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2dvARB")]
public static
void VertexAttrib2(UInt32 index, Double[] v)
{
@@ -23089,6 +27333,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2dvARB")]
public static
void VertexAttrib2(Int32 index, Double[] v)
{
@@ -23102,6 +27347,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2dvARB")]
public static
void VertexAttrib2(UInt32 index, ref Double v)
{
@@ -23114,6 +27360,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2dvARB")]
public static
void VertexAttrib2(Int32 index, ref Double v)
{
@@ -23127,6 +27374,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2dvARB")]
public static
unsafe void VertexAttrib2(UInt32 index, Double* v)
{
@@ -23134,6 +27382,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2dvARB")]
public static
unsafe void VertexAttrib2(Int32 index, Double* v)
{
@@ -23141,12 +27390,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2fARB")]
public static
void VertexAttrib2(UInt32 index, Single x, Single y)
{
Delegates.glVertexAttrib2fARB((UInt32)index, (Single)x, (Single)y);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2fARB")]
public static
void VertexAttrib2(Int32 index, Single x, Single y)
{
@@ -23154,6 +27405,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2fvARB")]
public static
void VertexAttrib2(UInt32 index, Single[] v)
{
@@ -23166,6 +27418,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2fvARB")]
public static
void VertexAttrib2(Int32 index, Single[] v)
{
@@ -23179,6 +27432,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2fvARB")]
public static
void VertexAttrib2(UInt32 index, ref Single v)
{
@@ -23191,6 +27445,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2fvARB")]
public static
void VertexAttrib2(Int32 index, ref Single v)
{
@@ -23204,6 +27459,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2fvARB")]
public static
unsafe void VertexAttrib2(UInt32 index, Single* v)
{
@@ -23211,6 +27467,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2fvARB")]
public static
unsafe void VertexAttrib2(Int32 index, Single* v)
{
@@ -23218,12 +27475,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2sARB")]
public static
void VertexAttrib2(UInt32 index, Int16 x, Int16 y)
{
Delegates.glVertexAttrib2sARB((UInt32)index, (Int16)x, (Int16)y);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2sARB")]
public static
void VertexAttrib2(Int32 index, Int16 x, Int16 y)
{
@@ -23231,6 +27490,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2svARB")]
public static
void VertexAttrib2(UInt32 index, Int16[] v)
{
@@ -23243,6 +27503,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2svARB")]
public static
void VertexAttrib2(Int32 index, Int16[] v)
{
@@ -23256,6 +27517,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2svARB")]
public static
void VertexAttrib2(UInt32 index, ref Int16 v)
{
@@ -23268,6 +27530,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2svARB")]
public static
void VertexAttrib2(Int32 index, ref Int16 v)
{
@@ -23281,6 +27544,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2svARB")]
public static
unsafe void VertexAttrib2(UInt32 index, Int16* v)
{
@@ -23288,6 +27552,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib2svARB")]
public static
unsafe void VertexAttrib2(Int32 index, Int16* v)
{
@@ -23295,12 +27560,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3dARB")]
public static
void VertexAttrib3(UInt32 index, Double x, Double y, Double z)
{
Delegates.glVertexAttrib3dARB((UInt32)index, (Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3dARB")]
public static
void VertexAttrib3(Int32 index, Double x, Double y, Double z)
{
@@ -23308,6 +27575,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3dvARB")]
public static
void VertexAttrib3(UInt32 index, Double[] v)
{
@@ -23320,6 +27588,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3dvARB")]
public static
void VertexAttrib3(Int32 index, Double[] v)
{
@@ -23333,6 +27602,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3dvARB")]
public static
void VertexAttrib3(UInt32 index, ref Double v)
{
@@ -23345,6 +27615,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3dvARB")]
public static
void VertexAttrib3(Int32 index, ref Double v)
{
@@ -23358,6 +27629,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3dvARB")]
public static
unsafe void VertexAttrib3(UInt32 index, Double* v)
{
@@ -23365,6 +27637,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3dvARB")]
public static
unsafe void VertexAttrib3(Int32 index, Double* v)
{
@@ -23372,12 +27645,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3fARB")]
public static
void VertexAttrib3(UInt32 index, Single x, Single y, Single z)
{
Delegates.glVertexAttrib3fARB((UInt32)index, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3fARB")]
public static
void VertexAttrib3(Int32 index, Single x, Single y, Single z)
{
@@ -23385,6 +27660,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3fvARB")]
public static
void VertexAttrib3(UInt32 index, Single[] v)
{
@@ -23397,6 +27673,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3fvARB")]
public static
void VertexAttrib3(Int32 index, Single[] v)
{
@@ -23410,6 +27687,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3fvARB")]
public static
void VertexAttrib3(UInt32 index, ref Single v)
{
@@ -23422,6 +27700,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3fvARB")]
public static
void VertexAttrib3(Int32 index, ref Single v)
{
@@ -23435,6 +27714,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3fvARB")]
public static
unsafe void VertexAttrib3(UInt32 index, Single* v)
{
@@ -23442,6 +27722,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3fvARB")]
public static
unsafe void VertexAttrib3(Int32 index, Single* v)
{
@@ -23449,12 +27730,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3sARB")]
public static
void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z)
{
Delegates.glVertexAttrib3sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3sARB")]
public static
void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z)
{
@@ -23462,6 +27745,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3svARB")]
public static
void VertexAttrib3(UInt32 index, Int16[] v)
{
@@ -23474,6 +27758,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3svARB")]
public static
void VertexAttrib3(Int32 index, Int16[] v)
{
@@ -23487,6 +27772,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3svARB")]
public static
void VertexAttrib3(UInt32 index, ref Int16 v)
{
@@ -23499,6 +27785,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3svARB")]
public static
void VertexAttrib3(Int32 index, ref Int16 v)
{
@@ -23512,6 +27799,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3svARB")]
public static
unsafe void VertexAttrib3(UInt32 index, Int16* v)
{
@@ -23519,6 +27807,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib3svARB")]
public static
unsafe void VertexAttrib3(Int32 index, Int16* v)
{
@@ -23526,6 +27815,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NbvARB")]
public static
void VertexAttrib4N(UInt32 index, SByte[] v)
{
@@ -23539,6 +27829,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NbvARB")]
public static
void VertexAttrib4N(UInt32 index, ref SByte v)
{
@@ -23552,6 +27843,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NbvARB")]
public static
unsafe void VertexAttrib4N(UInt32 index, SByte* v)
{
@@ -23559,6 +27851,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NivARB")]
public static
void VertexAttrib4N(UInt32 index, Int32[] v)
{
@@ -23572,6 +27865,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NivARB")]
public static
void VertexAttrib4N(UInt32 index, ref Int32 v)
{
@@ -23585,6 +27879,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NivARB")]
public static
unsafe void VertexAttrib4N(UInt32 index, Int32* v)
{
@@ -23592,6 +27887,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NsvARB")]
public static
void VertexAttrib4N(UInt32 index, Int16[] v)
{
@@ -23605,6 +27901,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NsvARB")]
public static
void VertexAttrib4N(UInt32 index, ref Int16 v)
{
@@ -23618,6 +27915,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NsvARB")]
public static
unsafe void VertexAttrib4N(UInt32 index, Int16* v)
{
@@ -23625,12 +27923,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NubARB")]
public static
void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w)
{
Delegates.glVertexAttrib4NubARB((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NubARB")]
public static
void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w)
{
@@ -23638,6 +27938,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NubvARB")]
public static
void VertexAttrib4N(UInt32 index, Byte[] v)
{
@@ -23650,6 +27951,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NubvARB")]
public static
void VertexAttrib4N(Int32 index, Byte[] v)
{
@@ -23663,6 +27965,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NubvARB")]
public static
void VertexAttrib4N(UInt32 index, ref Byte v)
{
@@ -23675,6 +27978,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NubvARB")]
public static
void VertexAttrib4N(Int32 index, ref Byte v)
{
@@ -23688,6 +27992,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NubvARB")]
public static
unsafe void VertexAttrib4N(UInt32 index, Byte* v)
{
@@ -23695,6 +28000,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NubvARB")]
public static
unsafe void VertexAttrib4N(Int32 index, Byte* v)
{
@@ -23702,6 +28008,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NuivARB")]
public static
void VertexAttrib4N(UInt32 index, UInt32[] v)
{
@@ -23714,6 +28021,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NuivARB")]
public static
void VertexAttrib4N(Int32 index, Int32[] v)
{
@@ -23727,6 +28035,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NuivARB")]
public static
void VertexAttrib4N(UInt32 index, ref UInt32 v)
{
@@ -23739,6 +28048,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NuivARB")]
public static
void VertexAttrib4N(Int32 index, ref Int32 v)
{
@@ -23752,6 +28062,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NuivARB")]
public static
unsafe void VertexAttrib4N(UInt32 index, UInt32* v)
{
@@ -23759,6 +28070,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NuivARB")]
public static
unsafe void VertexAttrib4N(Int32 index, Int32* v)
{
@@ -23766,6 +28078,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NusvARB")]
public static
void VertexAttrib4N(UInt32 index, UInt16[] v)
{
@@ -23778,6 +28091,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NusvARB")]
public static
void VertexAttrib4N(Int32 index, Int16[] v)
{
@@ -23791,6 +28105,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NusvARB")]
public static
void VertexAttrib4N(UInt32 index, ref UInt16 v)
{
@@ -23803,6 +28118,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NusvARB")]
public static
void VertexAttrib4N(Int32 index, ref Int16 v)
{
@@ -23816,6 +28132,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NusvARB")]
public static
unsafe void VertexAttrib4N(UInt32 index, UInt16* v)
{
@@ -23823,6 +28140,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4NusvARB")]
public static
unsafe void VertexAttrib4N(Int32 index, Int16* v)
{
@@ -23830,6 +28148,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4bvARB")]
public static
void VertexAttrib4(UInt32 index, SByte[] v)
{
@@ -23843,6 +28162,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4bvARB")]
public static
void VertexAttrib4(UInt32 index, ref SByte v)
{
@@ -23856,6 +28176,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4bvARB")]
public static
unsafe void VertexAttrib4(UInt32 index, SByte* v)
{
@@ -23863,12 +28184,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4dARB")]
public static
void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w)
{
Delegates.glVertexAttrib4dARB((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4dARB")]
public static
void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w)
{
@@ -23876,6 +28199,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4dvARB")]
public static
void VertexAttrib4(UInt32 index, Double[] v)
{
@@ -23888,6 +28212,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4dvARB")]
public static
void VertexAttrib4(Int32 index, Double[] v)
{
@@ -23901,6 +28226,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4dvARB")]
public static
void VertexAttrib4(UInt32 index, ref Double v)
{
@@ -23913,6 +28239,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4dvARB")]
public static
void VertexAttrib4(Int32 index, ref Double v)
{
@@ -23926,6 +28253,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4dvARB")]
public static
unsafe void VertexAttrib4(UInt32 index, Double* v)
{
@@ -23933,6 +28261,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4dvARB")]
public static
unsafe void VertexAttrib4(Int32 index, Double* v)
{
@@ -23940,12 +28269,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4fARB")]
public static
void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w)
{
Delegates.glVertexAttrib4fARB((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4fARB")]
public static
void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w)
{
@@ -23953,6 +28284,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4fvARB")]
public static
void VertexAttrib4(UInt32 index, Single[] v)
{
@@ -23965,6 +28297,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4fvARB")]
public static
void VertexAttrib4(Int32 index, Single[] v)
{
@@ -23978,6 +28311,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4fvARB")]
public static
void VertexAttrib4(UInt32 index, ref Single v)
{
@@ -23990,6 +28324,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4fvARB")]
public static
void VertexAttrib4(Int32 index, ref Single v)
{
@@ -24003,6 +28338,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4fvARB")]
public static
unsafe void VertexAttrib4(UInt32 index, Single* v)
{
@@ -24010,6 +28346,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4fvARB")]
public static
unsafe void VertexAttrib4(Int32 index, Single* v)
{
@@ -24017,6 +28354,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4ivARB")]
public static
void VertexAttrib4(UInt32 index, Int32[] v)
{
@@ -24030,6 +28368,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4ivARB")]
public static
void VertexAttrib4(UInt32 index, ref Int32 v)
{
@@ -24043,6 +28382,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4ivARB")]
public static
unsafe void VertexAttrib4(UInt32 index, Int32* v)
{
@@ -24050,12 +28390,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4sARB")]
public static
void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w)
{
Delegates.glVertexAttrib4sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4sARB")]
public static
void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w)
{
@@ -24063,6 +28405,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4svARB")]
public static
void VertexAttrib4(UInt32 index, Int16[] v)
{
@@ -24076,6 +28419,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4svARB")]
public static
void VertexAttrib4(UInt32 index, ref Int16 v)
{
@@ -24089,6 +28433,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4svARB")]
public static
unsafe void VertexAttrib4(UInt32 index, Int16* v)
{
@@ -24096,6 +28441,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4ubvARB")]
public static
void VertexAttrib4(UInt32 index, Byte[] v)
{
@@ -24108,6 +28454,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4ubvARB")]
public static
void VertexAttrib4(Int32 index, Byte[] v)
{
@@ -24121,6 +28468,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4ubvARB")]
public static
void VertexAttrib4(UInt32 index, ref Byte v)
{
@@ -24133,6 +28481,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4ubvARB")]
public static
void VertexAttrib4(Int32 index, ref Byte v)
{
@@ -24146,6 +28495,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4ubvARB")]
public static
unsafe void VertexAttrib4(UInt32 index, Byte* v)
{
@@ -24153,6 +28503,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4ubvARB")]
public static
unsafe void VertexAttrib4(Int32 index, Byte* v)
{
@@ -24160,6 +28511,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4uivARB")]
public static
void VertexAttrib4(UInt32 index, UInt32[] v)
{
@@ -24172,6 +28524,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4uivARB")]
public static
void VertexAttrib4(Int32 index, Int32[] v)
{
@@ -24185,6 +28538,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4uivARB")]
public static
void VertexAttrib4(UInt32 index, ref UInt32 v)
{
@@ -24197,6 +28551,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4uivARB")]
public static
void VertexAttrib4(Int32 index, ref Int32 v)
{
@@ -24210,6 +28565,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4uivARB")]
public static
unsafe void VertexAttrib4(UInt32 index, UInt32* v)
{
@@ -24217,6 +28573,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4uivARB")]
public static
unsafe void VertexAttrib4(Int32 index, Int32* v)
{
@@ -24224,6 +28581,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4usvARB")]
public static
void VertexAttrib4(UInt32 index, UInt16[] v)
{
@@ -24236,6 +28594,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4usvARB")]
public static
void VertexAttrib4(Int32 index, Int16[] v)
{
@@ -24249,6 +28608,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4usvARB")]
public static
void VertexAttrib4(UInt32 index, ref UInt16 v)
{
@@ -24261,6 +28621,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4usvARB")]
public static
void VertexAttrib4(Int32 index, ref Int16 v)
{
@@ -24274,6 +28635,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4usvARB")]
public static
unsafe void VertexAttrib4(UInt32 index, UInt16* v)
{
@@ -24281,6 +28643,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttrib4usvARB")]
public static
unsafe void VertexAttrib4(Int32 index, Int16* v)
{
@@ -24288,6 +28651,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttribPointerARB")]
public static
void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer)
{
@@ -24297,6 +28661,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttribPointerARB")]
public static
void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, IntPtr pointer)
{
@@ -24307,6 +28672,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttribPointerARB")]
public static
void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [In, Out] object pointer)
{
@@ -24324,6 +28690,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glVertexAttribPointerARB")]
public static
void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [In, Out] object pointer)
{
@@ -24342,12 +28709,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glEnableVertexAttribArrayARB")]
public static
void EnableVertexAttribArray(UInt32 index)
{
Delegates.glEnableVertexAttribArrayARB((UInt32)index);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glEnableVertexAttribArrayARB")]
public static
void EnableVertexAttribArray(Int32 index)
{
@@ -24355,18 +28724,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glDisableVertexAttribArrayARB")]
public static
void DisableVertexAttribArray(UInt32 index)
{
Delegates.glDisableVertexAttribArrayARB((UInt32)index);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glDisableVertexAttribArrayARB")]
public static
void DisableVertexAttribArray(Int32 index)
{
Delegates.glDisableVertexAttribArrayARB((UInt32)index);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramStringARB")]
public static
void ProgramString(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramFormatArb format, Int32 len, IntPtr @string)
{
@@ -24376,6 +28748,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramStringARB")]
public static
void ProgramString(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramFormatArb format, Int32 len, [In, Out] object @string)
{
@@ -24394,12 +28767,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glBindProgramARB")]
public static
void BindProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 program)
{
Delegates.glBindProgramARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)program);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glBindProgramARB")]
public static
void BindProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 program)
{
@@ -24407,6 +28782,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glDeleteProgramsARB")]
public static
void DeleteProgram(Int32 n, UInt32[] programs)
{
@@ -24419,6 +28795,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glDeleteProgramsARB")]
public static
void DeleteProgram(Int32 n, Int32[] programs)
{
@@ -24432,6 +28809,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glDeleteProgramsARB")]
public static
void DeleteProgram(Int32 n, ref UInt32 programs)
{
@@ -24444,6 +28822,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glDeleteProgramsARB")]
public static
void DeleteProgram(Int32 n, ref Int32 programs)
{
@@ -24457,6 +28836,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glDeleteProgramsARB")]
public static
unsafe void DeleteProgram(Int32 n, UInt32* programs)
{
@@ -24464,6 +28844,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glDeleteProgramsARB")]
public static
unsafe void DeleteProgram(Int32 n, Int32* programs)
{
@@ -24471,6 +28852,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGenProgramsARB")]
public static
void GenProgram(Int32 n, [Out] UInt32[] programs)
{
@@ -24483,6 +28865,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGenProgramsARB")]
public static
void GenProgram(Int32 n, [Out] Int32[] programs)
{
@@ -24496,6 +28879,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGenProgramsARB")]
public static
void GenProgram(Int32 n, [Out] out UInt32 programs)
{
@@ -24509,6 +28893,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGenProgramsARB")]
public static
void GenProgram(Int32 n, [Out] out Int32 programs)
{
@@ -24523,6 +28908,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGenProgramsARB")]
public static
unsafe void GenProgram(Int32 n, [Out] UInt32* programs)
{
@@ -24530,6 +28916,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGenProgramsARB")]
public static
unsafe void GenProgram(Int32 n, [Out] Int32* programs)
{
@@ -24537,12 +28924,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4dARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w)
{
Delegates.glProgramEnvParameter4dARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4dARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w)
{
@@ -24550,6 +28939,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4dvARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double[] @params)
{
@@ -24562,6 +28952,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4dvARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double[] @params)
{
@@ -24575,6 +28966,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4dvARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, ref Double @params)
{
@@ -24587,6 +28979,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4dvARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, ref Double @params)
{
@@ -24600,6 +28993,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4dvARB")]
public static
unsafe void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double* @params)
{
@@ -24607,6 +29001,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4dvARB")]
public static
unsafe void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double* @params)
{
@@ -24614,12 +29009,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4fARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w)
{
Delegates.glProgramEnvParameter4fARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4fARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w)
{
@@ -24627,6 +29024,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4fvARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single[] @params)
{
@@ -24639,6 +29037,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4fvARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single[] @params)
{
@@ -24652,6 +29051,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4fvARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, ref Single @params)
{
@@ -24664,6 +29064,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4fvARB")]
public static
void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, ref Single @params)
{
@@ -24677,6 +29078,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4fvARB")]
public static
unsafe void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single* @params)
{
@@ -24684,6 +29086,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramEnvParameter4fvARB")]
public static
unsafe void ProgramEnvParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single* @params)
{
@@ -24691,12 +29094,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4dARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w)
{
Delegates.glProgramLocalParameter4dARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4dARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w)
{
@@ -24704,6 +29109,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4dvARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double[] @params)
{
@@ -24716,6 +29122,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4dvARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double[] @params)
{
@@ -24729,6 +29136,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4dvARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, ref Double @params)
{
@@ -24741,6 +29149,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4dvARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, ref Double @params)
{
@@ -24754,6 +29163,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4dvARB")]
public static
unsafe void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Double* @params)
{
@@ -24761,6 +29171,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4dvARB")]
public static
unsafe void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Double* @params)
{
@@ -24768,12 +29179,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4fARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w)
{
Delegates.glProgramLocalParameter4fARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4fARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w)
{
@@ -24781,6 +29194,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4fvARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single[] @params)
{
@@ -24793,6 +29207,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4fvARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single[] @params)
{
@@ -24806,6 +29221,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4fvARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, ref Single @params)
{
@@ -24818,6 +29234,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4fvARB")]
public static
void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, ref Single @params)
{
@@ -24831,6 +29248,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4fvARB")]
public static
unsafe void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, Single* @params)
{
@@ -24838,6 +29256,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glProgramLocalParameter4fvARB")]
public static
unsafe void ProgramLocalParameter4(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, Single* @params)
{
@@ -24845,6 +29264,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterdvARB")]
public static
void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double[] @params)
{
@@ -24857,6 +29277,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterdvARB")]
public static
void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Double[] @params)
{
@@ -24870,6 +29291,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterdvARB")]
public static
void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] out Double @params)
{
@@ -24883,6 +29305,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterdvARB")]
public static
void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] out Double @params)
{
@@ -24897,6 +29320,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterdvARB")]
public static
unsafe void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params)
{
@@ -24904,6 +29328,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterdvARB")]
public static
unsafe void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Double* @params)
{
@@ -24911,6 +29336,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterfvARB")]
public static
void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single[] @params)
{
@@ -24923,6 +29349,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterfvARB")]
public static
void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Single[] @params)
{
@@ -24936,6 +29363,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterfvARB")]
public static
void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] out Single @params)
{
@@ -24949,6 +29377,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterfvARB")]
public static
void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] out Single @params)
{
@@ -24963,6 +29392,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterfvARB")]
public static
unsafe void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params)
{
@@ -24970,6 +29400,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramEnvParameterfvARB")]
public static
unsafe void GetProgramEnvParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Single* @params)
{
@@ -24977,6 +29408,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterdvARB")]
public static
void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double[] @params)
{
@@ -24989,6 +29421,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterdvARB")]
public static
void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Double[] @params)
{
@@ -25002,6 +29435,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterdvARB")]
public static
void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] out Double @params)
{
@@ -25015,6 +29449,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterdvARB")]
public static
void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] out Double @params)
{
@@ -25029,6 +29464,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterdvARB")]
public static
unsafe void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Double* @params)
{
@@ -25036,6 +29472,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterdvARB")]
public static
unsafe void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Double* @params)
{
@@ -25043,6 +29480,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterfvARB")]
public static
void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single[] @params)
{
@@ -25055,6 +29493,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterfvARB")]
public static
void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Single[] @params)
{
@@ -25068,6 +29507,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterfvARB")]
public static
void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] out Single @params)
{
@@ -25081,6 +29521,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterfvARB")]
public static
void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] out Single @params)
{
@@ -25095,6 +29536,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterfvARB")]
public static
unsafe void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, UInt32 index, [Out] Single* @params)
{
@@ -25102,12 +29544,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramLocalParameterfvARB")]
public static
unsafe void GetProgramLocalParameter(OpenTK.Graphics.AssemblyProgramTargetArb target, Int32 index, [Out] Single* @params)
{
Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramivARB")]
public static
void GetProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramParameterArb pname, [Out] Int32[] @params)
{
@@ -25120,6 +29564,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramivARB")]
public static
void GetProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramParameterArb pname, [Out] out Int32 @params)
{
@@ -25134,12 +29579,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramivARB")]
public static
unsafe void GetProgram(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramParameterArb pname, [Out] Int32* @params)
{
Delegates.glGetProgramivARB((OpenTK.Graphics.AssemblyProgramTargetArb)target, (OpenTK.Graphics.AssemblyProgramParameterArb)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramStringARB")]
public static
void GetProgramString(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramStringParameterArb pname, [Out] IntPtr @string)
{
@@ -25149,6 +29596,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetProgramStringARB")]
public static
void GetProgramString(OpenTK.Graphics.AssemblyProgramTargetArb target, OpenTK.Graphics.AssemblyProgramStringParameterArb pname, [In, Out] object @string)
{
@@ -25167,6 +29615,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribdvARB")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Double[] @params)
{
@@ -25179,6 +29628,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribdvARB")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Double[] @params)
{
@@ -25192,6 +29642,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribdvARB")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Double @params)
{
@@ -25205,6 +29656,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribdvARB")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Double @params)
{
@@ -25219,6 +29671,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribdvARB")]
public static
unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Double* @params)
{
@@ -25226,6 +29679,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribdvARB")]
public static
unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Double* @params)
{
@@ -25233,6 +29687,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribfvARB")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Single[] @params)
{
@@ -25245,6 +29700,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribfvARB")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Single[] @params)
{
@@ -25258,6 +29714,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribfvARB")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Single @params)
{
@@ -25271,6 +29728,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribfvARB")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Single @params)
{
@@ -25285,6 +29743,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribfvARB")]
public static
unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Single* @params)
{
@@ -25292,6 +29751,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribfvARB")]
public static
unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Single* @params)
{
@@ -25299,6 +29759,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribivARB")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Int32[] @params)
{
@@ -25311,6 +29772,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribivARB")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Int32[] @params)
{
@@ -25324,6 +29786,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribivARB")]
public static
void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Int32 @params)
{
@@ -25337,6 +29800,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribivARB")]
public static
void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] out Int32 @params)
{
@@ -25351,6 +29815,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribivARB")]
public static
unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Int32* @params)
{
@@ -25358,6 +29823,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribivARB")]
public static
unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.VertexAttribParameterArb pname, [Out] Int32* @params)
{
@@ -25365,6 +29831,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribPointervARB")]
public static
void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer)
{
@@ -25374,6 +29841,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribPointervARB")]
public static
void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.VertexAttribPointerParameterArb pname, [Out] IntPtr pointer)
{
@@ -25384,6 +29852,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribPointervARB")]
public static
void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.VertexAttribPointerParameterArb pname, [In, Out] object pointer)
{
@@ -25401,6 +29870,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glGetVertexAttribPointervARB")]
public static
void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.VertexAttribPointerParameterArb pname, [In, Out] object pointer)
{
@@ -25419,12 +29889,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glIsProgramARB")]
public static
bool IsProgram(UInt32 program)
{
return Delegates.glIsProgramARB((UInt32)program);
}
+ [AutoGenerated(Category = "ArbVertexProgram", Version = "1.3", EntryPoint = "glIsProgramARB")]
public static
bool IsProgram(Int32 program)
{
@@ -25432,12 +29904,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glBindBufferARB")]
public static
void BindBuffer(OpenTK.Graphics.BufferTargetArb target, UInt32 buffer)
{
Delegates.glBindBufferARB((OpenTK.Graphics.BufferTargetArb)target, (UInt32)buffer);
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glBindBufferARB")]
public static
void BindBuffer(OpenTK.Graphics.BufferTargetArb target, Int32 buffer)
{
@@ -25445,6 +29919,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glDeleteBuffersARB")]
public static
void DeleteBuffers(Int32 n, UInt32[] buffers)
{
@@ -25457,6 +29932,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glDeleteBuffersARB")]
public static
void DeleteBuffers(Int32 n, Int32[] buffers)
{
@@ -25470,6 +29946,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glDeleteBuffersARB")]
public static
void DeleteBuffers(Int32 n, ref UInt32 buffers)
{
@@ -25482,6 +29959,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glDeleteBuffersARB")]
public static
void DeleteBuffers(Int32 n, ref Int32 buffers)
{
@@ -25495,6 +29973,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glDeleteBuffersARB")]
public static
unsafe void DeleteBuffers(Int32 n, UInt32* buffers)
{
@@ -25502,6 +29981,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glDeleteBuffersARB")]
public static
unsafe void DeleteBuffers(Int32 n, Int32* buffers)
{
@@ -25509,6 +29989,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGenBuffersARB")]
public static
void GenBuffers(Int32 n, [Out] UInt32[] buffers)
{
@@ -25521,6 +30002,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGenBuffersARB")]
public static
void GenBuffers(Int32 n, [Out] Int32[] buffers)
{
@@ -25534,6 +30016,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGenBuffersARB")]
public static
void GenBuffers(Int32 n, [Out] out UInt32 buffers)
{
@@ -25547,6 +30030,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGenBuffersARB")]
public static
void GenBuffers(Int32 n, [Out] out Int32 buffers)
{
@@ -25561,6 +30045,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGenBuffersARB")]
public static
unsafe void GenBuffers(Int32 n, [Out] UInt32* buffers)
{
@@ -25568,6 +30053,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGenBuffersARB")]
public static
unsafe void GenBuffers(Int32 n, [Out] Int32* buffers)
{
@@ -25575,18 +30061,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glIsBufferARB")]
public static
bool IsBuffer(UInt32 buffer)
{
return Delegates.glIsBufferARB((UInt32)buffer);
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glIsBufferARB")]
public static
bool IsBuffer(Int32 buffer)
{
return Delegates.glIsBufferARB((UInt32)buffer);
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glBufferDataARB")]
public static
void BufferData(OpenTK.Graphics.BufferTargetArb target, IntPtr size, IntPtr data, OpenTK.Graphics.BufferUsageArb usage)
{
@@ -25596,6 +30085,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glBufferDataARB")]
public static
void BufferData(OpenTK.Graphics.BufferTargetArb target, IntPtr size, [In, Out] object data, OpenTK.Graphics.BufferUsageArb usage)
{
@@ -25613,6 +30103,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glBufferSubDataARB")]
public static
void BufferSubData(OpenTK.Graphics.BufferTargetArb target, IntPtr offset, IntPtr size, IntPtr data)
{
@@ -25622,6 +30113,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glBufferSubDataARB")]
public static
void BufferSubData(OpenTK.Graphics.BufferTargetArb target, IntPtr offset, IntPtr size, [In, Out] object data)
{
@@ -25639,6 +30131,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGetBufferSubDataARB")]
public static
void GetBufferSubData(OpenTK.Graphics.BufferTargetArb target, IntPtr offset, IntPtr size, [Out] IntPtr data)
{
@@ -25648,6 +30141,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGetBufferSubDataARB")]
public static
void GetBufferSubData(OpenTK.Graphics.BufferTargetArb target, IntPtr offset, IntPtr size, [In, Out] object data)
{
@@ -25666,68 +30160,75 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glMapBufferARB")]
public static
unsafe IntPtr MapBuffer(OpenTK.Graphics.BufferTargetArb target, OpenTK.Graphics.BufferAccessArb access)
{
return Delegates.glMapBufferARB((OpenTK.Graphics.BufferTargetArb)target, (OpenTK.Graphics.BufferAccessArb)access);
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glUnmapBufferARB")]
public static
bool UnmapBuffer(OpenTK.Graphics.BufferTargetArb target)
{
return Delegates.glUnmapBufferARB((OpenTK.Graphics.BufferTargetArb)target);
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGetBufferParameterivARB")]
public static
- void GetBufferParameter(OpenTK.Graphics.All target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] Int32[] @params)
+ void GetBufferParameter(OpenTK.Graphics.ArbVertexBufferObject target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetBufferParameterivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferParameterNameArb)pname, (Int32*)@params_ptr);
+ Delegates.glGetBufferParameterivARB((OpenTK.Graphics.ArbVertexBufferObject)target, (OpenTK.Graphics.BufferParameterNameArb)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGetBufferParameterivARB")]
public static
- void GetBufferParameter(OpenTK.Graphics.All target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] out Int32 @params)
+ void GetBufferParameter(OpenTK.Graphics.ArbVertexBufferObject target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetBufferParameterivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferParameterNameArb)pname, (Int32*)@params_ptr);
+ Delegates.glGetBufferParameterivARB((OpenTK.Graphics.ArbVertexBufferObject)target, (OpenTK.Graphics.BufferParameterNameArb)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGetBufferParameterivARB")]
public static
- unsafe void GetBufferParameter(OpenTK.Graphics.All target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] Int32* @params)
+ unsafe void GetBufferParameter(OpenTK.Graphics.ArbVertexBufferObject target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] Int32* @params)
{
- Delegates.glGetBufferParameterivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferParameterNameArb)pname, (Int32*)@params);
+ Delegates.glGetBufferParameterivARB((OpenTK.Graphics.ArbVertexBufferObject)target, (OpenTK.Graphics.BufferParameterNameArb)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGetBufferPointervARB")]
public static
- void GetBufferPointer(OpenTK.Graphics.All target, OpenTK.Graphics.BufferPointerNameArb pname, [Out] IntPtr @params)
+ void GetBufferPointer(OpenTK.Graphics.ArbVertexBufferObject target, OpenTK.Graphics.BufferPointerNameArb pname, [Out] IntPtr @params)
{
unsafe
{
- Delegates.glGetBufferPointervARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferPointerNameArb)pname, (IntPtr)@params);
+ Delegates.glGetBufferPointervARB((OpenTK.Graphics.ArbVertexBufferObject)target, (OpenTK.Graphics.BufferPointerNameArb)pname, (IntPtr)@params);
}
}
+ [AutoGenerated(Category = "ArbVertexBufferObject", Version = "1.2", EntryPoint = "glGetBufferPointervARB")]
public static
- void GetBufferPointer(OpenTK.Graphics.All target, OpenTK.Graphics.BufferPointerNameArb pname, [In, Out] object @params)
+ void GetBufferPointer(OpenTK.Graphics.ArbVertexBufferObject target, OpenTK.Graphics.BufferPointerNameArb pname, [In, Out] object @params)
{
unsafe
{
System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetBufferPointervARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
+ Delegates.glGetBufferPointervARB((OpenTK.Graphics.ArbVertexBufferObject)target, (OpenTK.Graphics.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
}
finally
{
@@ -25737,6 +30238,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGenQueriesARB")]
public static
void GenQueries(Int32 n, [Out] UInt32[] ids)
{
@@ -25749,6 +30251,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGenQueriesARB")]
public static
void GenQueries(Int32 n, [Out] Int32[] ids)
{
@@ -25762,6 +30265,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGenQueriesARB")]
public static
void GenQueries(Int32 n, [Out] out UInt32 ids)
{
@@ -25775,6 +30279,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGenQueriesARB")]
public static
void GenQueries(Int32 n, [Out] out Int32 ids)
{
@@ -25789,6 +30294,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGenQueriesARB")]
public static
unsafe void GenQueries(Int32 n, [Out] UInt32* ids)
{
@@ -25796,6 +30302,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGenQueriesARB")]
public static
unsafe void GenQueries(Int32 n, [Out] Int32* ids)
{
@@ -25803,6 +30310,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glDeleteQueriesARB")]
public static
void DeleteQueries(Int32 n, UInt32[] ids)
{
@@ -25815,6 +30323,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glDeleteQueriesARB")]
public static
void DeleteQueries(Int32 n, Int32[] ids)
{
@@ -25828,6 +30337,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glDeleteQueriesARB")]
public static
void DeleteQueries(Int32 n, ref UInt32 ids)
{
@@ -25840,6 +30350,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glDeleteQueriesARB")]
public static
void DeleteQueries(Int32 n, ref Int32 ids)
{
@@ -25853,6 +30364,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glDeleteQueriesARB")]
public static
unsafe void DeleteQueries(Int32 n, UInt32* ids)
{
@@ -25860,6 +30372,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glDeleteQueriesARB")]
public static
unsafe void DeleteQueries(Int32 n, Int32* ids)
{
@@ -25867,12 +30380,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glIsQueryARB")]
public static
bool IsQuery(UInt32 id)
{
return Delegates.glIsQueryARB((UInt32)id);
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glIsQueryARB")]
public static
bool IsQuery(Int32 id)
{
@@ -25880,195 +30395,217 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glBeginQueryARB")]
public static
- void BeginQuery(OpenTK.Graphics.All target, UInt32 id)
+ void BeginQuery(OpenTK.Graphics.ArbOcclusionQuery target, UInt32 id)
{
- Delegates.glBeginQueryARB((OpenTK.Graphics.All)target, (UInt32)id);
+ Delegates.glBeginQueryARB((OpenTK.Graphics.ArbOcclusionQuery)target, (UInt32)id);
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glBeginQueryARB")]
public static
- void BeginQuery(OpenTK.Graphics.All target, Int32 id)
+ void BeginQuery(OpenTK.Graphics.ArbOcclusionQuery target, Int32 id)
{
- Delegates.glBeginQueryARB((OpenTK.Graphics.All)target, (UInt32)id);
+ Delegates.glBeginQueryARB((OpenTK.Graphics.ArbOcclusionQuery)target, (UInt32)id);
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glEndQueryARB")]
public static
- void EndQuery(OpenTK.Graphics.All target)
+ void EndQuery(OpenTK.Graphics.ArbOcclusionQuery target)
{
- Delegates.glEndQueryARB((OpenTK.Graphics.All)target);
+ Delegates.glEndQueryARB((OpenTK.Graphics.ArbOcclusionQuery)target);
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryivARB")]
public static
- void GetQuery(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetQuery(OpenTK.Graphics.ArbOcclusionQuery target, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetQueryivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetQueryivARB((OpenTK.Graphics.ArbOcclusionQuery)target, (OpenTK.Graphics.ArbOcclusionQuery)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryivARB")]
public static
- void GetQuery(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetQuery(OpenTK.Graphics.ArbOcclusionQuery target, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetQueryivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetQueryivARB((OpenTK.Graphics.ArbOcclusionQuery)target, (OpenTK.Graphics.ArbOcclusionQuery)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryivARB")]
public static
- unsafe void GetQuery(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetQuery(OpenTK.Graphics.ArbOcclusionQuery target, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] Int32* @params)
{
- Delegates.glGetQueryivARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetQueryivARB((OpenTK.Graphics.ArbOcclusionQuery)target, (OpenTK.Graphics.ArbOcclusionQuery)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryObjectivARB")]
public static
- void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetQueryObject(UInt32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.ArbOcclusionQuery)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryObjectivARB")]
public static
- void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetQueryObject(UInt32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.ArbOcclusionQuery)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryObjectivARB")]
public static
- unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] Int32* @params)
{
- Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.ArbOcclusionQuery)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryObjectuivARB")]
public static
- void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32[] @params)
+ void GetQueryObject(UInt32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.ArbOcclusionQuery)pname, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryObjectuivARB")]
public static
- void GetQueryObject(Int32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetQueryObject(Int32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.ArbOcclusionQuery)pname, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryObjectuivARB")]
public static
- void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] out UInt32 @params)
+ void GetQueryObject(UInt32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] out UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.ArbOcclusionQuery)pname, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryObjectuivARB")]
public static
- void GetQueryObject(Int32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetQueryObject(Int32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.ArbOcclusionQuery)pname, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryObjectuivARB")]
public static
- unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32* @params)
+ unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] UInt32* @params)
{
- Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params);
+ Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.ArbOcclusionQuery)pname, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbOcclusionQuery", Version = "1.5", EntryPoint = "glGetQueryObjectuivARB")]
public static
- unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] Int32* @params)
{
- Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.All)pname, (UInt32*)@params);
+ Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.ArbOcclusionQuery)pname, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glDeleteObjectARB")]
public static
void DeleteObject(UInt32 obj)
{
Delegates.glDeleteObjectARB((UInt32)obj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glDeleteObjectARB")]
public static
void DeleteObject(Int32 obj)
{
Delegates.glDeleteObjectARB((UInt32)obj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetHandleARB")]
public static
- Int32 GetHandle(OpenTK.Graphics.All pname)
+ Int32 GetHandle(OpenTK.Graphics.ArbShaderObjects pname)
{
- return Delegates.glGetHandleARB((OpenTK.Graphics.All)pname);
+ return Delegates.glGetHandleARB((OpenTK.Graphics.ArbShaderObjects)pname);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glDetachObjectARB")]
public static
void DetachObject(UInt32 containerObj, UInt32 attachedObj)
{
Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glDetachObjectARB")]
public static
void DetachObject(Int32 containerObj, Int32 attachedObj)
{
Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glCreateShaderObjectARB")]
public static
- Int32 CreateShaderObject(OpenTK.Graphics.All shaderType)
+ Int32 CreateShaderObject(OpenTK.Graphics.ArbShaderObjects shaderType)
{
- return Delegates.glCreateShaderObjectARB((OpenTK.Graphics.All)shaderType);
+ return Delegates.glCreateShaderObjectARB((OpenTK.Graphics.ArbShaderObjects)shaderType);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glShaderSourceARB")]
public static
void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, Int32[] length)
{
@@ -26081,6 +30618,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glShaderSourceARB")]
public static
void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, Int32[] length)
{
@@ -26094,6 +30632,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glShaderSourceARB")]
public static
void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, ref Int32 length)
{
@@ -26106,6 +30645,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glShaderSourceARB")]
public static
void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, ref Int32 length)
{
@@ -26119,6 +30659,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glShaderSourceARB")]
public static
unsafe void ShaderSource(UInt32 shaderObj, Int32 count, System.String[] @string, Int32* length)
{
@@ -26126,6 +30667,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glShaderSourceARB")]
public static
unsafe void ShaderSource(Int32 shaderObj, Int32 count, System.String[] @string, Int32* length)
{
@@ -26133,18 +30675,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glCompileShaderARB")]
public static
void CompileShader(UInt32 shaderObj)
{
Delegates.glCompileShaderARB((UInt32)shaderObj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glCompileShaderARB")]
public static
void CompileShader(Int32 shaderObj)
{
Delegates.glCompileShaderARB((UInt32)shaderObj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glCreateProgramObjectARB")]
public static
Int32 CreateProgramObject()
{
@@ -26152,12 +30697,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glAttachObjectARB")]
public static
void AttachObject(UInt32 containerObj, UInt32 obj)
{
Delegates.glAttachObjectARB((UInt32)containerObj, (UInt32)obj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glAttachObjectARB")]
public static
void AttachObject(Int32 containerObj, Int32 obj)
{
@@ -26165,12 +30712,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glLinkProgramARB")]
public static
void LinkProgram(UInt32 programObj)
{
Delegates.glLinkProgramARB((UInt32)programObj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glLinkProgramARB")]
public static
void LinkProgram(Int32 programObj)
{
@@ -26178,12 +30727,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUseProgramObjectARB")]
public static
void UseProgramObject(UInt32 programObj)
{
Delegates.glUseProgramObjectARB((UInt32)programObj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUseProgramObjectARB")]
public static
void UseProgramObject(Int32 programObj)
{
@@ -26191,66 +30742,77 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glValidateProgramARB")]
public static
void ValidateProgram(UInt32 programObj)
{
Delegates.glValidateProgramARB((UInt32)programObj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glValidateProgramARB")]
public static
void ValidateProgram(Int32 programObj)
{
Delegates.glValidateProgramARB((UInt32)programObj);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform1fARB")]
public static
void Uniform1(Int32 location, Single v0)
{
Delegates.glUniform1fARB((Int32)location, (Single)v0);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform2fARB")]
public static
void Uniform2(Int32 location, Single v0, Single v1)
{
Delegates.glUniform2fARB((Int32)location, (Single)v0, (Single)v1);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform3fARB")]
public static
void Uniform3(Int32 location, Single v0, Single v1, Single v2)
{
Delegates.glUniform3fARB((Int32)location, (Single)v0, (Single)v1, (Single)v2);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform4fARB")]
public static
void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3)
{
Delegates.glUniform4fARB((Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform1iARB")]
public static
void Uniform1(Int32 location, Int32 v0)
{
Delegates.glUniform1iARB((Int32)location, (Int32)v0);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform2iARB")]
public static
void Uniform2(Int32 location, Int32 v0, Int32 v1)
{
Delegates.glUniform2iARB((Int32)location, (Int32)v0, (Int32)v1);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform3iARB")]
public static
void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2)
{
Delegates.glUniform3iARB((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform4iARB")]
public static
void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3)
{
Delegates.glUniform4iARB((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform1fvARB")]
public static
void Uniform1(Int32 location, Int32 count, Single[] value)
{
@@ -26263,6 +30825,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform1fvARB")]
public static
void Uniform1(Int32 location, Int32 count, ref Single value)
{
@@ -26276,12 +30839,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform1fvARB")]
public static
unsafe void Uniform1(Int32 location, Int32 count, Single* value)
{
Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform2fvARB")]
public static
void Uniform2v(Int32 location, Int32 count, Single[] value)
{
@@ -26294,6 +30859,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform2fvARB")]
public static
void Uniform2v(Int32 location, Int32 count, ref Single value)
{
@@ -26307,12 +30873,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform2fvARB")]
public static
unsafe void Uniform2v(Int32 location, Int32 count, Single* value)
{
Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform3fvARB")]
public static
void Uniform3(Int32 location, Int32 count, Single[] value)
{
@@ -26325,6 +30893,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform3fvARB")]
public static
void Uniform3(Int32 location, Int32 count, ref Single value)
{
@@ -26338,12 +30907,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform3fvARB")]
public static
unsafe void Uniform3(Int32 location, Int32 count, Single* value)
{
Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform4fvARB")]
public static
void Uniform4(Int32 location, Int32 count, Single[] value)
{
@@ -26356,6 +30927,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform4fvARB")]
public static
void Uniform4(Int32 location, Int32 count, ref Single value)
{
@@ -26369,12 +30941,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform4fvARB")]
public static
unsafe void Uniform4(Int32 location, Int32 count, Single* value)
{
Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform1ivARB")]
public static
void Uniform1(Int32 location, Int32 count, Int32[] value)
{
@@ -26387,6 +30961,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform1ivARB")]
public static
void Uniform1(Int32 location, Int32 count, ref Int32 value)
{
@@ -26400,12 +30975,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform1ivARB")]
public static
unsafe void Uniform1(Int32 location, Int32 count, Int32* value)
{
Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform2ivARB")]
public static
void Uniform2v(Int32 location, Int32 count, Int32[] value)
{
@@ -26418,6 +30995,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform2ivARB")]
public static
void Uniform2v(Int32 location, Int32 count, ref Int32 value)
{
@@ -26431,12 +31009,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform2ivARB")]
public static
unsafe void Uniform2v(Int32 location, Int32 count, Int32* value)
{
Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform3ivARB")]
public static
void Uniform3(Int32 location, Int32 count, Int32[] value)
{
@@ -26449,6 +31029,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform3ivARB")]
public static
void Uniform3(Int32 location, Int32 count, ref Int32 value)
{
@@ -26462,12 +31043,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform3ivARB")]
public static
unsafe void Uniform3(Int32 location, Int32 count, Int32* value)
{
Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform4ivARB")]
public static
void Uniform4(Int32 location, Int32 count, Int32[] value)
{
@@ -26480,6 +31063,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform4ivARB")]
public static
void Uniform4(Int32 location, Int32 count, ref Int32 value)
{
@@ -26493,12 +31077,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniform4ivARB")]
public static
unsafe void Uniform4(Int32 location, Int32 count, Int32* value)
{
Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniformMatrix2fvARB")]
public static
void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -26511,6 +31097,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniformMatrix2fvARB")]
public static
void UniformMatrix2(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -26524,12 +31111,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniformMatrix2fvARB")]
public static
unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniformMatrix3fvARB")]
public static
void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -26542,6 +31131,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniformMatrix3fvARB")]
public static
void UniformMatrix3(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -26555,12 +31145,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniformMatrix3fvARB")]
public static
unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, Single* value)
{
Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniformMatrix4fvARB")]
public static
void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single[] value)
{
@@ -26573,6 +31165,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniformMatrix4fvARB")]
public static
void UniformMatrix4(Int32 location, Int32 count, bool transpose, ref Single value)
{
@@ -26586,6 +31179,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glUniformMatrix4fvARB")]
public static
unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, Single* value)
{
@@ -26593,138 +31187,151 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterfvARB")]
public static
- void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetObjectParameter(UInt32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterfvARB")]
public static
- void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetObjectParameter(Int32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterfvARB")]
public static
- void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetObjectParameter(UInt32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterfvARB")]
public static
- void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetObjectParameter(Int32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterfvARB")]
public static
- unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Single* @params)
{
- Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterfvARB")]
public static
- unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Single* @params)
{
- Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterivARB")]
public static
- void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetObjectParameter(UInt32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterivARB")]
public static
- void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetObjectParameter(Int32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterivARB")]
public static
- void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetObjectParameter(UInt32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterivARB")]
public static
- void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetObjectParameter(Int32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterivARB")]
public static
- unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Int32* @params)
{
- Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetObjectParameterivARB")]
public static
- unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Int32* @params)
{
- Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.ArbShaderObjects)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetInfoLogARB")]
public static
void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog)
{
@@ -26737,6 +31344,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetInfoLogARB")]
public static
void GetInfoLog(Int32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder infoLog)
{
@@ -26750,6 +31358,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetInfoLogARB")]
public static
void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog)
{
@@ -26763,6 +31372,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetInfoLogARB")]
public static
void GetInfoLog(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder infoLog)
{
@@ -26777,6 +31387,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetInfoLogARB")]
public static
unsafe void GetInfoLog(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog)
{
@@ -26784,6 +31395,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetInfoLogARB")]
public static
unsafe void GetInfoLog(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog)
{
@@ -26791,6 +31403,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")]
public static
void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] Int32[] count, [Out] UInt32[] obj)
{
@@ -26804,6 +31417,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")]
public static
void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] Int32[] count, [Out] Int32[] obj)
{
@@ -26818,6 +31432,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")]
public static
void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out UInt32 obj)
{
@@ -26833,6 +31448,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")]
public static
void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] out Int32 count, [Out] out Int32 obj)
{
@@ -26849,6 +31465,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")]
public static
unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] UInt32* obj)
{
@@ -26856,6 +31473,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")]
public static
unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [Out] Int32* count, [Out] Int32* obj)
{
@@ -26863,12 +31481,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformLocationARB")]
public static
Int32 GetUniformLocation(UInt32 programObj, System.String name)
{
return Delegates.glGetUniformLocationARB((UInt32)programObj, (System.String)name);
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformLocationARB")]
public static
Int32 GetUniformLocation(Int32 programObj, System.String name)
{
@@ -26876,45 +31496,48 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetActiveUniformARB")]
public static
- void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name)
+ void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ArbShaderObjects[] type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = length)
fixed (Int32* size_ptr = size)
- fixed (OpenTK.Graphics.All* type_ptr = type)
+ fixed (OpenTK.Graphics.ArbShaderObjects* type_ptr = type)
{
- Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ArbShaderObjects*)type_ptr, (System.Text.StringBuilder)name);
}
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetActiveUniformARB")]
public static
- void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name)
+ void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ArbShaderObjects[] type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = length)
fixed (Int32* size_ptr = size)
- fixed (OpenTK.Graphics.All* type_ptr = type)
+ fixed (OpenTK.Graphics.ArbShaderObjects* type_ptr = type)
{
- Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ArbShaderObjects*)type_ptr, (System.Text.StringBuilder)name);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetActiveUniformARB")]
public static
- void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name)
+ void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.ArbShaderObjects type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = &length)
fixed (Int32* size_ptr = &size)
- fixed (OpenTK.Graphics.All* type_ptr = &type)
+ fixed (OpenTK.Graphics.ArbShaderObjects* type_ptr = &type)
{
- Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ArbShaderObjects*)type_ptr, (System.Text.StringBuilder)name);
length = *length_ptr;
size = *size_ptr;
type = *type_ptr;
@@ -26922,16 +31545,17 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetActiveUniformARB")]
public static
- void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name)
+ void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.ArbShaderObjects type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = &length)
fixed (Int32* size_ptr = &size)
- fixed (OpenTK.Graphics.All* type_ptr = &type)
+ fixed (OpenTK.Graphics.ArbShaderObjects* type_ptr = &type)
{
- Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ArbShaderObjects*)type_ptr, (System.Text.StringBuilder)name);
length = *length_ptr;
size = *size_ptr;
type = *type_ptr;
@@ -26940,20 +31564,23 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetActiveUniformARB")]
public static
- unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name)
+ unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ArbShaderObjects* type, [Out] System.Text.StringBuilder name)
{
- Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.All*)type, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ArbShaderObjects*)type, (System.Text.StringBuilder)name);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetActiveUniformARB")]
public static
- unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name)
+ unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ArbShaderObjects* type, [Out] System.Text.StringBuilder name)
{
- Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.All*)type, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ArbShaderObjects*)type, (System.Text.StringBuilder)name);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformfvARB")]
public static
void GetUniform(UInt32 programObj, Int32 location, [Out] Single[] @params)
{
@@ -26966,6 +31593,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformfvARB")]
public static
void GetUniform(Int32 programObj, Int32 location, [Out] Single[] @params)
{
@@ -26979,6 +31607,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformfvARB")]
public static
void GetUniform(UInt32 programObj, Int32 location, [Out] out Single @params)
{
@@ -26992,6 +31621,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformfvARB")]
public static
void GetUniform(Int32 programObj, Int32 location, [Out] out Single @params)
{
@@ -27006,6 +31636,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformfvARB")]
public static
unsafe void GetUniform(UInt32 programObj, Int32 location, [Out] Single* @params)
{
@@ -27013,6 +31644,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformfvARB")]
public static
unsafe void GetUniform(Int32 programObj, Int32 location, [Out] Single* @params)
{
@@ -27020,6 +31652,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformivARB")]
public static
void GetUniform(UInt32 programObj, Int32 location, [Out] Int32[] @params)
{
@@ -27032,6 +31665,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformivARB")]
public static
void GetUniform(Int32 programObj, Int32 location, [Out] Int32[] @params)
{
@@ -27045,6 +31679,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformivARB")]
public static
void GetUniform(UInt32 programObj, Int32 location, [Out] out Int32 @params)
{
@@ -27058,6 +31693,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformivARB")]
public static
void GetUniform(Int32 programObj, Int32 location, [Out] out Int32 @params)
{
@@ -27072,6 +31708,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformivARB")]
public static
unsafe void GetUniform(UInt32 programObj, Int32 location, [Out] Int32* @params)
{
@@ -27079,6 +31716,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetUniformivARB")]
public static
unsafe void GetUniform(Int32 programObj, Int32 location, [Out] Int32* @params)
{
@@ -27086,6 +31724,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetShaderSourceARB")]
public static
void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder[] source)
{
@@ -27098,6 +31737,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetShaderSourceARB")]
public static
void GetShaderSource(Int32 obj, Int32 maxLength, [Out] Int32[] length, [Out] System.Text.StringBuilder[] source)
{
@@ -27111,6 +31751,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetShaderSourceARB")]
public static
void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source)
{
@@ -27124,6 +31765,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetShaderSourceARB")]
public static
void GetShaderSource(Int32 obj, Int32 maxLength, [Out] out Int32 length, [Out] System.Text.StringBuilder[] source)
{
@@ -27138,6 +31780,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetShaderSourceARB")]
public static
unsafe void GetShaderSource(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source)
{
@@ -27145,6 +31788,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetShaderSourceARB")]
public static
unsafe void GetShaderSource(Int32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder[] source)
{
@@ -27152,12 +31796,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glBindAttribLocationARB")]
public static
void BindAttribLocation(UInt32 programObj, UInt32 index, System.String name)
{
Delegates.glBindAttribLocationARB((UInt32)programObj, (UInt32)index, (System.String)name);
}
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glBindAttribLocationARB")]
public static
void BindAttribLocation(Int32 programObj, Int32 index, System.String name)
{
@@ -27165,45 +31811,48 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glGetActiveAttribARB")]
public static
- void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name)
+ void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ArbVertexShader[] type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = length)
fixed (Int32* size_ptr = size)
- fixed (OpenTK.Graphics.All* type_ptr = type)
+ fixed (OpenTK.Graphics.ArbVertexShader* type_ptr = type)
{
- Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ArbVertexShader*)type_ptr, (System.Text.StringBuilder)name);
}
}
}
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glGetActiveAttribARB")]
public static
- void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.All[] type, [Out] System.Text.StringBuilder name)
+ void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32[] length, [Out] Int32[] size, [Out] OpenTK.Graphics.ArbVertexShader[] type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = length)
fixed (Int32* size_ptr = size)
- fixed (OpenTK.Graphics.All* type_ptr = type)
+ fixed (OpenTK.Graphics.ArbVertexShader* type_ptr = type)
{
- Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ArbVertexShader*)type_ptr, (System.Text.StringBuilder)name);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glGetActiveAttribARB")]
public static
- void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name)
+ void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.ArbVertexShader type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = &length)
fixed (Int32* size_ptr = &size)
- fixed (OpenTK.Graphics.All* type_ptr = &type)
+ fixed (OpenTK.Graphics.ArbVertexShader* type_ptr = &type)
{
- Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ArbVertexShader*)type_ptr, (System.Text.StringBuilder)name);
length = *length_ptr;
size = *size_ptr;
type = *type_ptr;
@@ -27211,16 +31860,17 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glGetActiveAttribARB")]
public static
- void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.All type, [Out] System.Text.StringBuilder name)
+ void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] out Int32 length, [Out] out Int32 size, [Out] out OpenTK.Graphics.ArbVertexShader type, [Out] System.Text.StringBuilder name)
{
unsafe
{
fixed (Int32* length_ptr = &length)
fixed (Int32* size_ptr = &size)
- fixed (OpenTK.Graphics.All* type_ptr = &type)
+ fixed (OpenTK.Graphics.ArbVertexShader* type_ptr = &type)
{
- Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.All*)type_ptr, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ArbVertexShader*)type_ptr, (System.Text.StringBuilder)name);
length = *length_ptr;
size = *size_ptr;
type = *type_ptr;
@@ -27229,79 +31879,206 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glGetActiveAttribARB")]
public static
- unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name)
+ unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ArbVertexShader* type, [Out] System.Text.StringBuilder name)
{
- Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.All*)type, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ArbVertexShader*)type, (System.Text.StringBuilder)name);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glGetActiveAttribARB")]
public static
- unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name)
+ unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ArbVertexShader* type, [Out] System.Text.StringBuilder name)
{
- Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.All*)type, (System.Text.StringBuilder)name);
+ Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ArbVertexShader*)type, (System.Text.StringBuilder)name);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glGetAttribLocationARB")]
public static
Int32 GetAttribLocation(UInt32 programObj, System.String name)
{
return Delegates.glGetAttribLocationARB((UInt32)programObj, (System.String)name);
}
+ [AutoGenerated(Category = "ArbVertexShader", Version = "1.2", EntryPoint = "glGetAttribLocationARB")]
public static
Int32 GetAttribLocation(Int32 programObj, System.String name)
{
return Delegates.glGetAttribLocationARB((UInt32)programObj, (System.String)name);
}
+ [AutoGenerated(Category = "ArbDrawBuffers", Version = "1.5", EntryPoint = "glDrawBuffersARB")]
public static
- void DrawBuffers(Int32 n, OpenTK.Graphics.All[] bufs)
+ void DrawBuffers(Int32 n, OpenTK.Graphics.ArbDrawBuffers[] bufs)
{
unsafe
{
- fixed (OpenTK.Graphics.All* bufs_ptr = bufs)
+ fixed (OpenTK.Graphics.ArbDrawBuffers* bufs_ptr = bufs)
{
- Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.All*)bufs_ptr);
+ Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.ArbDrawBuffers*)bufs_ptr);
}
}
}
+ [AutoGenerated(Category = "ArbDrawBuffers", Version = "1.5", EntryPoint = "glDrawBuffersARB")]
public static
- void DrawBuffers(Int32 n, ref OpenTK.Graphics.All bufs)
+ void DrawBuffers(Int32 n, ref OpenTK.Graphics.ArbDrawBuffers bufs)
{
unsafe
{
- fixed (OpenTK.Graphics.All* bufs_ptr = &bufs)
+ fixed (OpenTK.Graphics.ArbDrawBuffers* bufs_ptr = &bufs)
{
- Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.All*)bufs_ptr);
+ Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.ArbDrawBuffers*)bufs_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbDrawBuffers", Version = "1.5", EntryPoint = "glDrawBuffersARB")]
public static
- unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.All* bufs)
+ unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ArbDrawBuffers* bufs)
{
- Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.All*)bufs);
+ Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.ArbDrawBuffers*)bufs);
}
+ [AutoGenerated(Category = "ArbColorBufferFloat", Version = "1.5", EntryPoint = "glClampColorARB")]
public static
- void ClampColor(OpenTK.Graphics.All target, OpenTK.Graphics.All clamp)
+ void ClampColor(OpenTK.Graphics.ArbColorBufferFloat target, OpenTK.Graphics.ArbColorBufferFloat clamp)
{
- Delegates.glClampColorARB((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)clamp);
+ Delegates.glClampColorARB((OpenTK.Graphics.ArbColorBufferFloat)target, (OpenTK.Graphics.ArbColorBufferFloat)clamp);
+ }
+
+ [AutoGenerated(Category = "ArbDrawInstanced", Version = "2.0", EntryPoint = "glDrawArraysInstancedARB")]
+ public static
+ void DrawArraysInstance(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count, Int32 primcount)
+ {
+ Delegates.glDrawArraysInstancedARB((OpenTK.Graphics.BeginMode)mode, (Int32)first, (Int32)count, (Int32)primcount);
+ }
+
+ [AutoGenerated(Category = "ArbDrawInstanced", Version = "2.0", EntryPoint = "glDrawElementsInstancedARB")]
+ public static
+ void DrawElementsInstance(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount)
+ {
+ unsafe
+ {
+ Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.BeginMode)mode, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices, (Int32)primcount);
+ }
+ }
+
+ [AutoGenerated(Category = "ArbDrawInstanced", Version = "2.0", EntryPoint = "glDrawElementsInstancedARB")]
+ public static
+ void DrawElementsInstance(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle indices_ptr = System.Runtime.InteropServices.GCHandle.Alloc(indices, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.BeginMode)mode, (Int32)count, (OpenTK.Graphics.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount);
+ }
+ finally
+ {
+ indices_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbGeometryShader4", Version = "3.0", EntryPoint = "glProgramParameteriARB")]
+ public static
+ void ProgramParameter(UInt32 program, OpenTK.Graphics.ArbGeometryShader4 pname, Int32 value)
+ {
+ Delegates.glProgramParameteriARB((UInt32)program, (OpenTK.Graphics.ArbGeometryShader4)pname, (Int32)value);
+ }
+
+ [AutoGenerated(Category = "ArbGeometryShader4", Version = "3.0", EntryPoint = "glProgramParameteriARB")]
+ public static
+ void ProgramParameter(Int32 program, OpenTK.Graphics.ArbGeometryShader4 pname, Int32 value)
+ {
+ Delegates.glProgramParameteriARB((UInt32)program, (OpenTK.Graphics.ArbGeometryShader4)pname, (Int32)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbGeometryShader4", Version = "3.0", EntryPoint = "glFramebufferTextureARB")]
+ public static
+ void FramebufferTexture(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level)
+ {
+ Delegates.glFramebufferTextureARB((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level);
+ }
+
+ [AutoGenerated(Category = "ArbGeometryShader4", Version = "3.0", EntryPoint = "glFramebufferTextureARB")]
+ public static
+ void FramebufferTexture(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level)
+ {
+ Delegates.glFramebufferTextureARB((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbGeometryShader4", Version = "3.0", EntryPoint = "glFramebufferTextureLayerARB")]
+ public static
+ void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer)
+ {
+ Delegates.glFramebufferTextureLayerARB((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer);
+ }
+
+ [AutoGenerated(Category = "ArbGeometryShader4", Version = "3.0", EntryPoint = "glFramebufferTextureLayerARB")]
+ public static
+ void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer)
+ {
+ Delegates.glFramebufferTextureLayerARB((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbGeometryShader4", Version = "3.0", EntryPoint = "glFramebufferTextureFaceARB")]
+ public static
+ void FramebufferTextureFace(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.TextureTarget face)
+ {
+ Delegates.glFramebufferTextureFaceARB((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.TextureTarget)face);
+ }
+
+ [AutoGenerated(Category = "ArbGeometryShader4", Version = "3.0", EntryPoint = "glFramebufferTextureFaceARB")]
+ public static
+ void FramebufferTextureFace(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.TextureTarget face)
+ {
+ Delegates.glFramebufferTextureFaceARB((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.TextureTarget)face);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ArbTextureBufferObject", Version = "3.0", EntryPoint = "glTexBufferARB")]
+ public static
+ void TexBuffer(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ArbTextureBufferObject internalformat, UInt32 buffer)
+ {
+ Delegates.glTexBufferARB((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.ArbTextureBufferObject)internalformat, (UInt32)buffer);
+ }
+
+ [AutoGenerated(Category = "ArbTextureBufferObject", Version = "3.0", EntryPoint = "glTexBufferARB")]
+ public static
+ void TexBuffer(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ArbTextureBufferObject internalformat, Int32 buffer)
+ {
+ Delegates.glTexBufferARB((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.ArbTextureBufferObject)internalformat, (UInt32)buffer);
}
}
public static partial class Ext
{
+ [AutoGenerated(Category = "ExtBlendColor", Version = "1.0", EntryPoint = "glBlendColorEXT")]
public static
void BlendColor(Single red, Single green, Single blue, Single alpha)
{
Delegates.glBlendColorEXT((Single)red, (Single)green, (Single)blue, (Single)alpha);
}
+ [AutoGenerated(Category = "ExtPolygonOffset", Version = "1.0", EntryPoint = "glPolygonOffsetEXT")]
+ public static
+ void PolygonOffset(Single factor, Single bias)
+ {
+ Delegates.glPolygonOffsetEXT((Single)factor, (Single)bias);
+ }
+
+ [AutoGenerated(Category = "ExtTexture3D", Version = "1.0", EntryPoint = "glTexImage3DEXT")]
public static
void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -27311,6 +32088,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTexture3D", Version = "1.0", EntryPoint = "glTexImage3DEXT")]
public static
void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -27328,6 +32106,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTexture3D", Version = "1.0", EntryPoint = "glTexSubImage3DEXT")]
public static
void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -27337,6 +32116,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTexture3D", Version = "1.0", EntryPoint = "glTexSubImage3DEXT")]
public static
void TexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -27354,6 +32134,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSubtexture", Version = "1.0", EntryPoint = "glTexSubImage1DEXT")]
public static
void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -27363,6 +32144,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSubtexture", Version = "1.0", EntryPoint = "glTexSubImage1DEXT")]
public static
void TexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -27380,6 +32162,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSubtexture", Version = "1.0", EntryPoint = "glTexSubImage2DEXT")]
public static
void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -27389,6 +32172,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSubtexture", Version = "1.0", EntryPoint = "glTexSubImage2DEXT")]
public static
void TexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -27406,54 +32190,61 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCopyTexture", Version = "1.0", EntryPoint = "glCopyTexImage1DEXT")]
public static
void CopyTexImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border)
{
Delegates.glCopyTexImage1DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border);
}
+ [AutoGenerated(Category = "ExtCopyTexture", Version = "1.0", EntryPoint = "glCopyTexImage2DEXT")]
public static
void CopyTexImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border)
{
Delegates.glCopyTexImage2DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border);
}
+ [AutoGenerated(Category = "ExtCopyTexture", Version = "1.0", EntryPoint = "glCopyTexSubImage1DEXT")]
public static
void CopyTexSubImage1D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width)
{
Delegates.glCopyTexSubImage1DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width);
}
+ [AutoGenerated(Category = "ExtCopyTexture", Version = "1.0", EntryPoint = "glCopyTexSubImage2DEXT")]
public static
void CopyTexSubImage2D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height)
{
Delegates.glCopyTexSubImage2DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
}
+ [AutoGenerated(Category = "ExtCopyTexture", Version = "1.0", EntryPoint = "glCopyTexSubImage3DEXT")]
public static
void CopyTexSubImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height)
{
Delegates.glCopyTexSubImage3DEXT((OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetHistogramEXT")]
public static
- void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values)
+ void GetHistogram(OpenTK.Graphics.ExtHistogram target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values)
{
unsafe
{
- Delegates.glGetHistogramEXT((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values);
+ Delegates.glGetHistogramEXT((OpenTK.Graphics.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values);
}
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetHistogramEXT")]
public static
- void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object values)
+ void GetHistogram(OpenTK.Graphics.ExtHistogram target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object values)
{
unsafe
{
System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetHistogramEXT((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject());
+ Delegates.glGetHistogramEXT((OpenTK.Graphics.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject());
}
finally
{
@@ -27462,88 +32253,96 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetHistogramParameterfvEXT")]
public static
- void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetHistogramParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetHistogramParameterfvEXT")]
public static
- void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetHistogramParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetHistogramParameterfvEXT")]
public static
- unsafe void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetHistogramParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Single* @params)
{
- Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetHistogramParameterivEXT")]
public static
- void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetHistogramParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetHistogramParameterivEXT")]
public static
- void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetHistogramParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetHistogramParameterivEXT")]
public static
- unsafe void GetHistogramParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetHistogramParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Int32* @params)
{
- Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetMinmaxEXT")]
public static
- void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values)
+ void GetMinmax(OpenTK.Graphics.ExtHistogram target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values)
{
unsafe
{
- Delegates.glGetMinmaxEXT((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values);
+ Delegates.glGetMinmaxEXT((OpenTK.Graphics.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values);
}
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetMinmaxEXT")]
public static
- void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object values)
+ void GetMinmax(OpenTK.Graphics.ExtHistogram target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object values)
{
unsafe
{
System.Runtime.InteropServices.GCHandle values_ptr = System.Runtime.InteropServices.GCHandle.Alloc(values, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetMinmaxEXT((OpenTK.Graphics.All)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject());
+ Delegates.glGetMinmaxEXT((OpenTK.Graphics.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject());
}
finally
{
@@ -27552,112 +32351,124 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetMinmaxParameterfvEXT")]
public static
- void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetMinmaxParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetMinmaxParameterfvEXT")]
public static
- void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetMinmaxParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetMinmaxParameterfvEXT")]
public static
- unsafe void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetMinmaxParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Single* @params)
{
- Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetMinmaxParameterivEXT")]
public static
- void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetMinmaxParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetMinmaxParameterivEXT")]
public static
- void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetMinmaxParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glGetMinmaxParameterivEXT")]
public static
- unsafe void GetMinmaxParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetMinmaxParameter(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Int32* @params)
{
- Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.ExtHistogram)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glHistogramEXT")]
public static
- void Histogram(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink)
+ void Histogram(OpenTK.Graphics.ExtHistogram target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink)
{
- Delegates.glHistogramEXT((OpenTK.Graphics.All)target, (Int32)width, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink);
+ Delegates.glHistogramEXT((OpenTK.Graphics.ExtHistogram)target, (Int32)width, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink);
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glMinmaxEXT")]
public static
- void Minmax(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink)
+ void Minmax(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink)
{
- Delegates.glMinmaxEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink);
+ Delegates.glMinmaxEXT((OpenTK.Graphics.ExtHistogram)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (bool)sink);
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glResetHistogramEXT")]
public static
- void ResetHistogram(OpenTK.Graphics.All target)
+ void ResetHistogram(OpenTK.Graphics.ExtHistogram target)
{
- Delegates.glResetHistogramEXT((OpenTK.Graphics.All)target);
+ Delegates.glResetHistogramEXT((OpenTK.Graphics.ExtHistogram)target);
}
+ [AutoGenerated(Category = "ExtHistogram", Version = "1.0", EntryPoint = "glResetMinmaxEXT")]
public static
- void ResetMinmax(OpenTK.Graphics.All target)
+ void ResetMinmax(OpenTK.Graphics.ExtHistogram target)
{
- Delegates.glResetMinmaxEXT((OpenTK.Graphics.All)target);
+ Delegates.glResetMinmaxEXT((OpenTK.Graphics.ExtHistogram)target);
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionFilter1DEXT")]
public static
- void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image)
+ void ConvolutionFilter1D(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image)
{
unsafe
{
- Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
+ Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionFilter1DEXT")]
public static
- void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
+ void ConvolutionFilter1D(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
{
unsafe
{
System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
+ Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
}
finally
{
@@ -27666,24 +32477,26 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionFilter2DEXT")]
public static
- void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image)
+ void ConvolutionFilter2D(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image)
{
unsafe
{
- Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
+ Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionFilter2DEXT")]
public static
- void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
+ void ConvolutionFilter2D(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
{
unsafe
{
System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
+ Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
}
finally
{
@@ -27692,110 +32505,122 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionParameterfEXT")]
public static
- void ConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params)
+ void ConvolutionParameter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Single @params)
{
- Delegates.glConvolutionParameterfEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single)@params);
+ Delegates.glConvolutionParameterfEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Single)@params);
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionParameterfvEXT")]
public static
- void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params)
+ void ConvolutionParameterv(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionParameterfvEXT")]
public static
- void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params)
+ void ConvolutionParameterv(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionParameterfvEXT")]
public static
- unsafe void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params)
+ unsafe void ConvolutionParameterv(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Single* @params)
{
- Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionParameteriEXT")]
public static
- void ConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params)
+ void ConvolutionParameter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Int32 @params)
{
- Delegates.glConvolutionParameteriEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)@params);
+ Delegates.glConvolutionParameteriEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Int32)@params);
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionParameterivEXT")]
public static
- void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params)
+ void ConvolutionParameterv(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionParameterivEXT")]
public static
- void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params)
+ void ConvolutionParameterv(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glConvolutionParameterivEXT")]
public static
- unsafe void ConvolutionParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void ConvolutionParameterv(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Int32* @params)
{
- Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glCopyConvolutionFilter1DEXT")]
public static
- void CopyConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width)
+ void CopyConvolutionFilter1D(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width)
{
- Delegates.glCopyConvolutionFilter1DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width);
+ Delegates.glCopyConvolutionFilter1DEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width);
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glCopyConvolutionFilter2DEXT")]
public static
- void CopyConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height)
+ void CopyConvolutionFilter2D(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height)
{
- Delegates.glCopyConvolutionFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
+ Delegates.glCopyConvolutionFilter2DEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetConvolutionFilterEXT")]
public static
- void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image)
+ void GetConvolutionFilter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image)
{
unsafe
{
- Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
+ Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image);
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetConvolutionFilterEXT")]
public static
- void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
+ void GetConvolutionFilter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object image)
{
unsafe
{
System.Runtime.InteropServices.GCHandle image_ptr = System.Runtime.InteropServices.GCHandle.Alloc(image, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
+ Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject());
}
finally
{
@@ -27804,81 +32629,89 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetConvolutionParameterfvEXT")]
public static
- void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetConvolutionParameter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetConvolutionParameterfvEXT")]
public static
- void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetConvolutionParameter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetConvolutionParameterfvEXT")]
public static
- unsafe void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetConvolutionParameter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, [Out] Single* @params)
{
- Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetConvolutionParameterivEXT")]
public static
- void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetConvolutionParameter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetConvolutionParameterivEXT")]
public static
- void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetConvolutionParameter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetConvolutionParameterivEXT")]
public static
- unsafe void GetConvolutionParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetConvolutionParameter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, [Out] Int32* @params)
{
- Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.ExtConvolution)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")]
public static
- void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span)
+ void GetSeparableFilter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span)
{
unsafe
{
- Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span);
+ Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span);
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")]
public static
- void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span)
+ void GetSeparableFilter(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column, [In, Out] object span)
{
unsafe
{
@@ -27887,7 +32720,7 @@ namespace OpenTK.Graphics
System.Runtime.InteropServices.GCHandle span_ptr = System.Runtime.InteropServices.GCHandle.Alloc(span, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
+ Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
}
finally
{
@@ -27898,17 +32731,19 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")]
public static
- void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column)
+ void SeparableFilter2D(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column)
{
unsafe
{
- Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column);
+ Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row, (IntPtr)column);
}
}
+ [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")]
public static
- void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column)
+ void SeparableFilter2D(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object row, [In, Out] object column)
{
unsafe
{
@@ -27916,7 +32751,7 @@ namespace OpenTK.Graphics
System.Runtime.InteropServices.GCHandle column_ptr = System.Runtime.InteropServices.GCHandle.Alloc(column, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
+ Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.ExtConvolution)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
}
finally
{
@@ -27927,12 +32762,92 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glAreTexturesResidentEXT")]
+ public static
+ bool AreTexturesResident(Int32 n, UInt32[] textures, [Out] bool[] residences)
+ {
+ unsafe
+ {
+ fixed (UInt32* textures_ptr = textures)
+ fixed (bool* residences_ptr = residences)
+ {
+ return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glAreTexturesResidentEXT")]
+ public static
+ bool AreTexturesResident(Int32 n, Int32[] textures, [Out] bool[] residences)
+ {
+ unsafe
+ {
+ fixed (Int32* textures_ptr = textures)
+ fixed (bool* residences_ptr = residences)
+ {
+ return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glAreTexturesResidentEXT")]
+ public static
+ bool AreTexturesResident(Int32 n, ref UInt32 textures, [Out] out bool residences)
+ {
+ unsafe
+ {
+ fixed (UInt32* textures_ptr = &textures)
+ fixed (bool* residences_ptr = &residences)
+ {
+ bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr);
+ residences = *residences_ptr;
+ return retval;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glAreTexturesResidentEXT")]
+ public static
+ bool AreTexturesResident(Int32 n, ref Int32 textures, [Out] out bool residences)
+ {
+ unsafe
+ {
+ fixed (Int32* textures_ptr = &textures)
+ fixed (bool* residences_ptr = &residences)
+ {
+ bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr);
+ residences = *residences_ptr;
+ return retval;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glAreTexturesResidentEXT")]
+ public static
+ unsafe bool AreTexturesResident(Int32 n, UInt32* textures, [Out] bool* residences)
+ {
+ return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glAreTexturesResidentEXT")]
+ public static
+ unsafe bool AreTexturesResident(Int32 n, Int32* textures, [Out] bool* residences)
+ {
+ return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glBindTextureEXT")]
public static
void BindTexture(OpenTK.Graphics.TextureTarget target, UInt32 texture)
{
Delegates.glBindTextureEXT((OpenTK.Graphics.TextureTarget)target, (UInt32)texture);
}
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glBindTextureEXT")]
public static
void BindTexture(OpenTK.Graphics.TextureTarget target, Int32 texture)
{
@@ -27940,6 +32855,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glDeleteTexturesEXT")]
public static
void DeleteTextures(Int32 n, UInt32[] textures)
{
@@ -27952,6 +32868,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glDeleteTexturesEXT")]
public static
void DeleteTextures(Int32 n, Int32[] textures)
{
@@ -27965,6 +32882,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glDeleteTexturesEXT")]
public static
void DeleteTextures(Int32 n, ref UInt32 textures)
{
@@ -27977,6 +32895,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glDeleteTexturesEXT")]
public static
void DeleteTextures(Int32 n, ref Int32 textures)
{
@@ -27990,6 +32909,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glDeleteTexturesEXT")]
public static
unsafe void DeleteTextures(Int32 n, UInt32* textures)
{
@@ -27997,6 +32917,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glDeleteTexturesEXT")]
public static
unsafe void DeleteTextures(Int32 n, Int32* textures)
{
@@ -28004,6 +32925,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glGenTexturesEXT")]
public static
void GenTextures(Int32 n, [Out] UInt32[] textures)
{
@@ -28016,6 +32938,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glGenTexturesEXT")]
public static
void GenTextures(Int32 n, [Out] Int32[] textures)
{
@@ -28029,6 +32952,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glGenTexturesEXT")]
public static
void GenTextures(Int32 n, [Out] out UInt32 textures)
{
@@ -28042,6 +32966,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glGenTexturesEXT")]
public static
void GenTextures(Int32 n, [Out] out Int32 textures)
{
@@ -28056,6 +32981,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glGenTexturesEXT")]
public static
unsafe void GenTextures(Int32 n, [Out] UInt32* textures)
{
@@ -28063,6 +32989,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glGenTexturesEXT")]
public static
unsafe void GenTextures(Int32 n, [Out] Int32* textures)
{
@@ -28070,12 +32997,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glIsTextureEXT")]
public static
bool IsTexture(UInt32 texture)
{
return Delegates.glIsTextureEXT((UInt32)texture);
}
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glIsTextureEXT")]
public static
bool IsTexture(Int32 texture)
{
@@ -28083,6 +33012,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glPrioritizeTexturesEXT")]
public static
void PrioritizeTextures(Int32 n, UInt32[] textures, Single[] priorities)
{
@@ -28096,6 +33026,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glPrioritizeTexturesEXT")]
public static
void PrioritizeTextures(Int32 n, Int32[] textures, Single[] priorities)
{
@@ -28110,6 +33041,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glPrioritizeTexturesEXT")]
public static
void PrioritizeTextures(Int32 n, ref UInt32 textures, ref Single priorities)
{
@@ -28123,6 +33055,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glPrioritizeTexturesEXT")]
public static
void PrioritizeTextures(Int32 n, ref Int32 textures, ref Single priorities)
{
@@ -28137,6 +33070,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glPrioritizeTexturesEXT")]
public static
unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities)
{
@@ -28144,12 +33078,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureObject", Version = "1.0", EntryPoint = "glPrioritizeTexturesEXT")]
public static
unsafe void PrioritizeTextures(Int32 n, Int32* textures, Single* priorities)
{
Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities);
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glArrayElementEXT")]
+ public static
+ void ArrayElement(Int32 i)
+ {
+ Delegates.glArrayElementEXT((Int32)i);
+ }
+
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glColorPointerEXT")]
public static
void ColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, Int32 count, IntPtr pointer)
{
@@ -28159,6 +33102,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glColorPointerEXT")]
public static
void ColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, Int32 count, [In, Out] object pointer)
{
@@ -28176,12 +33120,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glDrawArraysEXT")]
public static
void DrawArrays(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count)
{
Delegates.glDrawArraysEXT((OpenTK.Graphics.BeginMode)mode, (Int32)first, (Int32)count);
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glEdgeFlagPointerEXT")]
public static
void EdgeFlagPointer(Int32 stride, Int32 count, bool[] pointer)
{
@@ -28194,6 +33140,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glEdgeFlagPointerEXT")]
public static
void EdgeFlagPointer(Int32 stride, Int32 count, ref bool pointer)
{
@@ -28207,12 +33154,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glEdgeFlagPointerEXT")]
public static
unsafe void EdgeFlagPointer(Int32 stride, Int32 count, bool* pointer)
{
Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer);
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glGetPointervEXT")]
public static
void GetPointer(OpenTK.Graphics.GetPointervPName pname, [Out] IntPtr @params)
{
@@ -28222,6 +33171,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glGetPointervEXT")]
public static
void GetPointer(OpenTK.Graphics.GetPointervPName pname, [In, Out] object @params)
{
@@ -28239,6 +33189,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glIndexPointerEXT")]
public static
void IndexPointer(OpenTK.Graphics.IndexPointerType type, Int32 stride, Int32 count, IntPtr pointer)
{
@@ -28248,6 +33199,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glIndexPointerEXT")]
public static
void IndexPointer(OpenTK.Graphics.IndexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer)
{
@@ -28265,6 +33217,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glNormalPointerEXT")]
public static
void NormalPointer(OpenTK.Graphics.NormalPointerType type, Int32 stride, Int32 count, IntPtr pointer)
{
@@ -28274,6 +33227,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glNormalPointerEXT")]
public static
void NormalPointer(OpenTK.Graphics.NormalPointerType type, Int32 stride, Int32 count, [In, Out] object pointer)
{
@@ -28291,6 +33245,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glTexCoordPointerEXT")]
public static
void TexCoordPointer(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, Int32 count, IntPtr pointer)
{
@@ -28300,6 +33255,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glTexCoordPointerEXT")]
public static
void TexCoordPointer(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, Int32 count, [In, Out] object pointer)
{
@@ -28317,6 +33273,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glVertexPointerEXT")]
public static
void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, Int32 count, IntPtr pointer)
{
@@ -28326,6 +33283,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexArray", Version = "1.0", EntryPoint = "glVertexPointerEXT")]
public static
void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, Int32 count, [In, Out] object pointer)
{
@@ -28343,67 +33301,74 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtBlendMinmax", Version = "1.0", EntryPoint = "glBlendEquationEXT")]
public static
- void BlendEquation(OpenTK.Graphics.All mode)
+ void BlendEquation(OpenTK.Graphics.ExtBlendMinmax mode)
{
- Delegates.glBlendEquationEXT((OpenTK.Graphics.All)mode);
+ Delegates.glBlendEquationEXT((OpenTK.Graphics.ExtBlendMinmax)mode);
}
+ [AutoGenerated(Category = "ExtPointParameters", Version = "1.0", EntryPoint = "glPointParameterfEXT")]
public static
- void PointParameter(OpenTK.Graphics.All pname, Single param)
+ void PointParameter(OpenTK.Graphics.ExtPointParameters pname, Single param)
{
- Delegates.glPointParameterfEXT((OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glPointParameterfEXT((OpenTK.Graphics.ExtPointParameters)pname, (Single)param);
}
+ [AutoGenerated(Category = "ExtPointParameters", Version = "1.0", EntryPoint = "glPointParameterfvEXT")]
public static
- void PointParameterv(OpenTK.Graphics.All pname, Single[] @params)
+ void PointParameterv(OpenTK.Graphics.ExtPointParameters pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glPointParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPointParameterfvEXT((OpenTK.Graphics.ExtPointParameters)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtPointParameters", Version = "1.0", EntryPoint = "glPointParameterfvEXT")]
public static
- void PointParameterv(OpenTK.Graphics.All pname, ref Single @params)
+ void PointParameterv(OpenTK.Graphics.ExtPointParameters pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glPointParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPointParameterfvEXT((OpenTK.Graphics.ExtPointParameters)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtPointParameters", Version = "1.0", EntryPoint = "glPointParameterfvEXT")]
public static
- unsafe void PointParameterv(OpenTK.Graphics.All pname, Single* @params)
+ unsafe void PointParameterv(OpenTK.Graphics.ExtPointParameters pname, Single* @params)
{
- Delegates.glPointParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glPointParameterfvEXT((OpenTK.Graphics.ExtPointParameters)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "ExtColorSubtable", Version = "1.2", EntryPoint = "glColorSubTableEXT")]
public static
- void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data)
+ void ColorSubTable(OpenTK.Graphics.ExtColorSubtable target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data)
{
unsafe
{
- Delegates.glColorSubTableEXT((OpenTK.Graphics.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data);
+ Delegates.glColorSubTableEXT((OpenTK.Graphics.ExtColorSubtable)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data);
}
}
+ [AutoGenerated(Category = "ExtColorSubtable", Version = "1.2", EntryPoint = "glColorSubTableEXT")]
public static
- void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object data)
+ void ColorSubTable(OpenTK.Graphics.ExtColorSubtable target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object data)
{
unsafe
{
System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glColorSubTableEXT((OpenTK.Graphics.All)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject());
+ Delegates.glColorSubTableEXT((OpenTK.Graphics.ExtColorSubtable)target, (Int32)start, (Int32)count, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject());
}
finally
{
@@ -28412,30 +33377,33 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtColorSubtable", Version = "1.2", EntryPoint = "glCopyColorSubTableEXT")]
public static
- void CopyColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 x, Int32 y, Int32 width)
+ void CopyColorSubTable(OpenTK.Graphics.ExtColorSubtable target, Int32 start, Int32 x, Int32 y, Int32 width)
{
- Delegates.glCopyColorSubTableEXT((OpenTK.Graphics.All)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width);
+ Delegates.glCopyColorSubTableEXT((OpenTK.Graphics.ExtColorSubtable)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width);
}
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glColorTableEXT")]
public static
- void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table)
+ void ColorTable(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table)
{
unsafe
{
- Delegates.glColorTableEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
+ Delegates.glColorTableEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
}
}
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glColorTableEXT")]
public static
- void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
+ void ColorTable(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
{
unsafe
{
System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glColorTableEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
+ Delegates.glColorTableEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
}
finally
{
@@ -28444,24 +33412,26 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glGetColorTableEXT")]
public static
- void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr data)
+ void GetColorTable(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr data)
{
unsafe
{
- Delegates.glGetColorTableEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data);
+ Delegates.glGetColorTableEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data);
}
}
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glGetColorTableEXT")]
public static
- void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object data)
+ void GetColorTable(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object data)
{
unsafe
{
System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetColorTableEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject());
+ Delegates.glGetColorTableEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject());
}
finally
{
@@ -28470,159 +33440,176 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glGetColorTableParameterivEXT")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetColorTableParameter(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.ExtPalettedTexture pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.ExtPalettedTexture)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glGetColorTableParameterivEXT")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetColorTableParameter(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.ExtPalettedTexture pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.ExtPalettedTexture)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glGetColorTableParameterivEXT")]
public static
- unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetColorTableParameter(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.ExtPalettedTexture pname, [Out] Int32* @params)
{
- Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.ExtPalettedTexture)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glGetColorTableParameterfvEXT")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetColorTableParameter(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.ExtPalettedTexture pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.ExtPalettedTexture)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glGetColorTableParameterfvEXT")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetColorTableParameter(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.ExtPalettedTexture pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.ExtPalettedTexture)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtPalettedTexture", Version = "1.1", EntryPoint = "glGetColorTableParameterfvEXT")]
public static
- unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetColorTableParameter(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.ExtPalettedTexture pname, [Out] Single* @params)
{
- Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.ExtPalettedTexture)target, (OpenTK.Graphics.ExtPalettedTexture)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "ExtIndexMaterial", Version = "1.1", EntryPoint = "glIndexMaterialEXT")]
public static
- void IndexMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.All mode)
+ void IndexMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.ExtIndexMaterial mode)
{
- Delegates.glIndexMaterialEXT((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.All)mode);
+ Delegates.glIndexMaterialEXT((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.ExtIndexMaterial)mode);
}
+ [AutoGenerated(Category = "ExtIndexFunc", Version = "1.1", EntryPoint = "glIndexFuncEXT")]
public static
- void IndexFunc(OpenTK.Graphics.All func, Single @ref)
+ void IndexFunc(OpenTK.Graphics.ExtIndexFunc func, Single @ref)
{
- Delegates.glIndexFuncEXT((OpenTK.Graphics.All)func, (Single)@ref);
+ Delegates.glIndexFuncEXT((OpenTK.Graphics.ExtIndexFunc)func, (Single)@ref);
}
+ [AutoGenerated(Category = "ExtCompiledVertexArray", Version = "1.1", EntryPoint = "glLockArraysEXT")]
public static
void LockArrays(Int32 first, Int32 count)
{
Delegates.glLockArraysEXT((Int32)first, (Int32)count);
}
+ [AutoGenerated(Category = "ExtCompiledVertexArray", Version = "1.1", EntryPoint = "glUnlockArraysEXT")]
public static
void UnlockArrays()
{
Delegates.glUnlockArraysEXT();
}
+ [AutoGenerated(Category = "ExtCullVertex", Version = "1.1", EntryPoint = "glCullParameterdvEXT")]
public static
- void CullParameter(OpenTK.Graphics.All pname, [Out] Double[] @params)
+ void CullParameter(OpenTK.Graphics.ExtCullVertex pname, [Out] Double[] @params)
{
unsafe
{
fixed (Double* @params_ptr = @params)
{
- Delegates.glCullParameterdvEXT((OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glCullParameterdvEXT((OpenTK.Graphics.ExtCullVertex)pname, (Double*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtCullVertex", Version = "1.1", EntryPoint = "glCullParameterdvEXT")]
public static
- void CullParameter(OpenTK.Graphics.All pname, [Out] out Double @params)
+ void CullParameter(OpenTK.Graphics.ExtCullVertex pname, [Out] out Double @params)
{
unsafe
{
fixed (Double* @params_ptr = &@params)
{
- Delegates.glCullParameterdvEXT((OpenTK.Graphics.All)pname, (Double*)@params_ptr);
+ Delegates.glCullParameterdvEXT((OpenTK.Graphics.ExtCullVertex)pname, (Double*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCullVertex", Version = "1.1", EntryPoint = "glCullParameterdvEXT")]
public static
- unsafe void CullParameter(OpenTK.Graphics.All pname, [Out] Double* @params)
+ unsafe void CullParameter(OpenTK.Graphics.ExtCullVertex pname, [Out] Double* @params)
{
- Delegates.glCullParameterdvEXT((OpenTK.Graphics.All)pname, (Double*)@params);
+ Delegates.glCullParameterdvEXT((OpenTK.Graphics.ExtCullVertex)pname, (Double*)@params);
}
+ [AutoGenerated(Category = "ExtCullVertex", Version = "1.1", EntryPoint = "glCullParameterfvEXT")]
public static
- void CullParameter(OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void CullParameter(OpenTK.Graphics.ExtCullVertex pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glCullParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glCullParameterfvEXT((OpenTK.Graphics.ExtCullVertex)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtCullVertex", Version = "1.1", EntryPoint = "glCullParameterfvEXT")]
public static
- void CullParameter(OpenTK.Graphics.All pname, [Out] out Single @params)
+ void CullParameter(OpenTK.Graphics.ExtCullVertex pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glCullParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glCullParameterfvEXT((OpenTK.Graphics.ExtCullVertex)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCullVertex", Version = "1.1", EntryPoint = "glCullParameterfvEXT")]
public static
- unsafe void CullParameter(OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void CullParameter(OpenTK.Graphics.ExtCullVertex pname, [Out] Single* @params)
{
- Delegates.glCullParameterfvEXT((OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glCullParameterfvEXT((OpenTK.Graphics.ExtCullVertex)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawRangeElements", Version = "1.1", EntryPoint = "glDrawRangeElementsEXT")]
public static
void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices)
{
@@ -28632,6 +33619,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtDrawRangeElements", Version = "1.1", EntryPoint = "glDrawRangeElementsEXT")]
public static
void DrawRangeElements(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices)
{
@@ -28642,6 +33630,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawRangeElements", Version = "1.1", EntryPoint = "glDrawRangeElementsEXT")]
public static
void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices)
{
@@ -28659,6 +33648,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtDrawRangeElements", Version = "1.1", EntryPoint = "glDrawRangeElementsEXT")]
public static
void DrawRangeElements(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices)
{
@@ -28676,93 +33666,111 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtLightTexture", Version = "1.1", EntryPoint = "glApplyTextureEXT")]
public static
- void ApplyTexture(OpenTK.Graphics.All mode)
+ void ApplyTexture(OpenTK.Graphics.ExtLightTexture mode)
{
- Delegates.glApplyTextureEXT((OpenTK.Graphics.All)mode);
+ Delegates.glApplyTextureEXT((OpenTK.Graphics.ExtLightTexture)mode);
}
+ [AutoGenerated(Category = "ExtLightTexture", Version = "1.1", EntryPoint = "glTextureLightEXT")]
+ public static
+ void TextureLight(OpenTK.Graphics.ExtLightTexture pname)
+ {
+ Delegates.glTextureLightEXT((OpenTK.Graphics.ExtLightTexture)pname);
+ }
+
+ [AutoGenerated(Category = "ExtLightTexture", Version = "1.1", EntryPoint = "glTextureMaterialEXT")]
public static
void TextureMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter mode)
{
Delegates.glTextureMaterialEXT((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)mode);
}
+ [AutoGenerated(Category = "ExtPixelTransform", Version = "1.1", EntryPoint = "glPixelTransformParameteriEXT")]
public static
- void PixelTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param)
+ void PixelTransformParameter(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Int32 param)
{
- Delegates.glPixelTransformParameteriEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glPixelTransformParameteriEXT((OpenTK.Graphics.ExtPixelTransform)target, (OpenTK.Graphics.ExtPixelTransform)pname, (Int32)param);
}
+ [AutoGenerated(Category = "ExtPixelTransform", Version = "1.1", EntryPoint = "glPixelTransformParameterfEXT")]
public static
- void PixelTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single param)
+ void PixelTransformParameter(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Single param)
{
- Delegates.glPixelTransformParameterfEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glPixelTransformParameterfEXT((OpenTK.Graphics.ExtPixelTransform)target, (OpenTK.Graphics.ExtPixelTransform)pname, (Single)param);
}
+ [AutoGenerated(Category = "ExtPixelTransform", Version = "1.1", EntryPoint = "glPixelTransformParameterivEXT")]
public static
- void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params)
+ void PixelTransformParameterv(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.ExtPixelTransform)target, (OpenTK.Graphics.ExtPixelTransform)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtPixelTransform", Version = "1.1", EntryPoint = "glPixelTransformParameterivEXT")]
public static
- void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params)
+ void PixelTransformParameterv(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.ExtPixelTransform)target, (OpenTK.Graphics.ExtPixelTransform)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtPixelTransform", Version = "1.1", EntryPoint = "glPixelTransformParameterivEXT")]
public static
- unsafe void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void PixelTransformParameterv(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Int32* @params)
{
- Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.ExtPixelTransform)target, (OpenTK.Graphics.ExtPixelTransform)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "ExtPixelTransform", Version = "1.1", EntryPoint = "glPixelTransformParameterfvEXT")]
public static
- void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params)
+ void PixelTransformParameterv(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.ExtPixelTransform)target, (OpenTK.Graphics.ExtPixelTransform)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtPixelTransform", Version = "1.1", EntryPoint = "glPixelTransformParameterfvEXT")]
public static
- void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params)
+ void PixelTransformParameterv(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.ExtPixelTransform)target, (OpenTK.Graphics.ExtPixelTransform)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtPixelTransform", Version = "1.1", EntryPoint = "glPixelTransformParameterfvEXT")]
public static
- unsafe void PixelTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params)
+ unsafe void PixelTransformParameterv(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Single* @params)
{
- Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.ExtPixelTransform)target, (OpenTK.Graphics.ExtPixelTransform)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3bEXT")]
public static
void SecondaryColor3(SByte red, SByte green, SByte blue)
{
@@ -28770,6 +33778,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3bvEXT")]
public static
void SecondaryColor3(SByte[] v)
{
@@ -28783,6 +33792,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3bvEXT")]
public static
void SecondaryColor3(ref SByte v)
{
@@ -28796,18 +33806,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3bvEXT")]
public static
unsafe void SecondaryColor3(SByte* v)
{
Delegates.glSecondaryColor3bvEXT((SByte*)v);
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3dEXT")]
public static
void SecondaryColor3(Double red, Double green, Double blue)
{
Delegates.glSecondaryColor3dEXT((Double)red, (Double)green, (Double)blue);
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3dvEXT")]
public static
void SecondaryColor3(Double[] v)
{
@@ -28820,6 +33833,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3dvEXT")]
public static
void SecondaryColor3(ref Double v)
{
@@ -28833,18 +33847,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3dvEXT")]
public static
unsafe void SecondaryColor3(Double* v)
{
Delegates.glSecondaryColor3dvEXT((Double*)v);
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3fEXT")]
public static
void SecondaryColor3(Single red, Single green, Single blue)
{
Delegates.glSecondaryColor3fEXT((Single)red, (Single)green, (Single)blue);
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3fvEXT")]
public static
void SecondaryColor3(Single[] v)
{
@@ -28857,6 +33874,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3fvEXT")]
public static
void SecondaryColor3(ref Single v)
{
@@ -28870,18 +33888,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3fvEXT")]
public static
unsafe void SecondaryColor3(Single* v)
{
Delegates.glSecondaryColor3fvEXT((Single*)v);
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3ubEXT")]
public static
void SecondaryColor3(Byte red, Byte green, Byte blue)
{
Delegates.glSecondaryColor3ubEXT((Byte)red, (Byte)green, (Byte)blue);
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3ubvEXT")]
public static
void SecondaryColor3(Byte[] v)
{
@@ -28894,6 +33915,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3ubvEXT")]
public static
void SecondaryColor3(ref Byte v)
{
@@ -28907,6 +33929,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3ubvEXT")]
public static
unsafe void SecondaryColor3(Byte* v)
{
@@ -28914,12 +33937,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3uiEXT")]
public static
void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue)
{
Delegates.glSecondaryColor3uiEXT((UInt32)red, (UInt32)green, (UInt32)blue);
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3uiEXT")]
public static
void SecondaryColor3(Int32 red, Int32 green, Int32 blue)
{
@@ -28927,6 +33952,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3uivEXT")]
public static
void SecondaryColor3(UInt32[] v)
{
@@ -28939,6 +33965,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3uivEXT")]
public static
void SecondaryColor3(Int32[] v)
{
@@ -28952,6 +33979,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3uivEXT")]
public static
void SecondaryColor3(ref UInt32 v)
{
@@ -28964,6 +33992,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3uivEXT")]
public static
void SecondaryColor3(ref Int32 v)
{
@@ -28977,6 +34006,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3uivEXT")]
public static
unsafe void SecondaryColor3(UInt32* v)
{
@@ -28984,6 +34014,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3uivEXT")]
public static
unsafe void SecondaryColor3(Int32* v)
{
@@ -28991,12 +34022,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3usEXT")]
public static
void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue)
{
Delegates.glSecondaryColor3usEXT((UInt16)red, (UInt16)green, (UInt16)blue);
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3usEXT")]
public static
void SecondaryColor3(Int16 red, Int16 green, Int16 blue)
{
@@ -29004,6 +34037,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3usvEXT")]
public static
void SecondaryColor3(UInt16[] v)
{
@@ -29016,6 +34050,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3usvEXT")]
public static
void SecondaryColor3(Int16[] v)
{
@@ -29029,6 +34064,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3usvEXT")]
public static
void SecondaryColor3(ref UInt16 v)
{
@@ -29041,6 +34077,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3usvEXT")]
public static
void SecondaryColor3(ref Int16 v)
{
@@ -29054,6 +34091,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3usvEXT")]
public static
unsafe void SecondaryColor3(UInt16* v)
{
@@ -29061,12 +34099,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColor3usvEXT")]
public static
unsafe void SecondaryColor3(Int16* v)
{
Delegates.glSecondaryColor3usvEXT((UInt16*)v);
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColorPointerEXT")]
public static
void SecondaryColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer)
{
@@ -29076,6 +34116,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtSecondaryColor", Version = "1.1", EntryPoint = "glSecondaryColorPointerEXT")]
public static
void SecondaryColorPointer(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, [In, Out] object pointer)
{
@@ -29093,12 +34134,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTexturePerturbNormal", Version = "1.1", EntryPoint = "glTextureNormalEXT")]
public static
- void TextureNormal(OpenTK.Graphics.All mode)
+ void TextureNormal(OpenTK.Graphics.ExtTexturePerturbNormal mode)
{
- Delegates.glTextureNormalEXT((OpenTK.Graphics.All)mode);
+ Delegates.glTextureNormalEXT((OpenTK.Graphics.ExtTexturePerturbNormal)mode);
}
+ [AutoGenerated(Category = "ExtMultiDrawArrays", Version = "1.1", EntryPoint = "glMultiDrawArraysEXT")]
public static
void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] Int32[] first, [Out] Int32[] count, Int32 primcount)
{
@@ -29112,6 +34155,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtMultiDrawArrays", Version = "1.1", EntryPoint = "glMultiDrawArraysEXT")]
public static
void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] out Int32 first, [Out] out Int32 count, Int32 primcount)
{
@@ -29128,12 +34172,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtMultiDrawArrays", Version = "1.1", EntryPoint = "glMultiDrawArraysEXT")]
public static
unsafe void MultiDrawArrays(OpenTK.Graphics.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount)
{
Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.BeginMode)mode, (Int32*)first, (Int32*)count, (Int32)primcount);
}
+ [AutoGenerated(Category = "ExtMultiDrawArrays", Version = "1.1", EntryPoint = "glMultiDrawElementsEXT")]
public static
void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount)
{
@@ -29146,6 +34192,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtMultiDrawArrays", Version = "1.1", EntryPoint = "glMultiDrawElementsEXT")]
public static
void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount)
{
@@ -29166,6 +34213,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtMultiDrawArrays", Version = "1.1", EntryPoint = "glMultiDrawElementsEXT")]
public static
void MultiDrawElements(OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount)
{
@@ -29178,6 +34226,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtMultiDrawArrays", Version = "1.1", EntryPoint = "glMultiDrawElementsEXT")]
public static
void MultiDrawElements(OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount)
{
@@ -29199,6 +34248,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtMultiDrawArrays", Version = "1.1", EntryPoint = "glMultiDrawElementsEXT")]
public static
unsafe void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount)
{
@@ -29206,6 +34256,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtMultiDrawArrays", Version = "1.1", EntryPoint = "glMultiDrawElementsEXT")]
public static
unsafe void MultiDrawElements(OpenTK.Graphics.BeginMode mode, Int32* count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount)
{
@@ -29220,12 +34271,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoordfEXT")]
public static
void FogCoord(Single coord)
{
Delegates.glFogCoordfEXT((Single)coord);
}
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoordfvEXT")]
public static
void FogCoordv(Single[] coord)
{
@@ -29238,6 +34291,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoordfvEXT")]
public static
void FogCoordv(ref Single coord)
{
@@ -29251,18 +34305,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoordfvEXT")]
public static
unsafe void FogCoordv(Single* coord)
{
Delegates.glFogCoordfvEXT((Single*)coord);
}
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoorddEXT")]
public static
void FogCoord(Double coord)
{
Delegates.glFogCoorddEXT((Double)coord);
}
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoorddvEXT")]
public static
void FogCoordv(Double[] coord)
{
@@ -29275,6 +34332,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoorddvEXT")]
public static
void FogCoordv(ref Double coord)
{
@@ -29288,30 +34346,33 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoorddvEXT")]
public static
unsafe void FogCoordv(Double* coord)
{
Delegates.glFogCoorddvEXT((Double*)coord);
}
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoordPointerEXT")]
public static
- void FogCoordPointer(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void FogCoordPointer(OpenTK.Graphics.ExtFogCoord type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glFogCoordPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glFogCoordPointerEXT((OpenTK.Graphics.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "ExtFogCoord", Version = "1.1", EntryPoint = "glFogCoordPointerEXT")]
public static
- void FogCoordPointer(OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void FogCoordPointer(OpenTK.Graphics.ExtFogCoord type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glFogCoordPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glFogCoordPointerEXT((OpenTK.Graphics.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -29321,12 +34382,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3bEXT")]
public static
void Tangent3(SByte tx, SByte ty, SByte tz)
{
Delegates.glTangent3bEXT((SByte)tx, (SByte)ty, (SByte)tz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3bEXT")]
public static
void Tangent3(Byte tx, Byte ty, Byte tz)
{
@@ -29334,6 +34397,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3bvEXT")]
public static
void Tangent3(SByte[] v)
{
@@ -29346,6 +34410,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3bvEXT")]
public static
void Tangent3(Byte[] v)
{
@@ -29359,6 +34424,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3bvEXT")]
public static
void Tangent3(ref SByte v)
{
@@ -29371,6 +34437,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3bvEXT")]
public static
void Tangent3(ref Byte v)
{
@@ -29384,6 +34451,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3bvEXT")]
public static
unsafe void Tangent3(SByte* v)
{
@@ -29391,18 +34459,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3bvEXT")]
public static
unsafe void Tangent3(Byte* v)
{
Delegates.glTangent3bvEXT((SByte*)v);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3dEXT")]
public static
void Tangent3(Double tx, Double ty, Double tz)
{
Delegates.glTangent3dEXT((Double)tx, (Double)ty, (Double)tz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3dvEXT")]
public static
void Tangent3(Double[] v)
{
@@ -29415,6 +34486,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3dvEXT")]
public static
void Tangent3(ref Double v)
{
@@ -29428,18 +34500,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3dvEXT")]
public static
unsafe void Tangent3(Double* v)
{
Delegates.glTangent3dvEXT((Double*)v);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3fEXT")]
public static
void Tangent3(Single tx, Single ty, Single tz)
{
Delegates.glTangent3fEXT((Single)tx, (Single)ty, (Single)tz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3fvEXT")]
public static
void Tangent3(Single[] v)
{
@@ -29452,6 +34527,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3fvEXT")]
public static
void Tangent3(ref Single v)
{
@@ -29465,18 +34541,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3fvEXT")]
public static
unsafe void Tangent3(Single* v)
{
Delegates.glTangent3fvEXT((Single*)v);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3iEXT")]
public static
void Tangent3(Int32 tx, Int32 ty, Int32 tz)
{
Delegates.glTangent3iEXT((Int32)tx, (Int32)ty, (Int32)tz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3ivEXT")]
public static
void Tangent3(Int32[] v)
{
@@ -29489,6 +34568,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3ivEXT")]
public static
void Tangent3(ref Int32 v)
{
@@ -29502,18 +34582,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3ivEXT")]
public static
unsafe void Tangent3(Int32* v)
{
Delegates.glTangent3ivEXT((Int32*)v);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3sEXT")]
public static
void Tangent3(Int16 tx, Int16 ty, Int16 tz)
{
Delegates.glTangent3sEXT((Int16)tx, (Int16)ty, (Int16)tz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3svEXT")]
public static
void Tangent3(Int16[] v)
{
@@ -29526,6 +34609,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3svEXT")]
public static
void Tangent3(ref Int16 v)
{
@@ -29539,6 +34623,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangent3svEXT")]
public static
unsafe void Tangent3(Int16* v)
{
@@ -29546,12 +34631,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3bEXT")]
public static
void Binormal3(SByte bx, SByte by, SByte bz)
{
Delegates.glBinormal3bEXT((SByte)bx, (SByte)by, (SByte)bz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3bEXT")]
public static
void Binormal3(Byte bx, Byte by, Byte bz)
{
@@ -29559,6 +34646,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3bvEXT")]
public static
void Binormal3(SByte[] v)
{
@@ -29571,6 +34659,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3bvEXT")]
public static
void Binormal3(Byte[] v)
{
@@ -29584,6 +34673,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3bvEXT")]
public static
void Binormal3(ref SByte v)
{
@@ -29596,6 +34686,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3bvEXT")]
public static
void Binormal3(ref Byte v)
{
@@ -29609,6 +34700,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3bvEXT")]
public static
unsafe void Binormal3(SByte* v)
{
@@ -29616,18 +34708,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3bvEXT")]
public static
unsafe void Binormal3(Byte* v)
{
Delegates.glBinormal3bvEXT((SByte*)v);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3dEXT")]
public static
void Binormal3(Double bx, Double by, Double bz)
{
Delegates.glBinormal3dEXT((Double)bx, (Double)by, (Double)bz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3dvEXT")]
public static
void Binormal3(Double[] v)
{
@@ -29640,6 +34735,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3dvEXT")]
public static
void Binormal3(ref Double v)
{
@@ -29653,18 +34749,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3dvEXT")]
public static
unsafe void Binormal3(Double* v)
{
Delegates.glBinormal3dvEXT((Double*)v);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3fEXT")]
public static
void Binormal3(Single bx, Single by, Single bz)
{
Delegates.glBinormal3fEXT((Single)bx, (Single)by, (Single)bz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3fvEXT")]
public static
void Binormal3(Single[] v)
{
@@ -29677,6 +34776,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3fvEXT")]
public static
void Binormal3(ref Single v)
{
@@ -29690,18 +34790,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3fvEXT")]
public static
unsafe void Binormal3(Single* v)
{
Delegates.glBinormal3fvEXT((Single*)v);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3iEXT")]
public static
void Binormal3(Int32 bx, Int32 by, Int32 bz)
{
Delegates.glBinormal3iEXT((Int32)bx, (Int32)by, (Int32)bz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3ivEXT")]
public static
void Binormal3(Int32[] v)
{
@@ -29714,6 +34817,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3ivEXT")]
public static
void Binormal3(ref Int32 v)
{
@@ -29727,18 +34831,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3ivEXT")]
public static
unsafe void Binormal3(Int32* v)
{
Delegates.glBinormal3ivEXT((Int32*)v);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3sEXT")]
public static
void Binormal3(Int16 bx, Int16 by, Int16 bz)
{
Delegates.glBinormal3sEXT((Int16)bx, (Int16)by, (Int16)bz);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3svEXT")]
public static
void Binormal3(Int16[] v)
{
@@ -29751,6 +34858,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3svEXT")]
public static
void Binormal3(ref Int16 v)
{
@@ -29764,30 +34872,33 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormal3svEXT")]
public static
unsafe void Binormal3(Int16* v)
{
Delegates.glBinormal3svEXT((Int16*)v);
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangentPointerEXT")]
public static
- void TangentPointer(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void TangentPointer(OpenTK.Graphics.ExtCoordinateFrame type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glTangentPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glTangentPointerEXT((OpenTK.Graphics.ExtCoordinateFrame)type, (Int32)stride, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glTangentPointerEXT")]
public static
- void TangentPointer(OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void TangentPointer(OpenTK.Graphics.ExtCoordinateFrame type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glTangentPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glTangentPointerEXT((OpenTK.Graphics.ExtCoordinateFrame)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -29796,24 +34907,26 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormalPointerEXT")]
public static
- void BinormalPointer(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void BinormalPointer(OpenTK.Graphics.ExtCoordinateFrame type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glBinormalPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glBinormalPointerEXT((OpenTK.Graphics.ExtCoordinateFrame)type, (Int32)stride, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "ExtCoordinateFrame", Version = "1.1", EntryPoint = "glBinormalPointerEXT")]
public static
- void BinormalPointer(OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void BinormalPointer(OpenTK.Graphics.ExtCoordinateFrame type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glBinormalPointerEXT((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glBinormalPointerEXT((OpenTK.Graphics.ExtCoordinateFrame)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -29822,18 +34935,21 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtBlendFuncSeparate", Version = "1.0", EntryPoint = "glBlendFuncSeparateEXT")]
public static
- void BlendFuncSeparate(OpenTK.Graphics.All sfactorRGB, OpenTK.Graphics.All dfactorRGB, OpenTK.Graphics.All sfactorAlpha, OpenTK.Graphics.All dfactorAlpha)
+ void BlendFuncSeparate(OpenTK.Graphics.ExtBlendFuncSeparate sfactorRGB, OpenTK.Graphics.ExtBlendFuncSeparate dfactorRGB, OpenTK.Graphics.ExtBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.ExtBlendFuncSeparate dfactorAlpha)
{
- Delegates.glBlendFuncSeparateEXT((OpenTK.Graphics.All)sfactorRGB, (OpenTK.Graphics.All)dfactorRGB, (OpenTK.Graphics.All)sfactorAlpha, (OpenTK.Graphics.All)dfactorAlpha);
+ Delegates.glBlendFuncSeparateEXT((OpenTK.Graphics.ExtBlendFuncSeparate)sfactorRGB, (OpenTK.Graphics.ExtBlendFuncSeparate)dfactorRGB, (OpenTK.Graphics.ExtBlendFuncSeparate)sfactorAlpha, (OpenTK.Graphics.ExtBlendFuncSeparate)dfactorAlpha);
}
+ [AutoGenerated(Category = "ExtVertexWeighting", Version = "1.1", EntryPoint = "glVertexWeightfEXT")]
public static
void VertexWeight(Single weight)
{
Delegates.glVertexWeightfEXT((Single)weight);
}
+ [AutoGenerated(Category = "ExtVertexWeighting", Version = "1.1", EntryPoint = "glVertexWeightfvEXT")]
public static
void VertexWeightv(Single[] weight)
{
@@ -29846,6 +34962,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexWeighting", Version = "1.1", EntryPoint = "glVertexWeightfvEXT")]
public static
void VertexWeightv(ref Single weight)
{
@@ -29859,30 +34976,33 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexWeighting", Version = "1.1", EntryPoint = "glVertexWeightfvEXT")]
public static
unsafe void VertexWeightv(Single* weight)
{
Delegates.glVertexWeightfvEXT((Single*)weight);
}
+ [AutoGenerated(Category = "ExtVertexWeighting", Version = "1.1", EntryPoint = "glVertexWeightPointerEXT")]
public static
- void VertexWeightPointer(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void VertexWeightPointer(Int32 size, OpenTK.Graphics.ExtVertexWeighting type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "ExtVertexWeighting", Version = "1.1", EntryPoint = "glVertexWeightPointerEXT")]
public static
- void VertexWeightPointer(Int32 size, OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void VertexWeightPointer(Int32 size, OpenTK.Graphics.ExtVertexWeighting type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -29891,24 +35011,28 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtMultisample", Version = "1.0", EntryPoint = "glSampleMaskEXT")]
public static
void SampleMask(Single value, bool invert)
{
Delegates.glSampleMaskEXT((Single)value, (bool)invert);
}
+ [AutoGenerated(Category = "ExtMultisample", Version = "1.0", EntryPoint = "glSamplePatternEXT")]
public static
- void SamplePattern(OpenTK.Graphics.All pattern)
+ void SamplePattern(OpenTK.Graphics.ExtMultisample pattern)
{
- Delegates.glSamplePatternEXT((OpenTK.Graphics.All)pattern);
+ Delegates.glSamplePatternEXT((OpenTK.Graphics.ExtMultisample)pattern);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glBeginVertexShaderEXT")]
public static
void BeginVertexShader()
{
Delegates.glBeginVertexShaderEXT();
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glEndVertexShaderEXT")]
public static
void EndVertexShader()
{
@@ -29916,12 +35040,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glBindVertexShaderEXT")]
public static
void BindVertexShader(UInt32 id)
{
Delegates.glBindVertexShaderEXT((UInt32)id);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glBindVertexShaderEXT")]
public static
void BindVertexShader(Int32 id)
{
@@ -29929,12 +35055,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGenVertexShadersEXT")]
public static
Int32 GenVertexShaders(UInt32 range)
{
return Delegates.glGenVertexShadersEXT((UInt32)range);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGenVertexShadersEXT")]
public static
Int32 GenVertexShaders(Int32 range)
{
@@ -29942,12 +35070,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glDeleteVertexShaderEXT")]
public static
void DeleteVertexShader(UInt32 id)
{
Delegates.glDeleteVertexShaderEXT((UInt32)id);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glDeleteVertexShaderEXT")]
public static
void DeleteVertexShader(Int32 id)
{
@@ -29955,84 +35085,243 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glShaderOp1EXT")]
public static
- void ShaderOp1(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1)
+ void ShaderOp1(OpenTK.Graphics.ExtVertexShader op, UInt32 res, UInt32 arg1)
{
- Delegates.glShaderOp1EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1);
+ Delegates.glShaderOp1EXT((OpenTK.Graphics.ExtVertexShader)op, (UInt32)res, (UInt32)arg1);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glShaderOp1EXT")]
public static
- void ShaderOp1(OpenTK.Graphics.All op, Int32 res, Int32 arg1)
+ void ShaderOp1(OpenTK.Graphics.ExtVertexShader op, Int32 res, Int32 arg1)
{
- Delegates.glShaderOp1EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1);
+ Delegates.glShaderOp1EXT((OpenTK.Graphics.ExtVertexShader)op, (UInt32)res, (UInt32)arg1);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glShaderOp2EXT")]
public static
- void ShaderOp2(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1, UInt32 arg2)
+ void ShaderOp2(OpenTK.Graphics.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2)
{
- Delegates.glShaderOp2EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2);
+ Delegates.glShaderOp2EXT((OpenTK.Graphics.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glShaderOp2EXT")]
public static
- void ShaderOp2(OpenTK.Graphics.All op, Int32 res, Int32 arg1, Int32 arg2)
+ void ShaderOp2(OpenTK.Graphics.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2)
{
- Delegates.glShaderOp2EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2);
+ Delegates.glShaderOp2EXT((OpenTK.Graphics.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glShaderOp3EXT")]
public static
- void ShaderOp3(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3)
+ void ShaderOp3(OpenTK.Graphics.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3)
{
- Delegates.glShaderOp3EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3);
+ Delegates.glShaderOp3EXT((OpenTK.Graphics.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glShaderOp3EXT")]
public static
- void ShaderOp3(OpenTK.Graphics.All op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3)
+ void ShaderOp3(OpenTK.Graphics.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3)
{
- Delegates.glShaderOp3EXT((OpenTK.Graphics.All)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3);
+ Delegates.glShaderOp3EXT((OpenTK.Graphics.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSwizzleEXT")]
public static
- void Swizzle(UInt32 res, UInt32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW)
+ void Swizzle(UInt32 res, UInt32 @in, OpenTK.Graphics.ExtVertexShader outX, OpenTK.Graphics.ExtVertexShader outY, OpenTK.Graphics.ExtVertexShader outZ, OpenTK.Graphics.ExtVertexShader outW)
{
- Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.All)outX, (OpenTK.Graphics.All)outY, (OpenTK.Graphics.All)outZ, (OpenTK.Graphics.All)outW);
+ Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.ExtVertexShader)outX, (OpenTK.Graphics.ExtVertexShader)outY, (OpenTK.Graphics.ExtVertexShader)outZ, (OpenTK.Graphics.ExtVertexShader)outW);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSwizzleEXT")]
public static
- void Swizzle(Int32 res, Int32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW)
+ void Swizzle(Int32 res, Int32 @in, OpenTK.Graphics.ExtVertexShader outX, OpenTK.Graphics.ExtVertexShader outY, OpenTK.Graphics.ExtVertexShader outZ, OpenTK.Graphics.ExtVertexShader outW)
{
- Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.All)outX, (OpenTK.Graphics.All)outY, (OpenTK.Graphics.All)outZ, (OpenTK.Graphics.All)outW);
+ Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.ExtVertexShader)outX, (OpenTK.Graphics.ExtVertexShader)outY, (OpenTK.Graphics.ExtVertexShader)outZ, (OpenTK.Graphics.ExtVertexShader)outW);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glWriteMaskEXT")]
public static
- void WriteMask(UInt32 res, UInt32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW)
+ void WriteMask(UInt32 res, UInt32 @in, OpenTK.Graphics.ExtVertexShader outX, OpenTK.Graphics.ExtVertexShader outY, OpenTK.Graphics.ExtVertexShader outZ, OpenTK.Graphics.ExtVertexShader outW)
{
- Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.All)outX, (OpenTK.Graphics.All)outY, (OpenTK.Graphics.All)outZ, (OpenTK.Graphics.All)outW);
+ Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.ExtVertexShader)outX, (OpenTK.Graphics.ExtVertexShader)outY, (OpenTK.Graphics.ExtVertexShader)outZ, (OpenTK.Graphics.ExtVertexShader)outW);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glWriteMaskEXT")]
public static
- void WriteMask(Int32 res, Int32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW)
+ void WriteMask(Int32 res, Int32 @in, OpenTK.Graphics.ExtVertexShader outX, OpenTK.Graphics.ExtVertexShader outY, OpenTK.Graphics.ExtVertexShader outZ, OpenTK.Graphics.ExtVertexShader outW)
{
- Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.All)outX, (OpenTK.Graphics.All)outY, (OpenTK.Graphics.All)outZ, (OpenTK.Graphics.All)outW);
+ Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.ExtVertexShader)outX, (OpenTK.Graphics.ExtVertexShader)outY, (OpenTK.Graphics.ExtVertexShader)outZ, (OpenTK.Graphics.ExtVertexShader)outW);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glInsertComponentEXT")]
public static
- Int32 GenSymbol(OpenTK.Graphics.All datatype, OpenTK.Graphics.All storagetype, OpenTK.Graphics.All range, UInt32 components)
+ void InsertComponent(UInt32 res, UInt32 src, UInt32 num)
{
- return Delegates.glGenSymbolsEXT((OpenTK.Graphics.All)datatype, (OpenTK.Graphics.All)storagetype, (OpenTK.Graphics.All)range, (UInt32)components);
+ Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glInsertComponentEXT")]
public static
- Int32 GenSymbol(OpenTK.Graphics.All datatype, OpenTK.Graphics.All storagetype, OpenTK.Graphics.All range, Int32 components)
+ void InsertComponent(Int32 res, Int32 src, Int32 num)
{
- return Delegates.glGenSymbolsEXT((OpenTK.Graphics.All)datatype, (OpenTK.Graphics.All)storagetype, (OpenTK.Graphics.All)range, (UInt32)components);
+ Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glExtractComponentEXT")]
+ public static
+ void ExtractComponent(UInt32 res, UInt32 src, UInt32 num)
+ {
+ Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num);
+ }
+
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glExtractComponentEXT")]
+ public static
+ void ExtractComponent(Int32 res, Int32 src, Int32 num)
+ {
+ Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGenSymbolsEXT")]
+ public static
+ Int32 GenSymbol(OpenTK.Graphics.ExtVertexShader datatype, OpenTK.Graphics.ExtVertexShader storagetype, OpenTK.Graphics.ExtVertexShader range, UInt32 components)
+ {
+ return Delegates.glGenSymbolsEXT((OpenTK.Graphics.ExtVertexShader)datatype, (OpenTK.Graphics.ExtVertexShader)storagetype, (OpenTK.Graphics.ExtVertexShader)range, (UInt32)components);
+ }
+
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGenSymbolsEXT")]
+ public static
+ Int32 GenSymbol(OpenTK.Graphics.ExtVertexShader datatype, OpenTK.Graphics.ExtVertexShader storagetype, OpenTK.Graphics.ExtVertexShader range, Int32 components)
+ {
+ return Delegates.glGenSymbolsEXT((OpenTK.Graphics.ExtVertexShader)datatype, (OpenTK.Graphics.ExtVertexShader)storagetype, (OpenTK.Graphics.ExtVertexShader)range, (UInt32)components);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSetInvariantEXT")]
+ public static
+ void SetInvariant(UInt32 id, OpenTK.Graphics.ExtVertexShader type, IntPtr addr)
+ {
+ unsafe
+ {
+ Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (IntPtr)addr);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSetInvariantEXT")]
+ public static
+ void SetInvariant(Int32 id, OpenTK.Graphics.ExtVertexShader type, IntPtr addr)
+ {
+ unsafe
+ {
+ Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (IntPtr)addr);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSetInvariantEXT")]
+ public static
+ void SetInvariant(UInt32 id, OpenTK.Graphics.ExtVertexShader type, [In, Out] object addr)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ addr_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSetInvariantEXT")]
+ public static
+ void SetInvariant(Int32 id, OpenTK.Graphics.ExtVertexShader type, [In, Out] object addr)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ addr_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSetLocalConstantEXT")]
+ public static
+ void SetLocalConstant(UInt32 id, OpenTK.Graphics.ExtVertexShader type, IntPtr addr)
+ {
+ unsafe
+ {
+ Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (IntPtr)addr);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSetLocalConstantEXT")]
+ public static
+ void SetLocalConstant(Int32 id, OpenTK.Graphics.ExtVertexShader type, IntPtr addr)
+ {
+ unsafe
+ {
+ Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (IntPtr)addr);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSetLocalConstantEXT")]
+ public static
+ void SetLocalConstant(UInt32 id, OpenTK.Graphics.ExtVertexShader type, [In, Out] object addr)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ addr_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glSetLocalConstantEXT")]
+ public static
+ void SetLocalConstant(Int32 id, OpenTK.Graphics.ExtVertexShader type, [In, Out] object addr)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ addr_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantbvEXT")]
public static
void Variant(UInt32 id, SByte[] addr)
{
@@ -30046,6 +35335,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantbvEXT")]
public static
void Variant(UInt32 id, ref SByte addr)
{
@@ -30059,6 +35349,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantbvEXT")]
public static
unsafe void Variant(UInt32 id, SByte* addr)
{
@@ -30066,6 +35357,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantsvEXT")]
public static
void Variant(UInt32 id, Int16[] addr)
{
@@ -30079,6 +35371,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantsvEXT")]
public static
void Variant(UInt32 id, ref Int16 addr)
{
@@ -30092,6 +35385,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantsvEXT")]
public static
unsafe void Variant(UInt32 id, Int16* addr)
{
@@ -30099,6 +35393,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantivEXT")]
public static
void Variant(UInt32 id, Int32[] addr)
{
@@ -30112,6 +35407,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantivEXT")]
public static
void Variant(UInt32 id, ref Int32 addr)
{
@@ -30125,6 +35421,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantivEXT")]
public static
unsafe void Variant(UInt32 id, Int32* addr)
{
@@ -30132,6 +35429,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantfvEXT")]
public static
void Variant(UInt32 id, Single[] addr)
{
@@ -30144,6 +35442,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantfvEXT")]
public static
void Variant(Int32 id, Single[] addr)
{
@@ -30157,6 +35456,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantfvEXT")]
public static
void Variant(UInt32 id, ref Single addr)
{
@@ -30169,6 +35469,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantfvEXT")]
public static
void Variant(Int32 id, ref Single addr)
{
@@ -30182,6 +35483,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantfvEXT")]
public static
unsafe void Variant(UInt32 id, Single* addr)
{
@@ -30189,6 +35491,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantfvEXT")]
public static
unsafe void Variant(Int32 id, Single* addr)
{
@@ -30196,6 +35499,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantdvEXT")]
public static
void Variant(UInt32 id, Double[] addr)
{
@@ -30208,6 +35512,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantdvEXT")]
public static
void Variant(Int32 id, Double[] addr)
{
@@ -30221,6 +35526,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantdvEXT")]
public static
void Variant(UInt32 id, ref Double addr)
{
@@ -30233,6 +35539,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantdvEXT")]
public static
void Variant(Int32 id, ref Double addr)
{
@@ -30246,6 +35553,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantdvEXT")]
public static
unsafe void Variant(UInt32 id, Double* addr)
{
@@ -30253,6 +35561,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantdvEXT")]
public static
unsafe void Variant(Int32 id, Double* addr)
{
@@ -30260,6 +35569,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantubvEXT")]
public static
void Variant(UInt32 id, Byte[] addr)
{
@@ -30272,6 +35582,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantubvEXT")]
public static
void Variant(Int32 id, Byte[] addr)
{
@@ -30285,6 +35596,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantubvEXT")]
public static
void Variant(UInt32 id, ref Byte addr)
{
@@ -30297,6 +35609,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantubvEXT")]
public static
void Variant(Int32 id, ref Byte addr)
{
@@ -30310,6 +35623,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantubvEXT")]
public static
unsafe void Variant(UInt32 id, Byte* addr)
{
@@ -30317,6 +35631,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantubvEXT")]
public static
unsafe void Variant(Int32 id, Byte* addr)
{
@@ -30324,6 +35639,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantusvEXT")]
public static
void Variant(UInt32 id, UInt16[] addr)
{
@@ -30336,6 +35652,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantusvEXT")]
public static
void Variant(Int32 id, Int16[] addr)
{
@@ -30349,6 +35666,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantusvEXT")]
public static
void Variant(UInt32 id, ref UInt16 addr)
{
@@ -30361,6 +35679,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantusvEXT")]
public static
void Variant(Int32 id, ref Int16 addr)
{
@@ -30374,6 +35693,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantusvEXT")]
public static
unsafe void Variant(UInt32 id, UInt16* addr)
{
@@ -30381,6 +35701,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantusvEXT")]
public static
unsafe void Variant(Int32 id, Int16* addr)
{
@@ -30388,6 +35709,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantuivEXT")]
public static
void Variant(UInt32 id, UInt32[] addr)
{
@@ -30400,6 +35722,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantuivEXT")]
public static
void Variant(Int32 id, Int32[] addr)
{
@@ -30413,6 +35736,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantuivEXT")]
public static
void Variant(UInt32 id, ref UInt32 addr)
{
@@ -30425,6 +35749,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantuivEXT")]
public static
void Variant(Int32 id, ref Int32 addr)
{
@@ -30438,6 +35763,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantuivEXT")]
public static
unsafe void Variant(UInt32 id, UInt32* addr)
{
@@ -30445,6 +35771,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantuivEXT")]
public static
unsafe void Variant(Int32 id, Int32* addr)
{
@@ -30452,34 +35779,37 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantPointerEXT")]
public static
- void VariantPointer(UInt32 id, OpenTK.Graphics.All type, UInt32 stride, IntPtr addr)
+ void VariantPointer(UInt32 id, OpenTK.Graphics.ExtVertexShader type, UInt32 stride, IntPtr addr)
{
unsafe
{
- Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.All)type, (UInt32)stride, (IntPtr)addr);
+ Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr);
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantPointerEXT")]
public static
- void VariantPointer(Int32 id, OpenTK.Graphics.All type, Int32 stride, IntPtr addr)
+ void VariantPointer(Int32 id, OpenTK.Graphics.ExtVertexShader type, Int32 stride, IntPtr addr)
{
unsafe
{
- Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.All)type, (UInt32)stride, (IntPtr)addr);
+ Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr);
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantPointerEXT")]
public static
- void VariantPointer(UInt32 id, OpenTK.Graphics.All type, UInt32 stride, [In, Out] object addr)
+ void VariantPointer(UInt32 id, OpenTK.Graphics.ExtVertexShader type, UInt32 stride, [In, Out] object addr)
{
unsafe
{
System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.All)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject());
+ Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject());
}
finally
{
@@ -30488,15 +35818,16 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glVariantPointerEXT")]
public static
- void VariantPointer(Int32 id, OpenTK.Graphics.All type, Int32 stride, [In, Out] object addr)
+ void VariantPointer(Int32 id, OpenTK.Graphics.ExtVertexShader type, Int32 stride, [In, Out] object addr)
{
unsafe
{
System.Runtime.InteropServices.GCHandle addr_ptr = System.Runtime.InteropServices.GCHandle.Alloc(addr, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.All)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject());
+ Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject());
}
finally
{
@@ -30506,12 +35837,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glEnableVariantClientStateEXT")]
public static
void EnableVariantClientState(UInt32 id)
{
Delegates.glEnableVariantClientStateEXT((UInt32)id);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glEnableVariantClientStateEXT")]
public static
void EnableVariantClientState(Int32 id)
{
@@ -30519,288 +35852,318 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glDisableVariantClientStateEXT")]
public static
void DisableVariantClientState(UInt32 id)
{
Delegates.glDisableVariantClientStateEXT((UInt32)id);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glDisableVariantClientStateEXT")]
public static
void DisableVariantClientState(Int32 id)
{
Delegates.glDisableVariantClientStateEXT((UInt32)id);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glBindLightParameterEXT")]
public static
Int32 BindLightParameter(OpenTK.Graphics.LightName light, OpenTK.Graphics.LightParameter value)
{
return Delegates.glBindLightParameterEXT((OpenTK.Graphics.LightName)light, (OpenTK.Graphics.LightParameter)value);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glBindMaterialParameterEXT")]
public static
Int32 BindMaterialParameter(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter value)
{
return Delegates.glBindMaterialParameterEXT((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)value);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glBindTexGenParameterEXT")]
public static
Int32 BindTexGenParameter(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter value)
{
return Delegates.glBindTexGenParameterEXT((OpenTK.Graphics.TextureUnit)unit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)value);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glBindTextureUnitParameterEXT")]
public static
- Int32 BindTextureUnitParameter(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.All value)
+ Int32 BindTextureUnitParameter(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.ExtVertexShader value)
{
- return Delegates.glBindTextureUnitParameterEXT((OpenTK.Graphics.TextureUnit)unit, (OpenTK.Graphics.All)value);
+ return Delegates.glBindTextureUnitParameterEXT((OpenTK.Graphics.TextureUnit)unit, (OpenTK.Graphics.ExtVertexShader)value);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glBindParameterEXT")]
public static
- Int32 BindParameter(OpenTK.Graphics.All value)
+ Int32 BindParameter(OpenTK.Graphics.ExtVertexShader value)
{
- return Delegates.glBindParameterEXT((OpenTK.Graphics.All)value);
+ return Delegates.glBindParameterEXT((OpenTK.Graphics.ExtVertexShader)value);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glIsVariantEnabledEXT")]
public static
- bool IsVariantEnabled(UInt32 id, OpenTK.Graphics.All cap)
+ bool IsVariantEnabled(UInt32 id, OpenTK.Graphics.ExtVertexShader cap)
{
- return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.All)cap);
+ return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)cap);
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glIsVariantEnabledEXT")]
public static
- bool IsVariantEnabled(Int32 id, OpenTK.Graphics.All cap)
+ bool IsVariantEnabled(Int32 id, OpenTK.Graphics.ExtVertexShader cap)
{
- return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.All)cap);
+ return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)cap);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantBooleanvEXT")]
public static
- void GetVariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool[] data)
+ void GetVariantBoolean(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool[] data)
{
unsafe
{
fixed (bool* data_ptr = data)
{
- Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantBooleanvEXT")]
public static
- void GetVariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool[] data)
+ void GetVariantBoolean(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool[] data)
{
unsafe
{
fixed (bool* data_ptr = data)
{
- Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantBooleanvEXT")]
public static
- void GetVariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] out bool data)
+ void GetVariantBoolean(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out bool data)
{
unsafe
{
fixed (bool* data_ptr = &data)
{
- Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantBooleanvEXT")]
public static
- void GetVariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] out bool data)
+ void GetVariantBoolean(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out bool data)
{
unsafe
{
fixed (bool* data_ptr = &data)
{
- Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantBooleanvEXT")]
public static
- unsafe void GetVariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data)
+ unsafe void GetVariantBoolean(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool* data)
{
- Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data);
+ Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantBooleanvEXT")]
public static
- unsafe void GetVariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool* data)
+ unsafe void GetVariantBoolean(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool* data)
{
- Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data);
+ Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantIntegervEXT")]
public static
- void GetVariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32[] data)
+ void GetVariantInteger(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32[] data)
{
unsafe
{
fixed (Int32* data_ptr = data)
{
- Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantIntegervEXT")]
public static
- void GetVariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32[] data)
+ void GetVariantInteger(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32[] data)
{
unsafe
{
fixed (Int32* data_ptr = data)
{
- Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantIntegervEXT")]
public static
- void GetVariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] out Int32 data)
+ void GetVariantInteger(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Int32 data)
{
unsafe
{
fixed (Int32* data_ptr = &data)
{
- Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantIntegervEXT")]
public static
- void GetVariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] out Int32 data)
+ void GetVariantInteger(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Int32 data)
{
unsafe
{
fixed (Int32* data_ptr = &data)
{
- Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantIntegervEXT")]
public static
- unsafe void GetVariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data)
+ unsafe void GetVariantInteger(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32* data)
{
- Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data);
+ Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantIntegervEXT")]
public static
- unsafe void GetVariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32* data)
+ unsafe void GetVariantInteger(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32* data)
{
- Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data);
+ Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantFloatvEXT")]
public static
- void GetVariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single[] data)
+ void GetVariantFloat(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single[] data)
{
unsafe
{
fixed (Single* data_ptr = data)
{
- Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantFloatvEXT")]
public static
- void GetVariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single[] data)
+ void GetVariantFloat(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single[] data)
{
unsafe
{
fixed (Single* data_ptr = data)
{
- Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantFloatvEXT")]
public static
- void GetVariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] out Single data)
+ void GetVariantFloat(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Single data)
{
unsafe
{
fixed (Single* data_ptr = &data)
{
- Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantFloatvEXT")]
public static
- void GetVariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] out Single data)
+ void GetVariantFloat(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Single data)
{
unsafe
{
fixed (Single* data_ptr = &data)
{
- Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantFloatvEXT")]
public static
- unsafe void GetVariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data)
+ unsafe void GetVariantFloat(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single* data)
{
- Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data);
+ Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantFloatvEXT")]
public static
- unsafe void GetVariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single* data)
+ unsafe void GetVariantFloat(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single* data)
{
- Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data);
+ Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantPointervEXT")]
public static
- void GetVariantPointer(UInt32 id, OpenTK.Graphics.All value, [Out] IntPtr data)
+ void GetVariantPointer(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] IntPtr data)
{
unsafe
{
- Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.All)value, (IntPtr)data);
+ Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (IntPtr)data);
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantPointervEXT")]
public static
- void GetVariantPointer(Int32 id, OpenTK.Graphics.All value, [Out] IntPtr data)
+ void GetVariantPointer(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] IntPtr data)
{
unsafe
{
- Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.All)value, (IntPtr)data);
+ Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (IntPtr)data);
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantPointervEXT")]
public static
- void GetVariantPointer(UInt32 id, OpenTK.Graphics.All value, [In, Out] object data)
+ void GetVariantPointer(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [In, Out] object data)
{
unsafe
{
System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.All)value, (IntPtr)data_ptr.AddrOfPinnedObject());
+ Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject());
}
finally
{
@@ -30809,15 +36172,16 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetVariantPointervEXT")]
public static
- void GetVariantPointer(Int32 id, OpenTK.Graphics.All value, [In, Out] object data)
+ void GetVariantPointer(Int32 id, OpenTK.Graphics.ExtVertexShader value, [In, Out] object data)
{
unsafe
{
System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.All)value, (IntPtr)data_ptr.AddrOfPinnedObject());
+ Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject());
}
finally
{
@@ -30827,426 +36191,467 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantBooleanvEXT")]
public static
- void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool[] data)
+ void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool[] data)
{
unsafe
{
fixed (bool* data_ptr = data)
{
- Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantBooleanvEXT")]
public static
- void GetInvariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool[] data)
+ void GetInvariantBoolean(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool[] data)
{
unsafe
{
fixed (bool* data_ptr = data)
{
- Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantBooleanvEXT")]
public static
- void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] out bool data)
+ void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out bool data)
{
unsafe
{
fixed (bool* data_ptr = &data)
{
- Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantBooleanvEXT")]
public static
- void GetInvariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] out bool data)
+ void GetInvariantBoolean(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out bool data)
{
unsafe
{
fixed (bool* data_ptr = &data)
{
- Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantBooleanvEXT")]
public static
- unsafe void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data)
+ unsafe void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool* data)
{
- Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data);
+ Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantBooleanvEXT")]
public static
- unsafe void GetInvariantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool* data)
+ unsafe void GetInvariantBoolean(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool* data)
{
- Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data);
+ Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantIntegervEXT")]
public static
- void GetInvariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32[] data)
+ void GetInvariantInteger(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32[] data)
{
unsafe
{
fixed (Int32* data_ptr = data)
{
- Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantIntegervEXT")]
public static
- void GetInvariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32[] data)
+ void GetInvariantInteger(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32[] data)
{
unsafe
{
fixed (Int32* data_ptr = data)
{
- Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantIntegervEXT")]
public static
- void GetInvariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] out Int32 data)
+ void GetInvariantInteger(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Int32 data)
{
unsafe
{
fixed (Int32* data_ptr = &data)
{
- Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantIntegervEXT")]
public static
- void GetInvariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] out Int32 data)
+ void GetInvariantInteger(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Int32 data)
{
unsafe
{
fixed (Int32* data_ptr = &data)
{
- Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantIntegervEXT")]
public static
- unsafe void GetInvariantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data)
+ unsafe void GetInvariantInteger(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32* data)
{
- Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data);
+ Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantIntegervEXT")]
public static
- unsafe void GetInvariantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32* data)
+ unsafe void GetInvariantInteger(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32* data)
{
- Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data);
+ Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantFloatvEXT")]
public static
- void GetInvariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single[] data)
+ void GetInvariantFloat(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single[] data)
{
unsafe
{
fixed (Single* data_ptr = data)
{
- Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantFloatvEXT")]
public static
- void GetInvariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single[] data)
+ void GetInvariantFloat(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single[] data)
{
unsafe
{
fixed (Single* data_ptr = data)
{
- Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantFloatvEXT")]
public static
- void GetInvariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] out Single data)
+ void GetInvariantFloat(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Single data)
{
unsafe
{
fixed (Single* data_ptr = &data)
{
- Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantFloatvEXT")]
public static
- void GetInvariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] out Single data)
+ void GetInvariantFloat(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Single data)
{
unsafe
{
fixed (Single* data_ptr = &data)
{
- Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantFloatvEXT")]
public static
- unsafe void GetInvariantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data)
+ unsafe void GetInvariantFloat(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single* data)
{
- Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data);
+ Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetInvariantFloatvEXT")]
public static
- unsafe void GetInvariantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single* data)
+ unsafe void GetInvariantFloat(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single* data)
{
- Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data);
+ Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantBooleanvEXT")]
public static
- void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool[] data)
+ void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool[] data)
{
unsafe
{
fixed (bool* data_ptr = data)
{
- Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantBooleanvEXT")]
public static
- void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool[] data)
+ void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool[] data)
{
unsafe
{
fixed (bool* data_ptr = data)
{
- Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantBooleanvEXT")]
public static
- void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] out bool data)
+ void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out bool data)
{
unsafe
{
fixed (bool* data_ptr = &data)
{
- Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantBooleanvEXT")]
public static
- void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] out bool data)
+ void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out bool data)
{
unsafe
{
fixed (bool* data_ptr = &data)
{
- Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data_ptr);
+ Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantBooleanvEXT")]
public static
- unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data)
+ unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool* data)
{
- Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data);
+ Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantBooleanvEXT")]
public static
- unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.All value, [Out] bool* data)
+ unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool* data)
{
- Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.All)value, (bool*)data);
+ Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantIntegervEXT")]
public static
- void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32[] data)
+ void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32[] data)
{
unsafe
{
fixed (Int32* data_ptr = data)
{
- Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantIntegervEXT")]
public static
- void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32[] data)
+ void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32[] data)
{
unsafe
{
fixed (Int32* data_ptr = data)
{
- Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantIntegervEXT")]
public static
- void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] out Int32 data)
+ void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Int32 data)
{
unsafe
{
fixed (Int32* data_ptr = &data)
{
- Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantIntegervEXT")]
public static
- void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.All value, [Out] out Int32 data)
+ void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Int32 data)
{
unsafe
{
fixed (Int32* data_ptr = &data)
{
- Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data_ptr);
+ Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantIntegervEXT")]
public static
- unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data)
+ unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32* data)
{
- Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data);
+ Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantIntegervEXT")]
public static
- unsafe void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.All value, [Out] Int32* data)
+ unsafe void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32* data)
{
- Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.All)value, (Int32*)data);
+ Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Int32*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantFloatvEXT")]
public static
- void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single[] data)
+ void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single[] data)
{
unsafe
{
fixed (Single* data_ptr = data)
{
- Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantFloatvEXT")]
public static
- void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single[] data)
+ void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single[] data)
{
unsafe
{
fixed (Single* data_ptr = data)
{
- Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantFloatvEXT")]
public static
- void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] out Single data)
+ void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Single data)
{
unsafe
{
fixed (Single* data_ptr = &data)
{
- Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantFloatvEXT")]
public static
- void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.All value, [Out] out Single data)
+ void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] out Single data)
{
unsafe
{
fixed (Single* data_ptr = &data)
{
- Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data_ptr);
+ Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantFloatvEXT")]
public static
- unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data)
+ unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single* data)
{
- Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data);
+ Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtVertexShader", Version = "1.2", EntryPoint = "glGetLocalConstantFloatvEXT")]
public static
- unsafe void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.All value, [Out] Single* data)
+ unsafe void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single* data)
{
- Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.All)value, (Single*)data);
+ Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.ExtVertexShader)value, (Single*)data);
}
+ [AutoGenerated(Category = "ExtStencilTwoSide", Version = "1.3", EntryPoint = "glActiveStencilFaceEXT")]
public static
- void ActiveStencilFace(OpenTK.Graphics.All face)
+ void ActiveStencilFace(OpenTK.Graphics.ExtStencilTwoSide face)
{
- Delegates.glActiveStencilFaceEXT((OpenTK.Graphics.All)face);
+ Delegates.glActiveStencilFaceEXT((OpenTK.Graphics.ExtStencilTwoSide)face);
}
+ [AutoGenerated(Category = "ExtDepthBoundsTest", Version = "1.2", EntryPoint = "glDepthBoundsEXT")]
public static
void DepthBounds(Double zmin, Double zmax)
{
Delegates.glDepthBoundsEXT((Double)zmin, (Double)zmax);
}
+ [AutoGenerated(Category = "ExtBlendEquationSeparate", Version = "1.2", EntryPoint = "glBlendEquationSeparateEXT")]
public static
- void BlendEquationSeparate(OpenTK.Graphics.All modeRGB, OpenTK.Graphics.All modeAlpha)
+ void BlendEquationSeparate(OpenTK.Graphics.ExtBlendEquationSeparate modeRGB, OpenTK.Graphics.ExtBlendEquationSeparate modeAlpha)
{
- Delegates.glBlendEquationSeparateEXT((OpenTK.Graphics.All)modeRGB, (OpenTK.Graphics.All)modeAlpha);
+ Delegates.glBlendEquationSeparateEXT((OpenTK.Graphics.ExtBlendEquationSeparate)modeRGB, (OpenTK.Graphics.ExtBlendEquationSeparate)modeAlpha);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glIsRenderbufferEXT")]
public static
bool IsRenderbuffer(UInt32 renderbuffer)
{
return Delegates.glIsRenderbufferEXT((UInt32)renderbuffer);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glIsRenderbufferEXT")]
public static
bool IsRenderbuffer(Int32 renderbuffer)
{
@@ -31254,12 +36659,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glBindRenderbufferEXT")]
public static
void BindRenderbuffer(OpenTK.Graphics.RenderbufferTarget target, UInt32 renderbuffer)
{
Delegates.glBindRenderbufferEXT((OpenTK.Graphics.RenderbufferTarget)target, (UInt32)renderbuffer);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glBindRenderbufferEXT")]
public static
void BindRenderbuffer(OpenTK.Graphics.RenderbufferTarget target, Int32 renderbuffer)
{
@@ -31267,6 +36674,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteRenderbuffersEXT")]
public static
void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers)
{
@@ -31279,6 +36687,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteRenderbuffersEXT")]
public static
void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers)
{
@@ -31292,6 +36701,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteRenderbuffersEXT")]
public static
void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers)
{
@@ -31304,6 +36714,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteRenderbuffersEXT")]
public static
void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers)
{
@@ -31317,6 +36728,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteRenderbuffersEXT")]
public static
unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers)
{
@@ -31324,6 +36736,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteRenderbuffersEXT")]
public static
unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers)
{
@@ -31331,6 +36744,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenRenderbuffersEXT")]
public static
void GenRenderbuffers(Int32 n, [Out] UInt32[] renderbuffers)
{
@@ -31343,6 +36757,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenRenderbuffersEXT")]
public static
void GenRenderbuffers(Int32 n, [Out] Int32[] renderbuffers)
{
@@ -31356,6 +36771,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenRenderbuffersEXT")]
public static
void GenRenderbuffers(Int32 n, [Out] out UInt32 renderbuffers)
{
@@ -31369,6 +36785,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenRenderbuffersEXT")]
public static
void GenRenderbuffers(Int32 n, [Out] out Int32 renderbuffers)
{
@@ -31383,6 +36800,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenRenderbuffersEXT")]
public static
unsafe void GenRenderbuffers(Int32 n, [Out] UInt32* renderbuffers)
{
@@ -31390,18 +36808,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenRenderbuffersEXT")]
public static
unsafe void GenRenderbuffers(Int32 n, [Out] Int32* renderbuffers)
{
Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glRenderbufferStorageEXT")]
public static
void RenderbufferStorage(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferStorage internalformat, Int32 width, Int32 height)
{
Delegates.glRenderbufferStorageEXT((OpenTK.Graphics.RenderbufferTarget)target, (OpenTK.Graphics.RenderbufferStorage)internalformat, (Int32)width, (Int32)height);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGetRenderbufferParameterivEXT")]
public static
void GetRenderbufferParameter(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32[] @params)
{
@@ -31414,6 +36835,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGetRenderbufferParameterivEXT")]
public static
void GetRenderbufferParameter(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] out Int32 @params)
{
@@ -31428,6 +36850,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGetRenderbufferParameterivEXT")]
public static
unsafe void GetRenderbufferParameter(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32* @params)
{
@@ -31435,12 +36858,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glIsFramebufferEXT")]
public static
bool IsFramebuffer(UInt32 framebuffer)
{
return Delegates.glIsFramebufferEXT((UInt32)framebuffer);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glIsFramebufferEXT")]
public static
bool IsFramebuffer(Int32 framebuffer)
{
@@ -31448,12 +36873,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glBindFramebufferEXT")]
public static
void BindFramebuffer(OpenTK.Graphics.FramebufferTarget target, UInt32 framebuffer)
{
Delegates.glBindFramebufferEXT((OpenTK.Graphics.FramebufferTarget)target, (UInt32)framebuffer);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glBindFramebufferEXT")]
public static
void BindFramebuffer(OpenTK.Graphics.FramebufferTarget target, Int32 framebuffer)
{
@@ -31461,6 +36888,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteFramebuffersEXT")]
public static
void DeleteFramebuffers(Int32 n, UInt32[] framebuffers)
{
@@ -31473,6 +36901,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteFramebuffersEXT")]
public static
void DeleteFramebuffers(Int32 n, Int32[] framebuffers)
{
@@ -31486,6 +36915,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteFramebuffersEXT")]
public static
void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers)
{
@@ -31498,6 +36928,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteFramebuffersEXT")]
public static
void DeleteFramebuffers(Int32 n, ref Int32 framebuffers)
{
@@ -31511,6 +36942,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteFramebuffersEXT")]
public static
unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers)
{
@@ -31518,6 +36950,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glDeleteFramebuffersEXT")]
public static
unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers)
{
@@ -31525,6 +36958,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenFramebuffersEXT")]
public static
void GenFramebuffers(Int32 n, [Out] UInt32[] framebuffers)
{
@@ -31537,6 +36971,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenFramebuffersEXT")]
public static
void GenFramebuffers(Int32 n, [Out] Int32[] framebuffers)
{
@@ -31550,6 +36985,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenFramebuffersEXT")]
public static
void GenFramebuffers(Int32 n, [Out] out UInt32 framebuffers)
{
@@ -31563,6 +36999,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenFramebuffersEXT")]
public static
void GenFramebuffers(Int32 n, [Out] out Int32 framebuffers)
{
@@ -31577,6 +37014,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenFramebuffersEXT")]
public static
unsafe void GenFramebuffers(Int32 n, [Out] UInt32* framebuffers)
{
@@ -31584,12 +37022,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenFramebuffersEXT")]
public static
unsafe void GenFramebuffers(Int32 n, [Out] Int32* framebuffers)
{
Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glCheckFramebufferStatusEXT")]
public static
OpenTK.Graphics.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.FramebufferTarget target)
{
@@ -31597,12 +37037,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glFramebufferTexture1DEXT")]
public static
void FramebufferTexture1D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level)
{
Delegates.glFramebufferTexture1DEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glFramebufferTexture1DEXT")]
public static
void FramebufferTexture1D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level)
{
@@ -31610,12 +37052,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glFramebufferTexture2DEXT")]
public static
void FramebufferTexture2D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level)
{
Delegates.glFramebufferTexture2DEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glFramebufferTexture2DEXT")]
public static
void FramebufferTexture2D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level)
{
@@ -31623,12 +37067,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glFramebufferTexture3DEXT")]
public static
void FramebufferTexture3D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset)
{
Delegates.glFramebufferTexture3DEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glFramebufferTexture3DEXT")]
public static
void FramebufferTexture3D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset)
{
@@ -31636,18 +37082,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glFramebufferRenderbufferEXT")]
public static
void FramebufferRenderbuffer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer)
{
Delegates.glFramebufferRenderbufferEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glFramebufferRenderbufferEXT")]
public static
void FramebufferRenderbuffer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, Int32 renderbuffer)
{
Delegates.glFramebufferRenderbufferEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGetFramebufferAttachmentParameterivEXT")]
public static
void GetFramebufferAttachmentParameter(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] Int32[] @params)
{
@@ -31660,6 +37109,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGetFramebufferAttachmentParameterivEXT")]
public static
void GetFramebufferAttachmentParameter(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] out Int32 @params)
{
@@ -31674,12 +37124,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGetFramebufferAttachmentParameterivEXT")]
public static
unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] Int32* @params)
{
Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.FramebufferParameterName)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "ExtFramebufferObject", Version = "1.2", EntryPoint = "glGenerateMipmapEXT")]
public static
void GenerateMipmap(OpenTK.Graphics.GenerateMipmapTarget target)
{
@@ -31687,297 +37139,327 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtStencilClearTag", Version = "1.5", EntryPoint = "glStencilClearTagEXT")]
public static
void StencilClearTag(Int32 stencilTagBits, UInt32 stencilClearTag)
{
Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag);
}
+ [AutoGenerated(Category = "ExtStencilClearTag", Version = "1.5", EntryPoint = "glStencilClearTagEXT")]
public static
void StencilClearTag(Int32 stencilTagBits, Int32 stencilClearTag)
{
Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag);
}
+ [AutoGenerated(Category = "ExtFramebufferBlit", Version = "1.5", EntryPoint = "glBlitFramebufferEXT")]
public static
- void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ClearBufferMask mask, OpenTK.Graphics.All filter)
+ void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ClearBufferMask mask, OpenTK.Graphics.ExtFramebufferBlit filter)
{
- Delegates.glBlitFramebufferEXT((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ClearBufferMask)mask, (OpenTK.Graphics.All)filter);
+ Delegates.glBlitFramebufferEXT((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ClearBufferMask)mask, (OpenTK.Graphics.ExtFramebufferBlit)filter);
}
+ [AutoGenerated(Category = "ExtFramebufferMultisample", Version = "1.5", EntryPoint = "glRenderbufferStorageMultisampleEXT")]
public static
- void RenderbufferStorageMultisample(OpenTK.Graphics.All target, Int32 samples, OpenTK.Graphics.All internalformat, Int32 width, Int32 height)
+ void RenderbufferStorageMultisample(OpenTK.Graphics.ExtFramebufferMultisample target, Int32 samples, OpenTK.Graphics.ExtFramebufferMultisample internalformat, Int32 width, Int32 height)
{
- Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.All)target, (Int32)samples, (OpenTK.Graphics.All)internalformat, (Int32)width, (Int32)height);
+ Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.ExtFramebufferMultisample)target, (Int32)samples, (OpenTK.Graphics.ExtFramebufferMultisample)internalformat, (Int32)width, (Int32)height);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")]
public static
- void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.All pname, [Out] Int64[] @params)
+ void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] Int64[] @params)
{
unsafe
{
fixed (Int64* @params_ptr = @params)
{
- Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params_ptr);
+ Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (Int64*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")]
public static
- void GetQueryObjecti64(Int32 id, OpenTK.Graphics.All pname, [Out] Int64[] @params)
+ void GetQueryObjecti64(Int32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] Int64[] @params)
{
unsafe
{
fixed (Int64* @params_ptr = @params)
{
- Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params_ptr);
+ Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (Int64*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")]
public static
- void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int64 @params)
+ void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] out Int64 @params)
{
unsafe
{
fixed (Int64* @params_ptr = &@params)
{
- Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params_ptr);
+ Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (Int64*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")]
public static
- void GetQueryObjecti64(Int32 id, OpenTK.Graphics.All pname, [Out] out Int64 @params)
+ void GetQueryObjecti64(Int32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] out Int64 @params)
{
unsafe
{
fixed (Int64* @params_ptr = &@params)
{
- Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params_ptr);
+ Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (Int64*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")]
public static
- unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.All pname, [Out] Int64* @params)
+ unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] Int64* @params)
{
- Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params);
+ Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (Int64*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")]
public static
- unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.All pname, [Out] Int64* @params)
+ unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] Int64* @params)
{
- Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (Int64*)@params);
+ Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (Int64*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")]
public static
- void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt64[] @params)
+ void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] UInt64[] @params)
{
unsafe
{
fixed (UInt64* @params_ptr = @params)
{
- Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params_ptr);
+ Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (UInt64*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")]
public static
- void GetQueryObjectui64(Int32 id, OpenTK.Graphics.All pname, [Out] Int64[] @params)
+ void GetQueryObjectui64(Int32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] Int64[] @params)
{
unsafe
{
fixed (Int64* @params_ptr = @params)
{
- Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params_ptr);
+ Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (UInt64*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")]
public static
- void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.All pname, [Out] out UInt64 @params)
+ void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] out UInt64 @params)
{
unsafe
{
fixed (UInt64* @params_ptr = &@params)
{
- Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params_ptr);
+ Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (UInt64*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")]
public static
- void GetQueryObjectui64(Int32 id, OpenTK.Graphics.All pname, [Out] out Int64 @params)
+ void GetQueryObjectui64(Int32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] out Int64 @params)
{
unsafe
{
fixed (Int64* @params_ptr = &@params)
{
- Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params_ptr);
+ Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (UInt64*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")]
public static
- unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt64* @params)
+ unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] UInt64* @params)
{
- Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params);
+ Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (UInt64*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")]
public static
- unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.All pname, [Out] Int64* @params)
+ unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] Int64* @params)
{
- Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.All)pname, (UInt64*)@params);
+ Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ExtTimerQuery)pname, (UInt64*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramEnvParameters4fvEXT")]
public static
- void ProgramEnvParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single[] @params)
+ void ProgramEnvParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramEnvParameters4fvEXT")]
public static
- void ProgramEnvParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single[] @params)
+ void ProgramEnvParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, Int32 index, Int32 count, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramEnvParameters4fvEXT")]
public static
- void ProgramEnvParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref Single @params)
+ void ProgramEnvParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, UInt32 index, Int32 count, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramEnvParameters4fvEXT")]
public static
- void ProgramEnvParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Single @params)
+ void ProgramEnvParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, Int32 index, Int32 count, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramEnvParameters4fvEXT")]
public static
- unsafe void ProgramEnvParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single* @params)
+ unsafe void ProgramEnvParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params)
{
- Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params);
+ Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramEnvParameters4fvEXT")]
public static
- unsafe void ProgramEnvParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single* @params)
+ unsafe void ProgramEnvParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, Int32 index, Int32 count, Single* @params)
{
- Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params);
+ Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramLocalParameters4fvEXT")]
public static
- void ProgramLocalParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single[] @params)
+ void ProgramLocalParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramLocalParameters4fvEXT")]
public static
- void ProgramLocalParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single[] @params)
+ void ProgramLocalParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, Int32 index, Int32 count, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramLocalParameters4fvEXT")]
public static
- void ProgramLocalParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, ref Single @params)
+ void ProgramLocalParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, UInt32 index, Int32 count, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramLocalParameters4fvEXT")]
public static
- void ProgramLocalParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, ref Single @params)
+ void ProgramLocalParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, Int32 index, Int32 count, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramLocalParameters4fvEXT")]
public static
- unsafe void ProgramLocalParameters4(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single* @params)
+ unsafe void ProgramLocalParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params)
{
- Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params);
+ Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuProgramParameters", Version = "1.2", EntryPoint = "glProgramLocalParameters4fvEXT")]
public static
- unsafe void ProgramLocalParameters4(OpenTK.Graphics.All target, Int32 index, Int32 count, Single* @params)
+ unsafe void ProgramLocalParameters4(OpenTK.Graphics.ExtGpuProgramParameters target, Int32 index, Int32 count, Single* @params)
{
- Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32)count, (Single*)@params);
+ Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGeometryProgram4", Version = "2.0", EntryPoint = "glFramebufferTextureEXT")]
public static
void FramebufferTexture(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level)
{
Delegates.glFramebufferTextureEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level);
}
+ [AutoGenerated(Category = "NvGeometryProgram4", Version = "2.0", EntryPoint = "glFramebufferTextureEXT")]
public static
void FramebufferTexture(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level)
{
@@ -31985,12 +37467,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGeometryProgram4", Version = "2.0", EntryPoint = "glFramebufferTextureLayerEXT")]
public static
void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer)
{
Delegates.glFramebufferTextureLayerEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer);
}
+ [AutoGenerated(Category = "NvGeometryProgram4", Version = "2.0", EntryPoint = "glFramebufferTextureLayerEXT")]
public static
void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer)
{
@@ -31998,12 +37482,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvGeometryProgram4", Version = "2.0", EntryPoint = "glFramebufferTextureFaceEXT")]
public static
void FramebufferTextureFace(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.TextureTarget face)
{
Delegates.glFramebufferTextureFaceEXT((OpenTK.Graphics.FramebufferTarget)target, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.TextureTarget)face);
}
+ [AutoGenerated(Category = "NvGeometryProgram4", Version = "2.0", EntryPoint = "glFramebufferTextureFaceEXT")]
public static
void FramebufferTextureFace(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.TextureTarget face)
{
@@ -32011,19 +37497,22 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGeometryShader4", Version = "2.0", EntryPoint = "glProgramParameteriEXT")]
public static
- void ProgramParameter(UInt32 program, OpenTK.Graphics.All pname, Int32 value)
+ void ProgramParameter(UInt32 program, OpenTK.Graphics.ExtGeometryShader4 pname, Int32 value)
{
- Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.All)pname, (Int32)value);
+ Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ExtGeometryShader4)pname, (Int32)value);
}
+ [AutoGenerated(Category = "ExtGeometryShader4", Version = "2.0", EntryPoint = "glProgramParameteriEXT")]
public static
- void ProgramParameter(Int32 program, OpenTK.Graphics.All pname, Int32 value)
+ void ProgramParameter(Int32 program, OpenTK.Graphics.ExtGeometryShader4 pname, Int32 value)
{
- Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.All)pname, (Int32)value);
+ Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ExtGeometryShader4)pname, (Int32)value);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1iEXT")]
public static
void VertexAttribI1(UInt32 index, Int32 x)
{
@@ -32031,6 +37520,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2iEXT")]
public static
void VertexAttribI2(UInt32 index, Int32 x, Int32 y)
{
@@ -32038,6 +37528,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3iEXT")]
public static
void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z)
{
@@ -32045,6 +37536,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4iEXT")]
public static
void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w)
{
@@ -32052,12 +37544,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1uiEXT")]
public static
void VertexAttribI1(UInt32 index, UInt32 x)
{
Delegates.glVertexAttribI1uiEXT((UInt32)index, (UInt32)x);
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1uiEXT")]
public static
void VertexAttribI1(Int32 index, Int32 x)
{
@@ -32065,12 +37559,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2uiEXT")]
public static
void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y)
{
Delegates.glVertexAttribI2uiEXT((UInt32)index, (UInt32)x, (UInt32)y);
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2uiEXT")]
public static
void VertexAttribI2(Int32 index, Int32 x, Int32 y)
{
@@ -32078,12 +37574,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3uiEXT")]
public static
void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z)
{
Delegates.glVertexAttribI3uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z);
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3uiEXT")]
public static
void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z)
{
@@ -32091,12 +37589,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4uiEXT")]
public static
void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w)
{
Delegates.glVertexAttribI4uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4uiEXT")]
public static
void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w)
{
@@ -32104,6 +37604,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1ivEXT")]
public static
void VertexAttribI1v(UInt32 index, Int32[] v)
{
@@ -32117,6 +37618,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1ivEXT")]
public static
void VertexAttribI1v(UInt32 index, ref Int32 v)
{
@@ -32130,6 +37632,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1ivEXT")]
public static
unsafe void VertexAttribI1v(UInt32 index, Int32* v)
{
@@ -32137,6 +37640,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")]
public static
void VertexAttribI2(UInt32 index, Int32[] v)
{
@@ -32150,6 +37654,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")]
public static
void VertexAttribI2(UInt32 index, ref Int32 v)
{
@@ -32163,6 +37668,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")]
public static
unsafe void VertexAttribI2(UInt32 index, Int32* v)
{
@@ -32170,6 +37676,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")]
public static
void VertexAttribI3(UInt32 index, Int32[] v)
{
@@ -32183,6 +37690,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")]
public static
void VertexAttribI3(UInt32 index, ref Int32 v)
{
@@ -32196,6 +37704,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")]
public static
unsafe void VertexAttribI3(UInt32 index, Int32* v)
{
@@ -32203,6 +37712,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")]
public static
void VertexAttribI4(UInt32 index, Int32[] v)
{
@@ -32216,6 +37726,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")]
public static
void VertexAttribI4(UInt32 index, ref Int32 v)
{
@@ -32229,6 +37740,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")]
public static
unsafe void VertexAttribI4(UInt32 index, Int32* v)
{
@@ -32236,6 +37748,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1uivEXT")]
public static
void VertexAttribI1v(UInt32 index, UInt32[] v)
{
@@ -32248,6 +37761,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1uivEXT")]
public static
void VertexAttribI1v(Int32 index, Int32[] v)
{
@@ -32261,6 +37775,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1uivEXT")]
public static
void VertexAttribI1v(UInt32 index, ref UInt32 v)
{
@@ -32273,6 +37788,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1uivEXT")]
public static
void VertexAttribI1v(Int32 index, ref Int32 v)
{
@@ -32286,6 +37802,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1uivEXT")]
public static
unsafe void VertexAttribI1v(UInt32 index, UInt32* v)
{
@@ -32293,6 +37810,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI1uivEXT")]
public static
unsafe void VertexAttribI1v(Int32 index, Int32* v)
{
@@ -32300,6 +37818,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")]
public static
void VertexAttribI2(UInt32 index, UInt32[] v)
{
@@ -32312,6 +37831,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")]
public static
void VertexAttribI2(Int32 index, Int32[] v)
{
@@ -32325,6 +37845,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")]
public static
void VertexAttribI2(UInt32 index, ref UInt32 v)
{
@@ -32337,6 +37858,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")]
public static
void VertexAttribI2(Int32 index, ref Int32 v)
{
@@ -32350,6 +37872,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")]
public static
unsafe void VertexAttribI2(UInt32 index, UInt32* v)
{
@@ -32357,6 +37880,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")]
public static
unsafe void VertexAttribI2(Int32 index, Int32* v)
{
@@ -32364,6 +37888,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")]
public static
void VertexAttribI3(UInt32 index, UInt32[] v)
{
@@ -32376,6 +37901,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")]
public static
void VertexAttribI3(Int32 index, Int32[] v)
{
@@ -32389,6 +37915,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")]
public static
void VertexAttribI3(UInt32 index, ref UInt32 v)
{
@@ -32401,6 +37928,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")]
public static
void VertexAttribI3(Int32 index, ref Int32 v)
{
@@ -32414,6 +37942,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")]
public static
unsafe void VertexAttribI3(UInt32 index, UInt32* v)
{
@@ -32421,6 +37950,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")]
public static
unsafe void VertexAttribI3(Int32 index, Int32* v)
{
@@ -32428,6 +37958,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")]
public static
void VertexAttribI4(UInt32 index, UInt32[] v)
{
@@ -32440,6 +37971,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")]
public static
void VertexAttribI4(Int32 index, Int32[] v)
{
@@ -32453,6 +37985,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")]
public static
void VertexAttribI4(UInt32 index, ref UInt32 v)
{
@@ -32465,6 +37998,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")]
public static
void VertexAttribI4(Int32 index, ref Int32 v)
{
@@ -32478,6 +38012,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")]
public static
unsafe void VertexAttribI4(UInt32 index, UInt32* v)
{
@@ -32485,6 +38020,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")]
public static
unsafe void VertexAttribI4(Int32 index, Int32* v)
{
@@ -32492,6 +38028,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")]
public static
void VertexAttribI4(UInt32 index, SByte[] v)
{
@@ -32505,6 +38042,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")]
public static
void VertexAttribI4(UInt32 index, ref SByte v)
{
@@ -32518,6 +38056,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")]
public static
unsafe void VertexAttribI4(UInt32 index, SByte* v)
{
@@ -32525,6 +38064,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4svEXT")]
public static
void VertexAttribI4(UInt32 index, Int16[] v)
{
@@ -32538,6 +38078,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4svEXT")]
public static
void VertexAttribI4(UInt32 index, ref Int16 v)
{
@@ -32551,6 +38092,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4svEXT")]
public static
unsafe void VertexAttribI4(UInt32 index, Int16* v)
{
@@ -32558,6 +38100,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")]
public static
void VertexAttribI4(UInt32 index, Byte[] v)
{
@@ -32570,6 +38113,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")]
public static
void VertexAttribI4(Int32 index, Byte[] v)
{
@@ -32583,6 +38127,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")]
public static
void VertexAttribI4(UInt32 index, ref Byte v)
{
@@ -32595,6 +38140,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")]
public static
void VertexAttribI4(Int32 index, ref Byte v)
{
@@ -32608,6 +38154,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")]
public static
unsafe void VertexAttribI4(UInt32 index, Byte* v)
{
@@ -32615,6 +38162,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")]
public static
unsafe void VertexAttribI4(Int32 index, Byte* v)
{
@@ -32622,6 +38170,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")]
public static
void VertexAttribI4(UInt32 index, UInt16[] v)
{
@@ -32634,6 +38183,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")]
public static
void VertexAttribI4(Int32 index, Int16[] v)
{
@@ -32647,6 +38197,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")]
public static
void VertexAttribI4(UInt32 index, ref UInt16 v)
{
@@ -32659,6 +38210,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")]
public static
void VertexAttribI4(Int32 index, ref Int16 v)
{
@@ -32672,6 +38224,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")]
public static
unsafe void VertexAttribI4(UInt32 index, UInt16* v)
{
@@ -32679,6 +38232,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")]
public static
unsafe void VertexAttribI4(Int32 index, Int16* v)
{
@@ -32686,34 +38240,37 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")]
public static
- void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.NvVertexProgram4 type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")]
public static
- void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.NvVertexProgram4 type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer);
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")]
public static
- void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.NvVertexProgram4 type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -32722,15 +38279,16 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glVertexAttribIPointerEXT")]
public static
- void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.NvVertexProgram4 type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -32740,106 +38298,116 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")]
public static
- void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetVertexAttribI(UInt32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.NvVertexProgram4)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")]
public static
- void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetVertexAttribI(UInt32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.NvVertexProgram4)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")]
public static
- unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] Int32* @params)
{
- Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.NvVertexProgram4)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")]
public static
- void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] UInt32[] @params)
+ void GetVertexAttribI(UInt32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] UInt32[] @params)
{
unsafe
{
fixed (UInt32* @params_ptr = @params)
{
- Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.NvVertexProgram4)pname, (UInt32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")]
public static
- void GetVertexAttribI(Int32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetVertexAttribI(Int32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.NvVertexProgram4)pname, (UInt32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")]
public static
- void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] out UInt32 @params)
+ void GetVertexAttribI(UInt32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] out UInt32 @params)
{
unsafe
{
fixed (UInt32* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.NvVertexProgram4)pname, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")]
public static
- void GetVertexAttribI(Int32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetVertexAttribI(Int32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params_ptr);
+ Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.NvVertexProgram4)pname, (UInt32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")]
public static
- unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.All pname, [Out] UInt32* @params)
+ unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] UInt32* @params)
{
- Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params);
+ Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.NvVertexProgram4)pname, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "NvVertexProgram4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")]
public static
- unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] Int32* @params)
{
- Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.All)pname, (UInt32*)@params);
+ Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.NvVertexProgram4)pname, (UInt32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glGetUniformuivEXT")]
public static
void GetUniform(UInt32 program, Int32 location, [Out] UInt32[] @params)
{
@@ -32852,6 +38420,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glGetUniformuivEXT")]
public static
void GetUniform(Int32 program, Int32 location, [Out] Int32[] @params)
{
@@ -32865,6 +38434,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glGetUniformuivEXT")]
public static
void GetUniform(UInt32 program, Int32 location, [Out] out UInt32 @params)
{
@@ -32878,6 +38448,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glGetUniformuivEXT")]
public static
void GetUniform(Int32 program, Int32 location, [Out] out Int32 @params)
{
@@ -32892,6 +38463,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glGetUniformuivEXT")]
public static
unsafe void GetUniform(UInt32 program, Int32 location, [Out] UInt32* @params)
{
@@ -32899,6 +38471,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glGetUniformuivEXT")]
public static
unsafe void GetUniform(Int32 program, Int32 location, [Out] Int32* @params)
{
@@ -32906,12 +38479,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glBindFragDataLocationEXT")]
public static
void BindFragDataLocation(UInt32 program, UInt32 color, System.String name)
{
Delegates.glBindFragDataLocationEXT((UInt32)program, (UInt32)color, (System.String)name);
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glBindFragDataLocationEXT")]
public static
void BindFragDataLocation(Int32 program, Int32 color, System.String name)
{
@@ -32919,12 +38494,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glGetFragDataLocationEXT")]
public static
Int32 GetFragDataLocation(UInt32 program, System.String name)
{
return Delegates.glGetFragDataLocationEXT((UInt32)program, (System.String)name);
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glGetFragDataLocationEXT")]
public static
Int32 GetFragDataLocation(Int32 program, System.String name)
{
@@ -32932,12 +38509,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform1uiEXT")]
public static
void Uniform1(Int32 location, UInt32 v0)
{
Delegates.glUniform1uiEXT((Int32)location, (UInt32)v0);
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform1uiEXT")]
public static
void Uniform1(Int32 location, Int32 v0)
{
@@ -32945,12 +38524,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform2uiEXT")]
public static
void Uniform2(Int32 location, UInt32 v0, UInt32 v1)
{
Delegates.glUniform2uiEXT((Int32)location, (UInt32)v0, (UInt32)v1);
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform2uiEXT")]
public static
void Uniform2(Int32 location, Int32 v0, Int32 v1)
{
@@ -32958,12 +38539,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform3uiEXT")]
public static
void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2)
{
Delegates.glUniform3uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2);
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform3uiEXT")]
public static
void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2)
{
@@ -32971,12 +38554,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform4uiEXT")]
public static
void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3)
{
Delegates.glUniform4uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3);
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform4uiEXT")]
public static
void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3)
{
@@ -32984,6 +38569,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform1uivEXT")]
public static
void Uniform1(Int32 location, Int32 count, UInt32[] value)
{
@@ -32996,6 +38582,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform1uivEXT")]
public static
void Uniform1(Int32 location, Int32 count, Int32[] value)
{
@@ -33009,6 +38596,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform1uivEXT")]
public static
void Uniform1(Int32 location, Int32 count, ref UInt32 value)
{
@@ -33021,6 +38609,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform1uivEXT")]
public static
void Uniform1(Int32 location, Int32 count, ref Int32 value)
{
@@ -33034,6 +38623,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform1uivEXT")]
public static
unsafe void Uniform1(Int32 location, Int32 count, UInt32* value)
{
@@ -33041,6 +38631,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform1uivEXT")]
public static
unsafe void Uniform1(Int32 location, Int32 count, Int32* value)
{
@@ -33048,6 +38639,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform2uivEXT")]
public static
void Uniform2v(Int32 location, Int32 count, UInt32[] value)
{
@@ -33060,6 +38652,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform2uivEXT")]
public static
void Uniform2v(Int32 location, Int32 count, Int32[] value)
{
@@ -33073,6 +38666,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform2uivEXT")]
public static
void Uniform2v(Int32 location, Int32 count, ref UInt32 value)
{
@@ -33085,6 +38679,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform2uivEXT")]
public static
void Uniform2v(Int32 location, Int32 count, ref Int32 value)
{
@@ -33098,6 +38693,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform2uivEXT")]
public static
unsafe void Uniform2v(Int32 location, Int32 count, UInt32* value)
{
@@ -33105,6 +38701,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform2uivEXT")]
public static
unsafe void Uniform2v(Int32 location, Int32 count, Int32* value)
{
@@ -33112,6 +38709,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform3uivEXT")]
public static
void Uniform3(Int32 location, Int32 count, UInt32[] value)
{
@@ -33124,6 +38722,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform3uivEXT")]
public static
void Uniform3(Int32 location, Int32 count, Int32[] value)
{
@@ -33137,6 +38736,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform3uivEXT")]
public static
void Uniform3(Int32 location, Int32 count, ref UInt32 value)
{
@@ -33149,6 +38749,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform3uivEXT")]
public static
void Uniform3(Int32 location, Int32 count, ref Int32 value)
{
@@ -33162,6 +38763,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform3uivEXT")]
public static
unsafe void Uniform3(Int32 location, Int32 count, UInt32* value)
{
@@ -33169,6 +38771,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform3uivEXT")]
public static
unsafe void Uniform3(Int32 location, Int32 count, Int32* value)
{
@@ -33176,6 +38779,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform4uivEXT")]
public static
void Uniform4(Int32 location, Int32 count, UInt32[] value)
{
@@ -33188,6 +38792,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform4uivEXT")]
public static
void Uniform4(Int32 location, Int32 count, Int32[] value)
{
@@ -33201,6 +38806,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform4uivEXT")]
public static
void Uniform4(Int32 location, Int32 count, ref UInt32 value)
{
@@ -33213,6 +38819,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform4uivEXT")]
public static
void Uniform4(Int32 location, Int32 count, ref Int32 value)
{
@@ -33226,6 +38833,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform4uivEXT")]
public static
unsafe void Uniform4(Int32 location, Int32 count, UInt32* value)
{
@@ -33233,18 +38841,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtGpuShader4", Version = "2.0", EntryPoint = "glUniform4uivEXT")]
public static
unsafe void Uniform4(Int32 location, Int32 count, Int32* value)
{
Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value);
}
+ [AutoGenerated(Category = "ExtDrawInstanced", Version = "2.0", EntryPoint = "glDrawArraysInstancedEXT")]
public static
void DrawArraysInstance(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 count, Int32 primcount)
{
Delegates.glDrawArraysInstancedEXT((OpenTK.Graphics.BeginMode)mode, (Int32)start, (Int32)count, (Int32)primcount);
}
+ [AutoGenerated(Category = "ExtDrawInstanced", Version = "2.0", EntryPoint = "glDrawElementsInstancedEXT")]
public static
void DrawElementsInstance(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount)
{
@@ -33254,6 +38865,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtDrawInstanced", Version = "2.0", EntryPoint = "glDrawElementsInstancedEXT")]
public static
void DrawElementsInstance(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount)
{
@@ -33272,25 +38884,29 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureBufferObject", Version = "2.0", EntryPoint = "glTexBufferEXT")]
public static
- void TexBuffer(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All internalformat, UInt32 buffer)
+ void TexBuffer(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ExtTextureBufferObject internalformat, UInt32 buffer)
{
- Delegates.glTexBufferEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)internalformat, (UInt32)buffer);
+ Delegates.glTexBufferEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.ExtTextureBufferObject)internalformat, (UInt32)buffer);
}
+ [AutoGenerated(Category = "ExtTextureBufferObject", Version = "2.0", EntryPoint = "glTexBufferEXT")]
public static
- void TexBuffer(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All internalformat, Int32 buffer)
+ void TexBuffer(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ExtTextureBufferObject internalformat, Int32 buffer)
{
- Delegates.glTexBufferEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)internalformat, (UInt32)buffer);
+ Delegates.glTexBufferEXT((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.ExtTextureBufferObject)internalformat, (UInt32)buffer);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glColorMaskIndexedEXT")]
public static
void ColorMaskIndexe(UInt32 index, bool r, bool g, bool b, bool a)
{
Delegates.glColorMaskIndexedEXT((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a);
}
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glColorMaskIndexedEXT")]
public static
void ColorMaskIndexe(Int32 index, bool r, bool g, bool b, bool a)
{
@@ -33298,183 +38914,203 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetBooleanIndexedvEXT")]
public static
- void GetBooleanIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] bool[] data)
+ void GetBooleanIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index, [Out] bool[] data)
{
unsafe
{
fixed (bool* data_ptr = data)
{
- Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data_ptr);
+ Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (bool*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetBooleanIndexedvEXT")]
public static
- void GetBooleanIndexed(OpenTK.Graphics.All target, Int32 index, [Out] bool[] data)
+ void GetBooleanIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, Int32 index, [Out] bool[] data)
{
unsafe
{
fixed (bool* data_ptr = data)
{
- Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data_ptr);
+ Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (bool*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetBooleanIndexedvEXT")]
public static
- void GetBooleanIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] out bool data)
+ void GetBooleanIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index, [Out] out bool data)
{
unsafe
{
fixed (bool* data_ptr = &data)
{
- Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data_ptr);
+ Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (bool*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetBooleanIndexedvEXT")]
public static
- void GetBooleanIndexed(OpenTK.Graphics.All target, Int32 index, [Out] out bool data)
+ void GetBooleanIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, Int32 index, [Out] out bool data)
{
unsafe
{
fixed (bool* data_ptr = &data)
{
- Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data_ptr);
+ Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (bool*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetBooleanIndexedvEXT")]
public static
- unsafe void GetBooleanIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] bool* data)
+ unsafe void GetBooleanIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index, [Out] bool* data)
{
- Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data);
+ Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetBooleanIndexedvEXT")]
public static
- unsafe void GetBooleanIndexed(OpenTK.Graphics.All target, Int32 index, [Out] bool* data)
+ unsafe void GetBooleanIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, Int32 index, [Out] bool* data)
{
- Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (bool*)data);
+ Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (bool*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetIntegerIndexedvEXT")]
public static
- void GetIntegerIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] Int32[] data)
+ void GetIntegerIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index, [Out] Int32[] data)
{
unsafe
{
fixed (Int32* data_ptr = data)
{
- Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data_ptr);
+ Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data_ptr);
}
}
}
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetIntegerIndexedvEXT")]
public static
- void GetIntegerIndexed(OpenTK.Graphics.All target, Int32 index, [Out] Int32[] data)
+ void GetIntegerIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, Int32 index, [Out] Int32[] data)
{
unsafe
{
fixed (Int32* data_ptr = data)
{
- Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data_ptr);
+ Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetIntegerIndexedvEXT")]
public static
- void GetIntegerIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] out Int32 data)
+ void GetIntegerIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index, [Out] out Int32 data)
{
unsafe
{
fixed (Int32* data_ptr = &data)
{
- Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data_ptr);
+ Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data_ptr);
data = *data_ptr;
}
}
}
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetIntegerIndexedvEXT")]
public static
- void GetIntegerIndexed(OpenTK.Graphics.All target, Int32 index, [Out] out Int32 data)
+ void GetIntegerIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, Int32 index, [Out] out Int32 data)
{
unsafe
{
fixed (Int32* data_ptr = &data)
{
- Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data_ptr);
+ Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data_ptr);
data = *data_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetIntegerIndexedvEXT")]
public static
- unsafe void GetIntegerIndexed(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* data)
+ unsafe void GetIntegerIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index, [Out] Int32* data)
{
- Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data);
+ Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glGetIntegerIndexedvEXT")]
public static
- unsafe void GetIntegerIndexed(OpenTK.Graphics.All target, Int32 index, [Out] Int32* data)
+ unsafe void GetIntegerIndexed(OpenTK.Graphics.ExtDrawBuffers2 target, Int32 index, [Out] Int32* data)
{
- Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.All)target, (UInt32)index, (Int32*)data);
+ Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index, (Int32*)data);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glEnableIndexedEXT")]
public static
- void EnableIndexe(OpenTK.Graphics.All target, UInt32 index)
+ void EnableIndexe(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index)
{
- Delegates.glEnableIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index);
+ Delegates.glEnableIndexedEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index);
}
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glEnableIndexedEXT")]
public static
- void EnableIndexe(OpenTK.Graphics.All target, Int32 index)
+ void EnableIndexe(OpenTK.Graphics.ExtDrawBuffers2 target, Int32 index)
{
- Delegates.glEnableIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index);
+ Delegates.glEnableIndexedEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glDisableIndexedEXT")]
public static
- void DisableIndexe(OpenTK.Graphics.All target, UInt32 index)
+ void DisableIndexe(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index)
{
- Delegates.glDisableIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index);
+ Delegates.glDisableIndexedEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index);
}
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glDisableIndexedEXT")]
public static
- void DisableIndexe(OpenTK.Graphics.All target, Int32 index)
+ void DisableIndexe(OpenTK.Graphics.ExtDrawBuffers2 target, Int32 index)
{
- Delegates.glDisableIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index);
+ Delegates.glDisableIndexedEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glIsEnabledIndexedEXT")]
public static
- bool IsEnabledIndexe(OpenTK.Graphics.All target, UInt32 index)
+ bool IsEnabledIndexe(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index)
{
- return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index);
+ return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index);
}
+ [AutoGenerated(Category = "ExtDrawBuffers2", Version = "2.0", EntryPoint = "glIsEnabledIndexedEXT")]
public static
- bool IsEnabledIndexe(OpenTK.Graphics.All target, Int32 index)
+ bool IsEnabledIndexe(OpenTK.Graphics.ExtDrawBuffers2 target, Int32 index)
{
- return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.All)target, (UInt32)index);
+ return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.ExtDrawBuffers2)target, (UInt32)index);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtBindableUniform", Version = "2.0", EntryPoint = "glUniformBufferEXT")]
public static
void UniformBuffer(UInt32 program, Int32 location, UInt32 buffer)
{
Delegates.glUniformBufferEXT((UInt32)program, (Int32)location, (UInt32)buffer);
}
+ [AutoGenerated(Category = "ExtBindableUniform", Version = "2.0", EntryPoint = "glUniformBufferEXT")]
public static
void UniformBuffer(Int32 program, Int32 location, Int32 buffer)
{
@@ -33482,12 +39118,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtBindableUniform", Version = "2.0", EntryPoint = "glGetUniformBufferSizeEXT")]
public static
Int32 GetUniformBufferSize(UInt32 program, Int32 location)
{
return Delegates.glGetUniformBufferSizeEXT((UInt32)program, (Int32)location);
}
+ [AutoGenerated(Category = "ExtBindableUniform", Version = "2.0", EntryPoint = "glGetUniformBufferSizeEXT")]
public static
Int32 GetUniformBufferSize(Int32 program, Int32 location)
{
@@ -33495,6 +39133,22 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtBindableUniform", Version = "2.0", EntryPoint = "glGetUniformOffsetEXT")]
+ public static
+ IntPtr GetUniformOffset(UInt32 program, Int32 location)
+ {
+ return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location);
+ }
+
+ [AutoGenerated(Category = "ExtBindableUniform", Version = "2.0", EntryPoint = "glGetUniformOffsetEXT")]
+ public static
+ IntPtr GetUniformOffset(Int32 program, Int32 location)
+ {
+ return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glTexParameterIuivEXT")]
public static
void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32[] @params)
{
@@ -33507,6 +39161,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glTexParameterIuivEXT")]
public static
void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params)
{
@@ -33520,6 +39175,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glTexParameterIuivEXT")]
public static
void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref UInt32 @params)
{
@@ -33532,6 +39188,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glTexParameterIuivEXT")]
public static
void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params)
{
@@ -33545,6 +39202,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glTexParameterIuivEXT")]
public static
unsafe void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params)
{
@@ -33552,6 +39210,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glTexParameterIuivEXT")]
public static
unsafe void TexParameterIv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params)
{
@@ -33559,6 +39218,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glGetTexParameterIuivEXT")]
public static
void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32[] @params)
{
@@ -33571,6 +39231,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glGetTexParameterIuivEXT")]
public static
void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
{
@@ -33584,6 +39245,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glGetTexParameterIuivEXT")]
public static
void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out UInt32 @params)
{
@@ -33597,6 +39259,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glGetTexParameterIuivEXT")]
public static
void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
{
@@ -33611,6 +39274,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glGetTexParameterIuivEXT")]
public static
unsafe void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params)
{
@@ -33618,6 +39282,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glGetTexParameterIuivEXT")]
public static
unsafe void GetTexParameterI(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
{
@@ -33625,223 +39290,7116 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glClearColorIuiEXT")]
public static
void ClearColorI(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha)
{
Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha);
}
+ [AutoGenerated(Category = "ExtTextureInteger", Version = "2.0", EntryPoint = "glClearColorIuiEXT")]
public static
void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha)
{
Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha);
}
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glBeginTransformFeedbackEXT")]
+ public static
+ void BeginTransformFeedback(OpenTK.Graphics.ExtTransformFeedback primitiveMode)
+ {
+ Delegates.glBeginTransformFeedbackEXT((OpenTK.Graphics.ExtTransformFeedback)primitiveMode);
+ }
+
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glEndTransformFeedbackEXT")]
+ public static
+ void EndTransformFeedback()
+ {
+ Delegates.glEndTransformFeedbackEXT();
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glBindBufferRangeEXT")]
+ public static
+ void BindBufferRange(OpenTK.Graphics.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size)
+ {
+ Delegates.glBindBufferRangeEXT((OpenTK.Graphics.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size);
+ }
+
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glBindBufferRangeEXT")]
+ public static
+ void BindBufferRange(OpenTK.Graphics.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size)
+ {
+ Delegates.glBindBufferRangeEXT((OpenTK.Graphics.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glBindBufferOffsetEXT")]
+ public static
+ void BindBufferOffset(OpenTK.Graphics.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset)
+ {
+ Delegates.glBindBufferOffsetEXT((OpenTK.Graphics.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset);
+ }
+
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glBindBufferOffsetEXT")]
+ public static
+ void BindBufferOffset(OpenTK.Graphics.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset)
+ {
+ Delegates.glBindBufferOffsetEXT((OpenTK.Graphics.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glBindBufferBaseEXT")]
+ public static
+ void BindBufferBase(OpenTK.Graphics.ExtTransformFeedback target, UInt32 index, UInt32 buffer)
+ {
+ Delegates.glBindBufferBaseEXT((OpenTK.Graphics.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer);
+ }
+
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glBindBufferBaseEXT")]
+ public static
+ void BindBufferBase(OpenTK.Graphics.ExtTransformFeedback target, Int32 index, Int32 buffer)
+ {
+ Delegates.glBindBufferBaseEXT((OpenTK.Graphics.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glTransformFeedbackVaryingsEXT")]
+ public static
+ void TransformFeedbackVarying(UInt32 program, Int32 count, Int32[] locations, OpenTK.Graphics.ExtTransformFeedback bufferMode)
+ {
+ unsafe
+ {
+ fixed (Int32* locations_ptr = locations)
+ {
+ Delegates.glTransformFeedbackVaryingsEXT((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.ExtTransformFeedback)bufferMode);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glTransformFeedbackVaryingsEXT")]
+ public static
+ void TransformFeedbackVarying(Int32 program, Int32 count, Int32[] locations, OpenTK.Graphics.ExtTransformFeedback bufferMode)
+ {
+ unsafe
+ {
+ fixed (Int32* locations_ptr = locations)
+ {
+ Delegates.glTransformFeedbackVaryingsEXT((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.ExtTransformFeedback)bufferMode);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glTransformFeedbackVaryingsEXT")]
+ public static
+ void TransformFeedbackVarying(UInt32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.ExtTransformFeedback bufferMode)
+ {
+ unsafe
+ {
+ fixed (Int32* locations_ptr = &locations)
+ {
+ Delegates.glTransformFeedbackVaryingsEXT((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.ExtTransformFeedback)bufferMode);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glTransformFeedbackVaryingsEXT")]
+ public static
+ void TransformFeedbackVarying(Int32 program, Int32 count, ref Int32 locations, OpenTK.Graphics.ExtTransformFeedback bufferMode)
+ {
+ unsafe
+ {
+ fixed (Int32* locations_ptr = &locations)
+ {
+ Delegates.glTransformFeedbackVaryingsEXT((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.ExtTransformFeedback)bufferMode);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glTransformFeedbackVaryingsEXT")]
+ public static
+ unsafe void TransformFeedbackVarying(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.ExtTransformFeedback bufferMode)
+ {
+ Delegates.glTransformFeedbackVaryingsEXT((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.ExtTransformFeedback)bufferMode);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glTransformFeedbackVaryingsEXT")]
+ public static
+ unsafe void TransformFeedbackVarying(Int32 program, Int32 count, Int32* locations, OpenTK.Graphics.ExtTransformFeedback bufferMode)
+ {
+ Delegates.glTransformFeedbackVaryingsEXT((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.ExtTransformFeedback)bufferMode);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glGetTransformFeedbackVaryingEXT")]
+ public static
+ void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] Int32[] location)
+ {
+ unsafe
+ {
+ fixed (Int32* location_ptr = location)
+ {
+ Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32*)location_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glGetTransformFeedbackVaryingEXT")]
+ public static
+ void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] Int32[] location)
+ {
+ unsafe
+ {
+ fixed (Int32* location_ptr = location)
+ {
+ Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32*)location_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glGetTransformFeedbackVaryingEXT")]
+ public static
+ void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] out Int32 location)
+ {
+ unsafe
+ {
+ fixed (Int32* location_ptr = &location)
+ {
+ Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32*)location_ptr);
+ location = *location_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glGetTransformFeedbackVaryingEXT")]
+ public static
+ void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] out Int32 location)
+ {
+ unsafe
+ {
+ fixed (Int32* location_ptr = &location)
+ {
+ Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32*)location_ptr);
+ location = *location_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glGetTransformFeedbackVaryingEXT")]
+ public static
+ unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] Int32* location)
+ {
+ Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32*)location);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtTransformFeedback", Version = "2.0", EntryPoint = "glGetTransformFeedbackVaryingEXT")]
+ public static
+ unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, [Out] Int32* location)
+ {
+ Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32*)location);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glClientAttribDefaultEXT")]
+ public static
+ void ClientAttribDefault(OpenTK.Graphics.ClientAttribMask mask)
+ {
+ Delegates.glClientAttribDefaultEXT((OpenTK.Graphics.ClientAttribMask)mask);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glPushClientAttribDefaultEXT")]
+ public static
+ void PushClientAttribDefault(OpenTK.Graphics.ClientAttribMask mask)
+ {
+ Delegates.glPushClientAttribDefaultEXT((OpenTK.Graphics.ClientAttribMask)mask);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadfEXT")]
+ public static
+ void MatrixLoad(OpenTK.Graphics.MatrixMode mode, Single[] m)
+ {
+ unsafe
+ {
+ fixed (Single* m_ptr = m)
+ {
+ Delegates.glMatrixLoadfEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadfEXT")]
+ public static
+ void MatrixLoad(OpenTK.Graphics.MatrixMode mode, ref Single m)
+ {
+ unsafe
+ {
+ fixed (Single* m_ptr = &m)
+ {
+ Delegates.glMatrixLoadfEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadfEXT")]
+ public static
+ unsafe void MatrixLoad(OpenTK.Graphics.MatrixMode mode, Single* m)
+ {
+ Delegates.glMatrixLoadfEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoaddEXT")]
+ public static
+ void MatrixLoad(OpenTK.Graphics.MatrixMode mode, Double[] m)
+ {
+ unsafe
+ {
+ fixed (Double* m_ptr = m)
+ {
+ Delegates.glMatrixLoaddEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoaddEXT")]
+ public static
+ void MatrixLoad(OpenTK.Graphics.MatrixMode mode, ref Double m)
+ {
+ unsafe
+ {
+ fixed (Double* m_ptr = &m)
+ {
+ Delegates.glMatrixLoaddEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoaddEXT")]
+ public static
+ unsafe void MatrixLoad(OpenTK.Graphics.MatrixMode mode, Double* m)
+ {
+ Delegates.glMatrixLoaddEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultfEXT")]
+ public static
+ void MatrixMult(OpenTK.Graphics.MatrixMode mode, Single[] m)
+ {
+ unsafe
+ {
+ fixed (Single* m_ptr = m)
+ {
+ Delegates.glMatrixMultfEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultfEXT")]
+ public static
+ void MatrixMult(OpenTK.Graphics.MatrixMode mode, ref Single m)
+ {
+ unsafe
+ {
+ fixed (Single* m_ptr = &m)
+ {
+ Delegates.glMatrixMultfEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultfEXT")]
+ public static
+ unsafe void MatrixMult(OpenTK.Graphics.MatrixMode mode, Single* m)
+ {
+ Delegates.glMatrixMultfEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultdEXT")]
+ public static
+ void MatrixMult(OpenTK.Graphics.MatrixMode mode, Double[] m)
+ {
+ unsafe
+ {
+ fixed (Double* m_ptr = m)
+ {
+ Delegates.glMatrixMultdEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultdEXT")]
+ public static
+ void MatrixMult(OpenTK.Graphics.MatrixMode mode, ref Double m)
+ {
+ unsafe
+ {
+ fixed (Double* m_ptr = &m)
+ {
+ Delegates.glMatrixMultdEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultdEXT")]
+ public static
+ unsafe void MatrixMult(OpenTK.Graphics.MatrixMode mode, Double* m)
+ {
+ Delegates.glMatrixMultdEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")]
+ public static
+ void MatrixLoadIdentity(OpenTK.Graphics.MatrixMode mode)
+ {
+ Delegates.glMatrixLoadIdentityEXT((OpenTK.Graphics.MatrixMode)mode);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixRotatefEXT")]
+ public static
+ void MatrixRotate(OpenTK.Graphics.MatrixMode mode, Single angle, Single x, Single y, Single z)
+ {
+ Delegates.glMatrixRotatefEXT((OpenTK.Graphics.MatrixMode)mode, (Single)angle, (Single)x, (Single)y, (Single)z);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixRotatedEXT")]
+ public static
+ void MatrixRotate(OpenTK.Graphics.MatrixMode mode, Double angle, Double x, Double y, Double z)
+ {
+ Delegates.glMatrixRotatedEXT((OpenTK.Graphics.MatrixMode)mode, (Double)angle, (Double)x, (Double)y, (Double)z);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixScalefEXT")]
+ public static
+ void MatrixScale(OpenTK.Graphics.MatrixMode mode, Single x, Single y, Single z)
+ {
+ Delegates.glMatrixScalefEXT((OpenTK.Graphics.MatrixMode)mode, (Single)x, (Single)y, (Single)z);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixScaledEXT")]
+ public static
+ void MatrixScale(OpenTK.Graphics.MatrixMode mode, Double x, Double y, Double z)
+ {
+ Delegates.glMatrixScaledEXT((OpenTK.Graphics.MatrixMode)mode, (Double)x, (Double)y, (Double)z);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixTranslatefEXT")]
+ public static
+ void MatrixTranslate(OpenTK.Graphics.MatrixMode mode, Single x, Single y, Single z)
+ {
+ Delegates.glMatrixTranslatefEXT((OpenTK.Graphics.MatrixMode)mode, (Single)x, (Single)y, (Single)z);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixTranslatedEXT")]
+ public static
+ void MatrixTranslate(OpenTK.Graphics.MatrixMode mode, Double x, Double y, Double z)
+ {
+ Delegates.glMatrixTranslatedEXT((OpenTK.Graphics.MatrixMode)mode, (Double)x, (Double)y, (Double)z);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixFrustumEXT")]
+ public static
+ void MatrixFrustum(OpenTK.Graphics.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar)
+ {
+ Delegates.glMatrixFrustumEXT((OpenTK.Graphics.MatrixMode)mode, (Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixOrthoEXT")]
+ public static
+ void MatrixOrtho(OpenTK.Graphics.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar)
+ {
+ Delegates.glMatrixOrthoEXT((OpenTK.Graphics.MatrixMode)mode, (Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixPopEXT")]
+ public static
+ void MatrixPop(OpenTK.Graphics.MatrixMode mode)
+ {
+ Delegates.glMatrixPopEXT((OpenTK.Graphics.MatrixMode)mode);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixPushEXT")]
+ public static
+ void MatrixPush(OpenTK.Graphics.MatrixMode mode)
+ {
+ Delegates.glMatrixPushEXT((OpenTK.Graphics.MatrixMode)mode);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")]
+ public static
+ void MatrixLoadTranspose(OpenTK.Graphics.MatrixMode mode, Single[] m)
+ {
+ unsafe
+ {
+ fixed (Single* m_ptr = m)
+ {
+ Delegates.glMatrixLoadTransposefEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")]
+ public static
+ void MatrixLoadTranspose(OpenTK.Graphics.MatrixMode mode, ref Single m)
+ {
+ unsafe
+ {
+ fixed (Single* m_ptr = &m)
+ {
+ Delegates.glMatrixLoadTransposefEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")]
+ public static
+ unsafe void MatrixLoadTranspose(OpenTK.Graphics.MatrixMode mode, Single* m)
+ {
+ Delegates.glMatrixLoadTransposefEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")]
+ public static
+ void MatrixLoadTranspose(OpenTK.Graphics.MatrixMode mode, Double[] m)
+ {
+ unsafe
+ {
+ fixed (Double* m_ptr = m)
+ {
+ Delegates.glMatrixLoadTransposedEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")]
+ public static
+ void MatrixLoadTranspose(OpenTK.Graphics.MatrixMode mode, ref Double m)
+ {
+ unsafe
+ {
+ fixed (Double* m_ptr = &m)
+ {
+ Delegates.glMatrixLoadTransposedEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")]
+ public static
+ unsafe void MatrixLoadTranspose(OpenTK.Graphics.MatrixMode mode, Double* m)
+ {
+ Delegates.glMatrixLoadTransposedEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultTransposefEXT")]
+ public static
+ void MatrixMultTranspose(OpenTK.Graphics.MatrixMode mode, Single[] m)
+ {
+ unsafe
+ {
+ fixed (Single* m_ptr = m)
+ {
+ Delegates.glMatrixMultTransposefEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultTransposefEXT")]
+ public static
+ void MatrixMultTranspose(OpenTK.Graphics.MatrixMode mode, ref Single m)
+ {
+ unsafe
+ {
+ fixed (Single* m_ptr = &m)
+ {
+ Delegates.glMatrixMultTransposefEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultTransposefEXT")]
+ public static
+ unsafe void MatrixMultTranspose(OpenTK.Graphics.MatrixMode mode, Single* m)
+ {
+ Delegates.glMatrixMultTransposefEXT((OpenTK.Graphics.MatrixMode)mode, (Single*)m);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultTransposedEXT")]
+ public static
+ void MatrixMultTranspose(OpenTK.Graphics.MatrixMode mode, Double[] m)
+ {
+ unsafe
+ {
+ fixed (Double* m_ptr = m)
+ {
+ Delegates.glMatrixMultTransposedEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultTransposedEXT")]
+ public static
+ void MatrixMultTranspose(OpenTK.Graphics.MatrixMode mode, ref Double m)
+ {
+ unsafe
+ {
+ fixed (Double* m_ptr = &m)
+ {
+ Delegates.glMatrixMultTransposedEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMatrixMultTransposedEXT")]
+ public static
+ unsafe void MatrixMultTranspose(OpenTK.Graphics.MatrixMode mode, Double* m)
+ {
+ Delegates.glMatrixMultTransposedEXT((OpenTK.Graphics.MatrixMode)mode, (Double*)m);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterfEXT")]
+ public static
+ void TextureParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single param)
+ {
+ Delegates.glTextureParameterfEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single)param);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterfEXT")]
+ public static
+ void TextureParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single param)
+ {
+ Delegates.glTextureParameterfEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single)param);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterfvEXT")]
+ public static
+ void TextureParameterv(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterfvEXT")]
+ public static
+ void TextureParameterv(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterfvEXT")]
+ public static
+ void TextureParameterv(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterfvEXT")]
+ public static
+ void TextureParameterv(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterfvEXT")]
+ public static
+ unsafe void TextureParameterv(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single* @params)
+ {
+ Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterfvEXT")]
+ public static
+ unsafe void TextureParameterv(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single* @params)
+ {
+ Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameteriEXT")]
+ public static
+ void TextureParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32 param)
+ {
+ Delegates.glTextureParameteriEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32)param);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameteriEXT")]
+ public static
+ void TextureParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32 param)
+ {
+ Delegates.glTextureParameteriEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32)param);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterivEXT")]
+ public static
+ void TextureParameterv(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterivEXT")]
+ public static
+ void TextureParameterv(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterivEXT")]
+ public static
+ void TextureParameterv(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterivEXT")]
+ public static
+ void TextureParameterv(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterivEXT")]
+ public static
+ unsafe void TextureParameterv(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params)
+ {
+ Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterivEXT")]
+ public static
+ unsafe void TextureParameterv(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params)
+ {
+ Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage1DEXT")]
+ public static
+ void TextureImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage1DEXT")]
+ public static
+ void TextureImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage1DEXT")]
+ public static
+ void TextureImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage1DEXT")]
+ public static
+ void TextureImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage2DEXT")]
+ public static
+ void TextureImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage2DEXT")]
+ public static
+ void TextureImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage2DEXT")]
+ public static
+ void TextureImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage2DEXT")]
+ public static
+ void TextureImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage1DEXT")]
+ public static
+ void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage1DEXT")]
+ public static
+ void TextureSubImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage1DEXT")]
+ public static
+ void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage1DEXT")]
+ public static
+ void TextureSubImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage2DEXT")]
+ public static
+ void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage2DEXT")]
+ public static
+ void TextureSubImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage2DEXT")]
+ public static
+ void TextureSubImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage2DEXT")]
+ public static
+ void TextureSubImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureImage1DEXT")]
+ public static
+ void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border)
+ {
+ Delegates.glCopyTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureImage1DEXT")]
+ public static
+ void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border)
+ {
+ Delegates.glCopyTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureImage2DEXT")]
+ public static
+ void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border)
+ {
+ Delegates.glCopyTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureImage2DEXT")]
+ public static
+ void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border)
+ {
+ Delegates.glCopyTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")]
+ public static
+ void CopyTextureSubImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width)
+ {
+ Delegates.glCopyTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")]
+ public static
+ void CopyTextureSubImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width)
+ {
+ Delegates.glCopyTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")]
+ public static
+ void CopyTextureSubImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height)
+ {
+ Delegates.glCopyTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")]
+ public static
+ void CopyTextureSubImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height)
+ {
+ Delegates.glCopyTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureImageEXT")]
+ public static
+ void GetTextureImage(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureImageEXT")]
+ public static
+ void GetTextureImage(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureImageEXT")]
+ public static
+ void GetTextureImage(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureImageEXT")]
+ public static
+ void GetTextureImage(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterfvEXT")]
+ public static
+ void GetTextureParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterfvEXT")]
+ public static
+ void GetTextureParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterfvEXT")]
+ public static
+ void GetTextureParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterfvEXT")]
+ public static
+ void GetTextureParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterfvEXT")]
+ public static
+ unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params)
+ {
+ Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterfvEXT")]
+ public static
+ unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params)
+ {
+ Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterivEXT")]
+ public static
+ void GetTextureParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterivEXT")]
+ public static
+ void GetTextureParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterivEXT")]
+ public static
+ void GetTextureParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterivEXT")]
+ public static
+ void GetTextureParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterivEXT")]
+ public static
+ unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterivEXT")]
+ public static
+ unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")]
+ public static
+ void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")]
+ public static
+ void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")]
+ public static
+ void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")]
+ public static
+ void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")]
+ public static
+ unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params)
+ {
+ Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")]
+ public static
+ unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params)
+ {
+ Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")]
+ public static
+ void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")]
+ public static
+ void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")]
+ public static
+ void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")]
+ public static
+ void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")]
+ public static
+ unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")]
+ public static
+ unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage3DEXT")]
+ public static
+ void TextureImage3D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage3DEXT")]
+ public static
+ void TextureImage3D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage3DEXT")]
+ public static
+ void TextureImage3D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureImage3DEXT")]
+ public static
+ void TextureImage3D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage3DEXT")]
+ public static
+ void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage3DEXT")]
+ public static
+ void TextureSubImage3D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage3DEXT")]
+ public static
+ void TextureSubImage3D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureSubImage3DEXT")]
+ public static
+ void TextureSubImage3D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")]
+ public static
+ void CopyTextureSubImage3D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height)
+ {
+ Delegates.glCopyTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")]
+ public static
+ void CopyTextureSubImage3D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height)
+ {
+ Delegates.glCopyTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterfEXT")]
+ public static
+ void MultiTexParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single param)
+ {
+ Delegates.glMultiTexParameterfEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single)param);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterfvEXT")]
+ public static
+ void MultiTexParameterv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glMultiTexParameterfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterfvEXT")]
+ public static
+ void MultiTexParameterv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glMultiTexParameterfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterfvEXT")]
+ public static
+ unsafe void MultiTexParameterv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single* @params)
+ {
+ Delegates.glMultiTexParameterfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Single*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameteriEXT")]
+ public static
+ void MultiTexParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32 param)
+ {
+ Delegates.glMultiTexParameteriEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32)param);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterivEXT")]
+ public static
+ void MultiTexParameterv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glMultiTexParameterivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterivEXT")]
+ public static
+ void MultiTexParameterv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glMultiTexParameterivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterivEXT")]
+ public static
+ unsafe void MultiTexParameterv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params)
+ {
+ Delegates.glMultiTexParameterivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexImage1DEXT")]
+ public static
+ void MultiTexImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexImage1DEXT")]
+ public static
+ void MultiTexImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexImage2DEXT")]
+ public static
+ void MultiTexImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexImage2DEXT")]
+ public static
+ void MultiTexImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")]
+ public static
+ void MultiTexSubImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glMultiTexSubImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")]
+ public static
+ void MultiTexSubImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glMultiTexSubImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")]
+ public static
+ void MultiTexSubImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glMultiTexSubImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")]
+ public static
+ void MultiTexSubImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glMultiTexSubImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyMultiTexImage1DEXT")]
+ public static
+ void CopyMultiTexImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border)
+ {
+ Delegates.glCopyMultiTexImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyMultiTexImage2DEXT")]
+ public static
+ void CopyMultiTexImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border)
+ {
+ Delegates.glCopyMultiTexImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyMultiTexSubImage1DEXT")]
+ public static
+ void CopyMultiTexSubImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width)
+ {
+ Delegates.glCopyMultiTexSubImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyMultiTexSubImage2DEXT")]
+ public static
+ void CopyMultiTexSubImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height)
+ {
+ Delegates.glCopyMultiTexSubImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexImageEXT")]
+ public static
+ void GetMultiTexImage(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glGetMultiTexImageEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexImageEXT")]
+ public static
+ void GetMultiTexImage(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetMultiTexImageEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")]
+ public static
+ void GetMultiTexParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexParameterfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")]
+ public static
+ void GetMultiTexParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexParameterfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")]
+ public static
+ unsafe void GetMultiTexParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params)
+ {
+ Delegates.glGetMultiTexParameterfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")]
+ public static
+ void GetMultiTexParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexParameterivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")]
+ public static
+ void GetMultiTexParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexParameterivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")]
+ public static
+ unsafe void GetMultiTexParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetMultiTexParameterivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")]
+ public static
+ void GetMultiTexLevelParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexLevelParameterfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")]
+ public static
+ void GetMultiTexLevelParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexLevelParameterfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")]
+ public static
+ unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params)
+ {
+ Delegates.glGetMultiTexLevelParameterfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Single*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")]
+ public static
+ void GetMultiTexLevelParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexLevelParameterivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")]
+ public static
+ void GetMultiTexLevelParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexLevelParameterivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")]
+ public static
+ unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetMultiTexLevelParameterivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexImage3DEXT")]
+ public static
+ void MultiTexImage3D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexImage3DEXT")]
+ public static
+ void MultiTexImage3D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")]
+ public static
+ void MultiTexSubImage3D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
+ {
+ unsafe
+ {
+ Delegates.glMultiTexSubImage3DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")]
+ public static
+ void MultiTexSubImage3D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pixels_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pixels, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glMultiTexSubImage3DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pixels_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCopyMultiTexSubImage3DEXT")]
+ public static
+ void CopyMultiTexSubImage3D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height)
+ {
+ Delegates.glCopyMultiTexSubImage3DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glBindMultiTextureEXT")]
+ public static
+ void BindMultiTexture(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, UInt32 texture)
+ {
+ Delegates.glBindMultiTextureEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (UInt32)texture);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glBindMultiTextureEXT")]
+ public static
+ void BindMultiTexture(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 texture)
+ {
+ Delegates.glBindMultiTextureEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (UInt32)texture);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")]
+ public static
+ void EnableClientStateIndexe(OpenTK.Graphics.EnableCap array, UInt32 index)
+ {
+ Delegates.glEnableClientStateIndexedEXT((OpenTK.Graphics.EnableCap)array, (UInt32)index);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")]
+ public static
+ void EnableClientStateIndexe(OpenTK.Graphics.EnableCap array, Int32 index)
+ {
+ Delegates.glEnableClientStateIndexedEXT((OpenTK.Graphics.EnableCap)array, (UInt32)index);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")]
+ public static
+ void DisableClientStateIndexe(OpenTK.Graphics.EnableCap array, UInt32 index)
+ {
+ Delegates.glDisableClientStateIndexedEXT((OpenTK.Graphics.EnableCap)array, (UInt32)index);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")]
+ public static
+ void DisableClientStateIndexe(OpenTK.Graphics.EnableCap array, Int32 index)
+ {
+ Delegates.glDisableClientStateIndexedEXT((OpenTK.Graphics.EnableCap)array, (UInt32)index);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")]
+ public static
+ void MultiTexCoordPointer(OpenTK.Graphics.TextureUnit texunit, Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, IntPtr pointer)
+ {
+ unsafe
+ {
+ Delegates.glMultiTexCoordPointerEXT((OpenTK.Graphics.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")]
+ public static
+ void MultiTexCoordPointer(OpenTK.Graphics.TextureUnit texunit, Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, [In, Out] object pointer)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glMultiTexCoordPointerEXT((OpenTK.Graphics.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ pointer_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexEnvfEXT")]
+ public static
+ void MultiTexEnv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single param)
+ {
+ Delegates.glMultiTexEnvfEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single)param);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexEnvfvEXT")]
+ public static
+ void MultiTexEnvv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glMultiTexEnvfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexEnvfvEXT")]
+ public static
+ void MultiTexEnvv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, ref Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glMultiTexEnvfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexEnvfvEXT")]
+ public static
+ unsafe void MultiTexEnvv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single* @params)
+ {
+ Delegates.glMultiTexEnvfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexEnviEXT")]
+ public static
+ void MultiTexEnv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32 param)
+ {
+ Delegates.glMultiTexEnviEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32)param);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexEnvivEXT")]
+ public static
+ void MultiTexEnvv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glMultiTexEnvivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexEnvivEXT")]
+ public static
+ void MultiTexEnvv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glMultiTexEnvivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexEnvivEXT")]
+ public static
+ unsafe void MultiTexEnvv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32* @params)
+ {
+ Delegates.glMultiTexEnvivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGendEXT")]
+ public static
+ void MultiTexGend(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double param)
+ {
+ Delegates.glMultiTexGendEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double)param);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGendvEXT")]
+ public static
+ void MultiTexGenv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double[] @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = @params)
+ {
+ Delegates.glMultiTexGendvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGendvEXT")]
+ public static
+ void MultiTexGenv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, ref Double @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = &@params)
+ {
+ Delegates.glMultiTexGendvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGendvEXT")]
+ public static
+ unsafe void MultiTexGenv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double* @params)
+ {
+ Delegates.glMultiTexGendvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGenfEXT")]
+ public static
+ void MultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single param)
+ {
+ Delegates.glMultiTexGenfEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single)param);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGenfvEXT")]
+ public static
+ void MultiTexGenv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glMultiTexGenfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGenfvEXT")]
+ public static
+ void MultiTexGenv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, ref Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glMultiTexGenfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGenfvEXT")]
+ public static
+ unsafe void MultiTexGenv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single* @params)
+ {
+ Delegates.glMultiTexGenfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGeniEXT")]
+ public static
+ void MultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32 param)
+ {
+ Delegates.glMultiTexGeniEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32)param);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGenivEXT")]
+ public static
+ void MultiTexGenv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glMultiTexGenivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGenivEXT")]
+ public static
+ void MultiTexGenv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glMultiTexGenivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexGenivEXT")]
+ public static
+ unsafe void MultiTexGenv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32* @params)
+ {
+ Delegates.glMultiTexGenivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")]
+ public static
+ void GetMultiTexEnv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexEnvfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")]
+ public static
+ void GetMultiTexEnv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexEnvfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")]
+ public static
+ unsafe void GetMultiTexEnv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Single* @params)
+ {
+ Delegates.glGetMultiTexEnvfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Single*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")]
+ public static
+ void GetMultiTexEnv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexEnvivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")]
+ public static
+ void GetMultiTexEnv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexEnvivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")]
+ public static
+ unsafe void GetMultiTexEnv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetMultiTexEnvivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureEnvTarget)target, (OpenTK.Graphics.TextureEnvParameter)pname, (Int32*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexGendvEXT")]
+ public static
+ void GetMultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Double[] @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexGendvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexGendvEXT")]
+ public static
+ void GetMultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] out Double @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexGendvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexGendvEXT")]
+ public static
+ unsafe void GetMultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Double* @params)
+ {
+ Delegates.glGetMultiTexGendvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Double*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")]
+ public static
+ void GetMultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexGenfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")]
+ public static
+ void GetMultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexGenfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")]
+ public static
+ unsafe void GetMultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Single* @params)
+ {
+ Delegates.glGetMultiTexGenfvEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Single*)@params);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexGenivEXT")]
+ public static
+ void GetMultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexGenivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexGenivEXT")]
+ public static
+ void GetMultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexGenivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexGenivEXT")]
+ public static
+ unsafe void GetMultiTexGen(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetMultiTexGenivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureCoordName)coord, (OpenTK.Graphics.TextureGenParameter)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFloatIndexedvEXT")]
+ public static
+ void GetFloatIndexed(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Single[] data)
+ {
+ unsafe
+ {
+ fixed (Single* data_ptr = data)
+ {
+ Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)data_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFloatIndexedvEXT")]
+ public static
+ void GetFloatIndexed(OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Single[] data)
+ {
+ unsafe
+ {
+ fixed (Single* data_ptr = data)
+ {
+ Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)data_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFloatIndexedvEXT")]
+ public static
+ void GetFloatIndexed(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] out Single data)
+ {
+ unsafe
+ {
+ fixed (Single* data_ptr = &data)
+ {
+ Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)data_ptr);
+ data = *data_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFloatIndexedvEXT")]
+ public static
+ void GetFloatIndexed(OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] out Single data)
+ {
+ unsafe
+ {
+ fixed (Single* data_ptr = &data)
+ {
+ Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)data_ptr);
+ data = *data_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFloatIndexedvEXT")]
+ public static
+ unsafe void GetFloatIndexed(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Single* data)
+ {
+ Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)data);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFloatIndexedvEXT")]
+ public static
+ unsafe void GetFloatIndexed(OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Single* data)
+ {
+ Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)data);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")]
+ public static
+ void GetDoubleIndexed(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Double[] data)
+ {
+ unsafe
+ {
+ fixed (Double* data_ptr = data)
+ {
+ Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)data_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")]
+ public static
+ void GetDoubleIndexed(OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Double[] data)
+ {
+ unsafe
+ {
+ fixed (Double* data_ptr = data)
+ {
+ Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)data_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")]
+ public static
+ void GetDoubleIndexed(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] out Double data)
+ {
+ unsafe
+ {
+ fixed (Double* data_ptr = &data)
+ {
+ Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)data_ptr);
+ data = *data_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")]
+ public static
+ void GetDoubleIndexed(OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] out Double data)
+ {
+ unsafe
+ {
+ fixed (Double* data_ptr = &data)
+ {
+ Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)data_ptr);
+ data = *data_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")]
+ public static
+ unsafe void GetDoubleIndexed(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Double* data)
+ {
+ Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)data);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")]
+ public static
+ unsafe void GetDoubleIndexed(OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Double* data)
+ {
+ Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)data);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetPointerIndexedvEXT")]
+ public static
+ void GetPointerIndexed(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] IntPtr data)
+ {
+ unsafe
+ {
+ Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetPointerIndexedvEXT")]
+ public static
+ void GetPointerIndexed(OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] IntPtr data)
+ {
+ unsafe
+ {
+ Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetPointerIndexedvEXT")]
+ public static
+ void GetPointerIndexed(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [In, Out] object data)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ data_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetPointerIndexedvEXT")]
+ public static
+ void GetPointerIndexed(OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [In, Out] object data)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ data_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")]
+ public static
+ void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")]
+ public static
+ void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")]
+ public static
+ void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")]
+ public static
+ void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")]
+ public static
+ void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")]
+ public static
+ void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")]
+ public static
+ void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")]
+ public static
+ void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")]
+ public static
+ void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")]
+ public static
+ void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")]
+ public static
+ void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")]
+ public static
+ void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")]
+ public static
+ void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")]
+ public static
+ void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")]
+ public static
+ void CompressedTextureSubImage3D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")]
+ public static
+ void CompressedTextureSubImage3D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")]
+ public static
+ void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")]
+ public static
+ void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")]
+ public static
+ void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")]
+ public static
+ void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")]
+ public static
+ void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")]
+ public static
+ void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")]
+ public static
+ void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")]
+ public static
+ void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")]
+ public static
+ void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 lod, [Out] IntPtr img)
+ {
+ unsafe
+ {
+ Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)lod, (IntPtr)img);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")]
+ public static
+ void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 lod, [Out] IntPtr img)
+ {
+ unsafe
+ {
+ Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)lod, (IntPtr)img);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")]
+ public static
+ void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 lod, [In, Out] object img)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle img_ptr = System.Runtime.InteropServices.GCHandle.Alloc(img, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ img_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")]
+ public static
+ void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 lod, [In, Out] object img)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle img_ptr = System.Runtime.InteropServices.GCHandle.Alloc(img, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ img_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")]
+ public static
+ void CompressedMultiTexImage3D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedMultiTexImage3DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")]
+ public static
+ void CompressedMultiTexImage3D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedMultiTexImage3DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")]
+ public static
+ void CompressedMultiTexImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedMultiTexImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")]
+ public static
+ void CompressedMultiTexImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedMultiTexImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")]
+ public static
+ void CompressedMultiTexImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedMultiTexImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")]
+ public static
+ void CompressedMultiTexImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedMultiTexImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")]
+ public static
+ void CompressedMultiTexSubImage3D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedMultiTexSubImage3DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")]
+ public static
+ void CompressedMultiTexSubImage3D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedMultiTexSubImage3DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")]
+ public static
+ void CompressedMultiTexSubImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedMultiTexSubImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")]
+ public static
+ void CompressedMultiTexSubImage2D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedMultiTexSubImage2DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")]
+ public static
+ void CompressedMultiTexSubImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits)
+ {
+ unsafe
+ {
+ Delegates.glCompressedMultiTexSubImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")]
+ public static
+ void CompressedMultiTexSubImage1D(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, [In, Out] object bits)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle bits_ptr = System.Runtime.InteropServices.GCHandle.Alloc(bits, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glCompressedMultiTexSubImage1DEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ bits_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")]
+ public static
+ void GetCompressedMultiTexImage(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 lod, [Out] IntPtr img)
+ {
+ unsafe
+ {
+ Delegates.glGetCompressedMultiTexImageEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)lod, (IntPtr)img);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")]
+ public static
+ void GetCompressedMultiTexImage(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 lod, [In, Out] object img)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle img_ptr = System.Runtime.InteropServices.GCHandle.Alloc(img, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetCompressedMultiTexImageEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ img_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramStringEXT")]
+ public static
+ void NamedProgramString(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess format, Int32 len, IntPtr @string)
+ {
+ unsafe
+ {
+ Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramStringEXT")]
+ public static
+ void NamedProgramString(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess format, Int32 len, IntPtr @string)
+ {
+ unsafe
+ {
+ Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramStringEXT")]
+ public static
+ void NamedProgramString(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess format, Int32 len, [In, Out] object @string)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ @string_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramStringEXT")]
+ public static
+ void NamedProgramString(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess format, Int32 len, [In, Out] object @string)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ @string_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")]
+ public static
+ void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Double x, Double y, Double z, Double w)
+ {
+ Delegates.glNamedProgramLocalParameter4dEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")]
+ public static
+ void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Double x, Double y, Double z, Double w)
+ {
+ Delegates.glNamedProgramLocalParameter4dEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")]
+ public static
+ void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Double[] @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")]
+ public static
+ void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Double[] @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")]
+ public static
+ void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, ref Double @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")]
+ public static
+ void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, ref Double @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")]
+ public static
+ unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Double* @params)
+ {
+ Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")]
+ public static
+ unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Double* @params)
+ {
+ Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")]
+ public static
+ void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Single x, Single y, Single z, Single w)
+ {
+ Delegates.glNamedProgramLocalParameter4fEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")]
+ public static
+ void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Single x, Single y, Single z, Single w)
+ {
+ Delegates.glNamedProgramLocalParameter4fEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")]
+ public static
+ void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")]
+ public static
+ void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")]
+ public static
+ void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, ref Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")]
+ public static
+ void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, ref Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")]
+ public static
+ unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Single* @params)
+ {
+ Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")]
+ public static
+ unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Single* @params)
+ {
+ Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")]
+ public static
+ void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Double[] @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")]
+ public static
+ void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Double[] @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")]
+ public static
+ void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] out Double @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")]
+ public static
+ void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] out Double @params)
+ {
+ unsafe
+ {
+ fixed (Double* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")]
+ public static
+ unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Double* @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")]
+ public static
+ unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Double* @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")]
+ public static
+ void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")]
+ public static
+ void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")]
+ public static
+ void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")]
+ public static
+ void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] out Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")]
+ public static
+ unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Single* @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")]
+ public static
+ unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Single* @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramivEXT")]
+ public static
+ void GetNamedProgram(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramivEXT")]
+ public static
+ void GetNamedProgram(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramivEXT")]
+ public static
+ void GetNamedProgram(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramivEXT")]
+ public static
+ void GetNamedProgram(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramivEXT")]
+ public static
+ unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramivEXT")]
+ public static
+ unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramStringEXT")]
+ public static
+ void GetNamedProgramString(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] IntPtr @string)
+ {
+ unsafe
+ {
+ Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (IntPtr)@string);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramStringEXT")]
+ public static
+ void GetNamedProgramString(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] IntPtr @string)
+ {
+ unsafe
+ {
+ Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (IntPtr)@string);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramStringEXT")]
+ public static
+ void GetNamedProgramString(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [In, Out] object @string)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ @string_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramStringEXT")]
+ public static
+ void GetNamedProgramString(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [In, Out] object @string)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle @string_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@string, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (OpenTK.Graphics.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ @string_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")]
+ public static
+ void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")]
+ public static
+ void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Int32 count, Single[] @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")]
+ public static
+ void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, ref Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")]
+ public static
+ void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Int32 count, ref Single @params)
+ {
+ unsafe
+ {
+ fixed (Single* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")]
+ public static
+ unsafe void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, Single* @params)
+ {
+ Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")]
+ public static
+ unsafe void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Int32 count, Single* @params)
+ {
+ Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4iEXT")]
+ public static
+ void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w)
+ {
+ Delegates.glNamedProgramLocalParameterI4iEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")]
+ public static
+ void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParameterI4ivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")]
+ public static
+ void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParameterI4ivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")]
+ public static
+ unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32* @params)
+ {
+ Delegates.glNamedProgramLocalParameterI4ivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")]
+ public static
+ void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParametersI4ivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")]
+ public static
+ void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParametersI4ivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")]
+ public static
+ unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, Int32* @params)
+ {
+ Delegates.glNamedProgramLocalParametersI4ivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uiEXT")]
+ public static
+ void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w)
+ {
+ Delegates.glNamedProgramLocalParameterI4uiEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uiEXT")]
+ public static
+ void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w)
+ {
+ Delegates.glNamedProgramLocalParameterI4uiEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")]
+ public static
+ void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParameterI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")]
+ public static
+ void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParameterI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")]
+ public static
+ void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, ref UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParameterI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")]
+ public static
+ void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParameterI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")]
+ public static
+ unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, UInt32* @params)
+ {
+ Delegates.glNamedProgramLocalParameterI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")]
+ public static
+ unsafe void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Int32* @params)
+ {
+ Delegates.glNamedProgramLocalParameterI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")]
+ public static
+ void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParametersI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")]
+ public static
+ void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Int32 count, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glNamedProgramLocalParametersI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")]
+ public static
+ void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, ref UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParametersI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")]
+ public static
+ void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Int32 count, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glNamedProgramLocalParametersI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")]
+ public static
+ unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, UInt32* @params)
+ {
+ Delegates.glNamedProgramLocalParametersI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")]
+ public static
+ unsafe void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, Int32 count, Int32* @params)
+ {
+ Delegates.glNamedProgramLocalParametersI4uivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")]
+ public static
+ void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterIivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")]
+ public static
+ void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedProgramLocalParameterIivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")]
+ public static
+ unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterIivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")]
+ public static
+ void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterIuivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")]
+ public static
+ void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterIuivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")]
+ public static
+ void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] out UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedProgramLocalParameterIuivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")]
+ public static
+ void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedProgramLocalParameterIuivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")]
+ public static
+ unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] UInt32* @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterIuivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")]
+ public static
+ unsafe void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.ExtDirectStateAccess target, Int32 index, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedProgramLocalParameterIuivEXT((UInt32)program, (OpenTK.Graphics.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterIivEXT")]
+ public static
+ void TextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterIivEXT")]
+ public static
+ void TextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterIivEXT")]
+ public static
+ unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params)
+ {
+ Delegates.glTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterIuivEXT")]
+ public static
+ void TextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterIuivEXT")]
+ public static
+ void TextureParameterI(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterIuivEXT")]
+ public static
+ void TextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterIuivEXT")]
+ public static
+ void TextureParameterI(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterIuivEXT")]
+ public static
+ unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params)
+ {
+ Delegates.glTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureParameterIuivEXT")]
+ public static
+ unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params)
+ {
+ Delegates.glTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterIivEXT")]
+ public static
+ void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterIivEXT")]
+ public static
+ void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterIivEXT")]
+ public static
+ unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")]
+ public static
+ void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glGetTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")]
+ public static
+ void GetTextureParameterI(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")]
+ public static
+ void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")]
+ public static
+ void GetTextureParameterI(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")]
+ public static
+ unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params)
+ {
+ Delegates.glGetTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")]
+ public static
+ unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")]
+ public static
+ void MultiTexParameterIv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")]
+ public static
+ void MultiTexParameterIv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")]
+ public static
+ void MultiTexParameterIv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")]
+ public static
+ void MultiTexParameterIv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, ref Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")]
+ public static
+ unsafe void MultiTexParameterIv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params)
+ {
+ Delegates.glMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")]
+ public static
+ unsafe void MultiTexParameterIv(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params)
+ {
+ Delegates.glMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.TextureParameterName)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")]
+ public static
+ void GetMultiTexParameterI(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32[] @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")]
+ public static
+ void GetMultiTexParameterI(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")]
+ public static
+ void GetMultiTexParameterI(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out UInt32 @params)
+ {
+ unsafe
+ {
+ fixed (UInt32* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")]
+ public static
+ void GetMultiTexParameterI(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")]
+ public static
+ unsafe void GetMultiTexParameterI(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params)
+ {
+ Delegates.glGetMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")]
+ public static
+ unsafe void GetMultiTexParameterI(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params)
+ {
+ Delegates.glGetMultiTexParameterIuivEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.GetTextureParameter)pname, (UInt32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1fEXT")]
+ public static
+ void ProgramUniform1(UInt32 program, Int32 location, Single v0)
+ {
+ Delegates.glProgramUniform1fEXT((UInt32)program, (Int32)location, (Single)v0);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1fEXT")]
+ public static
+ void ProgramUniform1(Int32 program, Int32 location, Single v0)
+ {
+ Delegates.glProgramUniform1fEXT((UInt32)program, (Int32)location, (Single)v0);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2fEXT")]
+ public static
+ void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1)
+ {
+ Delegates.glProgramUniform2fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2fEXT")]
+ public static
+ void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1)
+ {
+ Delegates.glProgramUniform2fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3fEXT")]
+ public static
+ void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2)
+ {
+ Delegates.glProgramUniform3fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3fEXT")]
+ public static
+ void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2)
+ {
+ Delegates.glProgramUniform3fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4fEXT")]
+ public static
+ void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3)
+ {
+ Delegates.glProgramUniform4fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4fEXT")]
+ public static
+ void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3)
+ {
+ Delegates.glProgramUniform4fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1iEXT")]
+ public static
+ void ProgramUniform1(UInt32 program, Int32 location, Int32 v0)
+ {
+ Delegates.glProgramUniform1iEXT((UInt32)program, (Int32)location, (Int32)v0);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2iEXT")]
+ public static
+ void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1)
+ {
+ Delegates.glProgramUniform2iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3iEXT")]
+ public static
+ void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2)
+ {
+ Delegates.glProgramUniform3iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4iEXT")]
+ public static
+ void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3)
+ {
+ Delegates.glProgramUniform4iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1fvEXT")]
+ public static
+ void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1fvEXT")]
+ public static
+ void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1fvEXT")]
+ public static
+ void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1fvEXT")]
+ public static
+ void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1fvEXT")]
+ public static
+ unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Single* value)
+ {
+ Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1fvEXT")]
+ public static
+ unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Single* value)
+ {
+ Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2fvEXT")]
+ public static
+ void ProgramUniform2v(UInt32 program, Int32 location, Int32 count, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2fvEXT")]
+ public static
+ void ProgramUniform2v(Int32 program, Int32 location, Int32 count, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2fvEXT")]
+ public static
+ void ProgramUniform2v(UInt32 program, Int32 location, Int32 count, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2fvEXT")]
+ public static
+ void ProgramUniform2v(Int32 program, Int32 location, Int32 count, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2fvEXT")]
+ public static
+ unsafe void ProgramUniform2v(UInt32 program, Int32 location, Int32 count, Single* value)
+ {
+ Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2fvEXT")]
+ public static
+ unsafe void ProgramUniform2v(Int32 program, Int32 location, Int32 count, Single* value)
+ {
+ Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3fvEXT")]
+ public static
+ void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3fvEXT")]
+ public static
+ void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3fvEXT")]
+ public static
+ void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3fvEXT")]
+ public static
+ void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3fvEXT")]
+ public static
+ unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Single* value)
+ {
+ Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3fvEXT")]
+ public static
+ unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Single* value)
+ {
+ Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4fvEXT")]
+ public static
+ void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4fvEXT")]
+ public static
+ void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4fvEXT")]
+ public static
+ void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4fvEXT")]
+ public static
+ void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4fvEXT")]
+ public static
+ unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Single* value)
+ {
+ Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4fvEXT")]
+ public static
+ unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Single* value)
+ {
+ Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1ivEXT")]
+ public static
+ void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1ivEXT")]
+ public static
+ void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1ivEXT")]
+ public static
+ unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2ivEXT")]
+ public static
+ void ProgramUniform2v(UInt32 program, Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2ivEXT")]
+ public static
+ void ProgramUniform2v(UInt32 program, Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2ivEXT")]
+ public static
+ unsafe void ProgramUniform2v(UInt32 program, Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3ivEXT")]
+ public static
+ void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3ivEXT")]
+ public static
+ void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3ivEXT")]
+ public static
+ unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4ivEXT")]
+ public static
+ void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4ivEXT")]
+ public static
+ void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4ivEXT")]
+ public static
+ unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")]
+ public static
+ void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")]
+ public static
+ void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")]
+ public static
+ void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")]
+ public static
+ void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")]
+ public static
+ void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")]
+ public static
+ void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")]
+ public static
+ void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")]
+ public static
+ void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")]
+ public static
+ void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")]
+ public static
+ void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")]
+ public static
+ void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")]
+ public static
+ void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")]
+ public static
+ void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")]
+ public static
+ void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")]
+ public static
+ void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")]
+ public static
+ void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")]
+ public static
+ void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")]
+ public static
+ void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")]
+ public static
+ void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")]
+ public static
+ void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")]
+ public static
+ void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")]
+ public static
+ void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")]
+ public static
+ void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")]
+ public static
+ void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")]
+ public static
+ void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")]
+ public static
+ void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")]
+ public static
+ void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")]
+ public static
+ void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")]
+ public static
+ void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")]
+ public static
+ void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")]
+ public static
+ void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")]
+ public static
+ void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")]
+ public static
+ void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")]
+ public static
+ void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single[] value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = value)
+ {
+ Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")]
+ public static
+ void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")]
+ public static
+ void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, ref Single value)
+ {
+ unsafe
+ {
+ fixed (Single* value_ptr = &value)
+ {
+ Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")]
+ public static
+ unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, Single* value)
+ {
+ Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1uiEXT")]
+ public static
+ void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0)
+ {
+ Delegates.glProgramUniform1uiEXT((UInt32)program, (Int32)location, (UInt32)v0);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1uiEXT")]
+ public static
+ void ProgramUniform1(Int32 program, Int32 location, Int32 v0)
+ {
+ Delegates.glProgramUniform1uiEXT((UInt32)program, (Int32)location, (UInt32)v0);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2uiEXT")]
+ public static
+ void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1)
+ {
+ Delegates.glProgramUniform2uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2uiEXT")]
+ public static
+ void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1)
+ {
+ Delegates.glProgramUniform2uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3uiEXT")]
+ public static
+ void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2)
+ {
+ Delegates.glProgramUniform3uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3uiEXT")]
+ public static
+ void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2)
+ {
+ Delegates.glProgramUniform3uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4uiEXT")]
+ public static
+ void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3)
+ {
+ Delegates.glProgramUniform4uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4uiEXT")]
+ public static
+ void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3)
+ {
+ Delegates.glProgramUniform4uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1uivEXT")]
+ public static
+ void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32[] value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = value)
+ {
+ Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1uivEXT")]
+ public static
+ void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1uivEXT")]
+ public static
+ void ProgramUniform1(UInt32 program, Int32 location, Int32 count, ref UInt32 value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1uivEXT")]
+ public static
+ void ProgramUniform1(Int32 program, Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1uivEXT")]
+ public static
+ unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, UInt32* value)
+ {
+ Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform1uivEXT")]
+ public static
+ unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2uivEXT")]
+ public static
+ void ProgramUniform2v(UInt32 program, Int32 location, Int32 count, UInt32[] value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = value)
+ {
+ Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2uivEXT")]
+ public static
+ void ProgramUniform2v(Int32 program, Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2uivEXT")]
+ public static
+ void ProgramUniform2v(UInt32 program, Int32 location, Int32 count, ref UInt32 value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2uivEXT")]
+ public static
+ void ProgramUniform2v(Int32 program, Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2uivEXT")]
+ public static
+ unsafe void ProgramUniform2v(UInt32 program, Int32 location, Int32 count, UInt32* value)
+ {
+ Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform2uivEXT")]
+ public static
+ unsafe void ProgramUniform2v(Int32 program, Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3uivEXT")]
+ public static
+ void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32[] value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = value)
+ {
+ Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3uivEXT")]
+ public static
+ void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3uivEXT")]
+ public static
+ void ProgramUniform3(UInt32 program, Int32 location, Int32 count, ref UInt32 value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3uivEXT")]
+ public static
+ void ProgramUniform3(Int32 program, Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3uivEXT")]
+ public static
+ unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, UInt32* value)
+ {
+ Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform3uivEXT")]
+ public static
+ unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4uivEXT")]
+ public static
+ void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32[] value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = value)
+ {
+ Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4uivEXT")]
+ public static
+ void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32[] value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = value)
+ {
+ Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4uivEXT")]
+ public static
+ void ProgramUniform4(UInt32 program, Int32 location, Int32 count, ref UInt32 value)
+ {
+ unsafe
+ {
+ fixed (UInt32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4uivEXT")]
+ public static
+ void ProgramUniform4(Int32 program, Int32 location, Int32 count, ref Int32 value)
+ {
+ unsafe
+ {
+ fixed (Int32* value_ptr = &value)
+ {
+ Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4uivEXT")]
+ public static
+ unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, UInt32* value)
+ {
+ Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glProgramUniform4uivEXT")]
+ public static
+ unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, Int32* value)
+ {
+ Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedBufferDataEXT")]
+ public static
+ void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.ExtDirectStateAccess usage)
+ {
+ unsafe
+ {
+ Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ExtDirectStateAccess)usage);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedBufferDataEXT")]
+ public static
+ void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.ExtDirectStateAccess usage)
+ {
+ unsafe
+ {
+ Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ExtDirectStateAccess)usage);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedBufferDataEXT")]
+ public static
+ void NamedBufferData(UInt32 buffer, IntPtr size, [In, Out] object data, OpenTK.Graphics.ExtDirectStateAccess usage)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ExtDirectStateAccess)usage);
+ }
+ finally
+ {
+ data_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedBufferDataEXT")]
+ public static
+ void NamedBufferData(Int32 buffer, IntPtr size, [In, Out] object data, OpenTK.Graphics.ExtDirectStateAccess usage)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ExtDirectStateAccess)usage);
+ }
+ finally
+ {
+ data_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedBufferSubDataEXT")]
+ public static
+ void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data)
+ {
+ unsafe
+ {
+ Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedBufferSubDataEXT")]
+ public static
+ void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, IntPtr data)
+ {
+ unsafe
+ {
+ Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedBufferSubDataEXT")]
+ public static
+ void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [In, Out] object data)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ data_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedBufferSubDataEXT")]
+ public static
+ void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [In, Out] object data)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ data_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMapNamedBufferEXT")]
+ public static
+ unsafe IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.ExtDirectStateAccess access)
+ {
+ return Delegates.glMapNamedBufferEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)access);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMapNamedBufferEXT")]
+ public static
+ unsafe IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.ExtDirectStateAccess access)
+ {
+ return Delegates.glMapNamedBufferEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)access);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glUnmapNamedBufferEXT")]
+ public static
+ bool UnmapNamedBuffer(UInt32 buffer)
+ {
+ return Delegates.glUnmapNamedBufferEXT((UInt32)buffer);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glUnmapNamedBufferEXT")]
+ public static
+ bool UnmapNamedBuffer(Int32 buffer)
+ {
+ return Delegates.glUnmapNamedBufferEXT((UInt32)buffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")]
+ public static
+ void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")]
+ public static
+ void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")]
+ public static
+ void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")]
+ public static
+ void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")]
+ public static
+ unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")]
+ public static
+ unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")]
+ public static
+ void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] IntPtr @params)
+ {
+ unsafe
+ {
+ Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (IntPtr)@params);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")]
+ public static
+ void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] IntPtr @params)
+ {
+ unsafe
+ {
+ Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (IntPtr)@params);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")]
+ public static
+ void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [In, Out] object @params)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ @params_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")]
+ public static
+ void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [In, Out] object @params)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle @params_ptr = System.Runtime.InteropServices.GCHandle.Alloc(@params, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ @params_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")]
+ public static
+ void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [Out] IntPtr data)
+ {
+ unsafe
+ {
+ Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data);
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")]
+ public static
+ void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [Out] IntPtr data)
+ {
+ unsafe
+ {
+ Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data);
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")]
+ public static
+ void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [In, Out] object data)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ data_ptr.Free();
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")]
+ public static
+ void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [In, Out] object data)
+ {
+ unsafe
+ {
+ System.Runtime.InteropServices.GCHandle data_ptr = System.Runtime.InteropServices.GCHandle.Alloc(data, System.Runtime.InteropServices.GCHandleType.Pinned);
+ try
+ {
+ Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject());
+ }
+ finally
+ {
+ data_ptr.Free();
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureBufferEXT")]
+ public static
+ void TextureBuffer(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ExtDirectStateAccess internalformat, UInt32 buffer)
+ {
+ Delegates.glTextureBufferEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (UInt32)buffer);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureBufferEXT")]
+ public static
+ void TextureBuffer(Int32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 buffer)
+ {
+ Delegates.glTextureBufferEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (UInt32)buffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexBufferEXT")]
+ public static
+ void MultiTexBuffer(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ExtDirectStateAccess internalformat, UInt32 buffer)
+ {
+ Delegates.glMultiTexBufferEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (UInt32)buffer);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexBufferEXT")]
+ public static
+ void MultiTexBuffer(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 buffer)
+ {
+ Delegates.glMultiTexBufferEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.ExtDirectStateAccess)internalformat, (UInt32)buffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")]
+ public static
+ void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height)
+ {
+ Delegates.glNamedRenderbufferStorageEXT((UInt32)renderbuffer, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")]
+ public static
+ void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height)
+ {
+ Delegates.glNamedRenderbufferStorageEXT((UInt32)renderbuffer, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")]
+ public static
+ void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")]
+ public static
+ void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")]
+ public static
+ void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.RenderbufferParameterName pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")]
+ public static
+ void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.RenderbufferParameterName pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")]
+ public static
+ unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")]
+ public static
+ unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.RenderbufferParameterName)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")]
+ public static
+ OpenTK.Graphics.ExtDirectStateAccess CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.FramebufferTarget target)
+ {
+ return Delegates.glCheckNamedFramebufferStatusEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferTarget)target);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")]
+ public static
+ OpenTK.Graphics.ExtDirectStateAccess CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.FramebufferTarget target)
+ {
+ return Delegates.glCheckNamedFramebufferStatusEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferTarget)target);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")]
+ public static
+ void NamedFramebufferTexture1D(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level)
+ {
+ Delegates.glNamedFramebufferTexture1DEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")]
+ public static
+ void NamedFramebufferTexture1D(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level)
+ {
+ Delegates.glNamedFramebufferTexture1DEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")]
+ public static
+ void NamedFramebufferTexture2D(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level)
+ {
+ Delegates.glNamedFramebufferTexture2DEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")]
+ public static
+ void NamedFramebufferTexture2D(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level)
+ {
+ Delegates.glNamedFramebufferTexture2DEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")]
+ public static
+ void NamedFramebufferTexture3D(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset)
+ {
+ Delegates.glNamedFramebufferTexture3DEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")]
+ public static
+ void NamedFramebufferTexture3D(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset)
+ {
+ Delegates.glNamedFramebufferTexture3DEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")]
+ public static
+ void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer)
+ {
+ Delegates.glNamedFramebufferRenderbufferEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")]
+ public static
+ void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, Int32 renderbuffer)
+ {
+ Delegates.glNamedFramebufferRenderbufferEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")]
+ public static
+ void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")]
+ public static
+ void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")]
+ public static
+ void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")]
+ public static
+ void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")]
+ public static
+ unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")]
+ public static
+ unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params)
+ {
+ Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")]
+ public static
+ void GenerateTextureMipmap(UInt32 texture, OpenTK.Graphics.TextureTarget target)
+ {
+ Delegates.glGenerateTextureMipmapEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")]
+ public static
+ void GenerateTextureMipmap(Int32 texture, OpenTK.Graphics.TextureTarget target)
+ {
+ Delegates.glGenerateTextureMipmapEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGenerateMultiTexMipmapEXT")]
+ public static
+ void GenerateMultiTexMipmap(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target)
+ {
+ Delegates.glGenerateMultiTexMipmapEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")]
+ public static
+ void FramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.DrawBufferMode mode)
+ {
+ Delegates.glFramebufferDrawBufferEXT((UInt32)framebuffer, (OpenTK.Graphics.DrawBufferMode)mode);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")]
+ public static
+ void FramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.DrawBufferMode mode)
+ {
+ Delegates.glFramebufferDrawBufferEXT((UInt32)framebuffer, (OpenTK.Graphics.DrawBufferMode)mode);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")]
+ public static
+ void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.DrawBufferMode[] bufs)
+ {
+ unsafe
+ {
+ fixed (OpenTK.Graphics.DrawBufferMode* bufs_ptr = bufs)
+ {
+ Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.DrawBufferMode*)bufs_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")]
+ public static
+ void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.DrawBufferMode[] bufs)
+ {
+ unsafe
+ {
+ fixed (OpenTK.Graphics.DrawBufferMode* bufs_ptr = bufs)
+ {
+ Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.DrawBufferMode*)bufs_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")]
+ public static
+ void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.DrawBufferMode bufs)
+ {
+ unsafe
+ {
+ fixed (OpenTK.Graphics.DrawBufferMode* bufs_ptr = &bufs)
+ {
+ Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.DrawBufferMode*)bufs_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")]
+ public static
+ void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.DrawBufferMode bufs)
+ {
+ unsafe
+ {
+ fixed (OpenTK.Graphics.DrawBufferMode* bufs_ptr = &bufs)
+ {
+ Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.DrawBufferMode*)bufs_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")]
+ public static
+ unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.DrawBufferMode* bufs)
+ {
+ Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.DrawBufferMode*)bufs);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")]
+ public static
+ unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.DrawBufferMode* bufs)
+ {
+ Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.DrawBufferMode*)bufs);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferReadBufferEXT")]
+ public static
+ void FramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.ReadBufferMode mode)
+ {
+ Delegates.glFramebufferReadBufferEXT((UInt32)framebuffer, (OpenTK.Graphics.ReadBufferMode)mode);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glFramebufferReadBufferEXT")]
+ public static
+ void FramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.ReadBufferMode mode)
+ {
+ Delegates.glFramebufferReadBufferEXT((UInt32)framebuffer, (OpenTK.Graphics.ReadBufferMode)mode);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")]
+ public static
+ void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")]
+ public static
+ void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32[] @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = @params)
+ {
+ Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")]
+ public static
+ void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")]
+ public static
+ void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] out Int32 @params)
+ {
+ unsafe
+ {
+ fixed (Int32* @params_ptr = &@params)
+ {
+ Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params_ptr);
+ @params = *@params_ptr;
+ }
+ }
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")]
+ public static
+ unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params)
+ {
+ Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")]
+ public static
+ unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params)
+ {
+ Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.ExtDirectStateAccess)pname, (Int32*)@params);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")]
+ public static
+ void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height)
+ {
+ Delegates.glNamedRenderbufferStorageMultisampleEXT((UInt32)renderbuffer, (Int32)samples, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")]
+ public static
+ void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height)
+ {
+ Delegates.glNamedRenderbufferStorageMultisampleEXT((UInt32)renderbuffer, (Int32)samples, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")]
+ public static
+ void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height)
+ {
+ Delegates.glNamedRenderbufferStorageMultisampleCoverageEXT((UInt32)renderbuffer, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")]
+ public static
+ void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height)
+ {
+ Delegates.glNamedRenderbufferStorageMultisampleCoverageEXT((UInt32)renderbuffer, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (Int32)height);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")]
+ public static
+ void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level)
+ {
+ Delegates.glNamedFramebufferTextureEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")]
+ public static
+ void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level)
+ {
+ Delegates.glNamedFramebufferTextureEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")]
+ public static
+ void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer)
+ {
+ Delegates.glNamedFramebufferTextureLayerEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")]
+ public static
+ void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer)
+ {
+ Delegates.glNamedFramebufferTextureLayerEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")]
+ public static
+ void NamedFramebufferTextureFace(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.TextureTarget face)
+ {
+ Delegates.glNamedFramebufferTextureFaceEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.TextureTarget)face);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")]
+ public static
+ void NamedFramebufferTextureFace(Int32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.TextureTarget face)
+ {
+ Delegates.glNamedFramebufferTextureFaceEXT((UInt32)framebuffer, (OpenTK.Graphics.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.TextureTarget)face);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureRenderbufferEXT")]
+ public static
+ void TextureRenderbuffer(UInt32 texture, OpenTK.Graphics.TextureTarget target, UInt32 renderbuffer)
+ {
+ Delegates.glTextureRenderbufferEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (UInt32)renderbuffer);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glTextureRenderbufferEXT")]
+ public static
+ void TextureRenderbuffer(Int32 texture, OpenTK.Graphics.TextureTarget target, Int32 renderbuffer)
+ {
+ Delegates.glTextureRenderbufferEXT((UInt32)texture, (OpenTK.Graphics.TextureTarget)target, (UInt32)renderbuffer);
+ }
+
+ [System.CLSCompliant(false)]
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")]
+ public static
+ void MultiTexRenderbuffer(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, UInt32 renderbuffer)
+ {
+ Delegates.glMultiTexRenderbufferEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (UInt32)renderbuffer);
+ }
+
+ [AutoGenerated(Category = "ExtDirectStateAccess", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")]
+ public static
+ void MultiTexRenderbuffer(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 renderbuffer)
+ {
+ Delegates.glMultiTexRenderbufferEXT((OpenTK.Graphics.TextureUnit)texunit, (OpenTK.Graphics.TextureTarget)target, (UInt32)renderbuffer);
+ }
+
}
public static partial class Sgis
{
+ [AutoGenerated(Category = "SgisTextureFilter4", Version = "1.0", EntryPoint = "glGetTexFilterFuncSGIS")]
public static
- void GetTexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, [Out] Single[] weights)
+ void GetTexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.SgisTextureFilter4 filter, [Out] Single[] weights)
{
unsafe
{
fixed (Single* weights_ptr = weights)
{
- Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Single*)weights_ptr);
+ Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.SgisTextureFilter4)filter, (Single*)weights_ptr);
}
}
}
+ [AutoGenerated(Category = "SgisTextureFilter4", Version = "1.0", EntryPoint = "glGetTexFilterFuncSGIS")]
public static
- void GetTexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, [Out] out Single weights)
+ void GetTexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.SgisTextureFilter4 filter, [Out] out Single weights)
{
unsafe
{
fixed (Single* weights_ptr = &weights)
{
- Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Single*)weights_ptr);
+ Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.SgisTextureFilter4)filter, (Single*)weights_ptr);
weights = *weights_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisTextureFilter4", Version = "1.0", EntryPoint = "glGetTexFilterFuncSGIS")]
public static
- unsafe void GetTexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, [Out] Single* weights)
+ unsafe void GetTexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.SgisTextureFilter4 filter, [Out] Single* weights)
{
- Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Single*)weights);
+ Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.SgisTextureFilter4)filter, (Single*)weights);
}
+ [AutoGenerated(Category = "SgisTextureFilter4", Version = "1.0", EntryPoint = "glTexFilterFuncSGIS")]
public static
- void TexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, Int32 n, Single[] weights)
+ void TexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.SgisTextureFilter4 filter, Int32 n, Single[] weights)
{
unsafe
{
fixed (Single* weights_ptr = weights)
{
- Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Int32)n, (Single*)weights_ptr);
+ Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.SgisTextureFilter4)filter, (Int32)n, (Single*)weights_ptr);
}
}
}
+ [AutoGenerated(Category = "SgisTextureFilter4", Version = "1.0", EntryPoint = "glTexFilterFuncSGIS")]
public static
- void TexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, Int32 n, ref Single weights)
+ void TexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.SgisTextureFilter4 filter, Int32 n, ref Single weights)
{
unsafe
{
fixed (Single* weights_ptr = &weights)
{
- Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Int32)n, (Single*)weights_ptr);
+ Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.SgisTextureFilter4)filter, (Int32)n, (Single*)weights_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisTextureFilter4", Version = "1.0", EntryPoint = "glTexFilterFuncSGIS")]
public static
- unsafe void TexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, Int32 n, Single* weights)
+ unsafe void TexFilterFunc(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.SgisTextureFilter4 filter, Int32 n, Single* weights)
{
- Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.All)filter, (Int32)n, (Single*)weights);
+ Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.TextureTarget)target, (OpenTK.Graphics.SgisTextureFilter4)filter, (Int32)n, (Single*)weights);
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glPixelTexGenParameteriSGIS")]
public static
- void PixelTexGenParameter(OpenTK.Graphics.All pname, Int32 param)
+ void PixelTexGenParameter(OpenTK.Graphics.SgisPixelTexture pname, Int32 param)
{
- Delegates.glPixelTexGenParameteriSGIS((OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glPixelTexGenParameteriSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Int32)param);
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glPixelTexGenParameterivSGIS")]
public static
- void PixelTexGenParameterv(OpenTK.Graphics.All pname, Int32[] @params)
+ void PixelTexGenParameterv(OpenTK.Graphics.SgisPixelTexture pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glPixelTexGenParameterivSGIS")]
public static
- void PixelTexGenParameterv(OpenTK.Graphics.All pname, ref Int32 @params)
+ void PixelTexGenParameterv(OpenTK.Graphics.SgisPixelTexture pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glPixelTexGenParameterivSGIS")]
public static
- unsafe void PixelTexGenParameterv(OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void PixelTexGenParameterv(OpenTK.Graphics.SgisPixelTexture pname, Int32* @params)
{
- Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glPixelTexGenParameterfSGIS")]
public static
- void PixelTexGenParameter(OpenTK.Graphics.All pname, Single param)
+ void PixelTexGenParameter(OpenTK.Graphics.SgisPixelTexture pname, Single param)
{
- Delegates.glPixelTexGenParameterfSGIS((OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glPixelTexGenParameterfSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Single)param);
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glPixelTexGenParameterfvSGIS")]
public static
- void PixelTexGenParameterv(OpenTK.Graphics.All pname, Single[] @params)
+ void PixelTexGenParameterv(OpenTK.Graphics.SgisPixelTexture pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glPixelTexGenParameterfvSGIS")]
public static
- void PixelTexGenParameterv(OpenTK.Graphics.All pname, ref Single @params)
+ void PixelTexGenParameterv(OpenTK.Graphics.SgisPixelTexture pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glPixelTexGenParameterfvSGIS")]
public static
- unsafe void PixelTexGenParameterv(OpenTK.Graphics.All pname, Single* @params)
+ unsafe void PixelTexGenParameterv(OpenTK.Graphics.SgisPixelTexture pname, Single* @params)
{
- Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glGetPixelTexGenParameterivSGIS")]
public static
- void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetPixelTexGenParameter(OpenTK.Graphics.SgisPixelTexture pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glGetPixelTexGenParameterivSGIS")]
public static
- void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetPixelTexGenParameter(OpenTK.Graphics.SgisPixelTexture pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glGetPixelTexGenParameterivSGIS")]
public static
- unsafe void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetPixelTexGenParameter(OpenTK.Graphics.SgisPixelTexture pname, [Out] Int32* @params)
{
- Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glGetPixelTexGenParameterfvSGIS")]
public static
- void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetPixelTexGenParameter(OpenTK.Graphics.SgisPixelTexture pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glGetPixelTexGenParameterfvSGIS")]
public static
- void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetPixelTexGenParameter(OpenTK.Graphics.SgisPixelTexture pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisPixelTexture", Version = "1.0", EntryPoint = "glGetPixelTexGenParameterfvSGIS")]
public static
- unsafe void GetPixelTexGenParameter(OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetPixelTexGenParameter(OpenTK.Graphics.SgisPixelTexture pname, [Out] Single* @params)
{
- Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.SgisPixelTexture)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgisTexture4D", Version = "1.0", EntryPoint = "glTexImage4DSGIS")]
public static
void TexImage4D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -33851,6 +46409,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisTexture4D", Version = "1.0", EntryPoint = "glTexImage4DSGIS")]
public static
void TexImage4D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -33868,6 +46427,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisTexture4D", Version = "1.0", EntryPoint = "glTexSubImage4DSGIS")]
public static
void TexSubImage4D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels)
{
@@ -33877,6 +46437,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisTexture4D", Version = "1.0", EntryPoint = "glTexSubImage4DSGIS")]
public static
void TexSubImage4D(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 woffset, Int32 width, Int32 height, Int32 depth, Int32 size4d, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object pixels)
{
@@ -33894,6 +46455,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisDetailTexture", Version = "1.0", EntryPoint = "glDetailTexFuncSGIS")]
public static
void DetailTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, Single[] points)
{
@@ -33906,6 +46468,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisDetailTexture", Version = "1.0", EntryPoint = "glDetailTexFuncSGIS")]
public static
void DetailTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, ref Single points)
{
@@ -33919,12 +46482,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisDetailTexture", Version = "1.0", EntryPoint = "glDetailTexFuncSGIS")]
public static
unsafe void DetailTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, Single* points)
{
Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)n, (Single*)points);
}
+ [AutoGenerated(Category = "SgisDetailTexture", Version = "1.0", EntryPoint = "glGetDetailTexFuncSGIS")]
public static
void GetDetailTexFunc(OpenTK.Graphics.TextureTarget target, [Out] Single[] points)
{
@@ -33937,6 +46502,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisDetailTexture", Version = "1.0", EntryPoint = "glGetDetailTexFuncSGIS")]
public static
void GetDetailTexFunc(OpenTK.Graphics.TextureTarget target, [Out] out Single points)
{
@@ -33951,12 +46517,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisDetailTexture", Version = "1.0", EntryPoint = "glGetDetailTexFuncSGIS")]
public static
unsafe void GetDetailTexFunc(OpenTK.Graphics.TextureTarget target, [Out] Single* points)
{
Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Single*)points);
}
+ [AutoGenerated(Category = "SgisSharpenTexture", Version = "1.0", EntryPoint = "glSharpenTexFuncSGIS")]
public static
void SharpenTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, Single[] points)
{
@@ -33969,6 +46537,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisSharpenTexture", Version = "1.0", EntryPoint = "glSharpenTexFuncSGIS")]
public static
void SharpenTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, ref Single points)
{
@@ -33982,12 +46551,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisSharpenTexture", Version = "1.0", EntryPoint = "glSharpenTexFuncSGIS")]
public static
unsafe void SharpenTexFunc(OpenTK.Graphics.TextureTarget target, Int32 n, Single* points)
{
Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Int32)n, (Single*)points);
}
+ [AutoGenerated(Category = "SgisSharpenTexture", Version = "1.0", EntryPoint = "glGetSharpenTexFuncSGIS")]
public static
void GetSharpenTexFunc(OpenTK.Graphics.TextureTarget target, [Out] Single[] points)
{
@@ -34000,6 +46571,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisSharpenTexture", Version = "1.0", EntryPoint = "glGetSharpenTexFuncSGIS")]
public static
void GetSharpenTexFunc(OpenTK.Graphics.TextureTarget target, [Out] out Single points)
{
@@ -34014,61 +46586,69 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisSharpenTexture", Version = "1.0", EntryPoint = "glGetSharpenTexFuncSGIS")]
public static
unsafe void GetSharpenTexFunc(OpenTK.Graphics.TextureTarget target, [Out] Single* points)
{
Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.TextureTarget)target, (Single*)points);
}
+ [AutoGenerated(Category = "SgisMultisample", Version = "1.1", EntryPoint = "glSampleMaskSGIS")]
public static
void SampleMask(Single value, bool invert)
{
Delegates.glSampleMaskSGIS((Single)value, (bool)invert);
}
+ [AutoGenerated(Category = "SgisMultisample", Version = "1.0", EntryPoint = "glSamplePatternSGIS")]
public static
- void SamplePattern(OpenTK.Graphics.All pattern)
+ void SamplePattern(OpenTK.Graphics.SgisMultisample pattern)
{
- Delegates.glSamplePatternSGIS((OpenTK.Graphics.All)pattern);
+ Delegates.glSamplePatternSGIS((OpenTK.Graphics.SgisMultisample)pattern);
}
+ [AutoGenerated(Category = "SgisPointParameters", Version = "1.0", EntryPoint = "glPointParameterfSGIS")]
public static
- void PointParameter(OpenTK.Graphics.All pname, Single param)
+ void PointParameter(OpenTK.Graphics.SgisPointParameters pname, Single param)
{
- Delegates.glPointParameterfSGIS((OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glPointParameterfSGIS((OpenTK.Graphics.SgisPointParameters)pname, (Single)param);
}
+ [AutoGenerated(Category = "SgisPointParameters", Version = "1.0", EntryPoint = "glPointParameterfvSGIS")]
public static
- void PointParameterv(OpenTK.Graphics.All pname, Single[] @params)
+ void PointParameterv(OpenTK.Graphics.SgisPointParameters pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glPointParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPointParameterfvSGIS((OpenTK.Graphics.SgisPointParameters)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgisPointParameters", Version = "1.0", EntryPoint = "glPointParameterfvSGIS")]
public static
- void PointParameterv(OpenTK.Graphics.All pname, ref Single @params)
+ void PointParameterv(OpenTK.Graphics.SgisPointParameters pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glPointParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glPointParameterfvSGIS((OpenTK.Graphics.SgisPointParameters)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisPointParameters", Version = "1.0", EntryPoint = "glPointParameterfvSGIS")]
public static
- unsafe void PointParameterv(OpenTK.Graphics.All pname, Single* @params)
+ unsafe void PointParameterv(OpenTK.Graphics.SgisPointParameters pname, Single* @params)
{
- Delegates.glPointParameterfvSGIS((OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glPointParameterfvSGIS((OpenTK.Graphics.SgisPointParameters)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgisFogFunction", Version = "1.1", EntryPoint = "glFogFuncSGIS")]
public static
void FogFunc(Int32 n, Single[] points)
{
@@ -34081,6 +46661,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisFogFunction", Version = "1.1", EntryPoint = "glFogFuncSGIS")]
public static
void FogFunc(Int32 n, ref Single points)
{
@@ -34094,12 +46675,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisFogFunction", Version = "1.1", EntryPoint = "glFogFuncSGIS")]
public static
unsafe void FogFunc(Int32 n, Single* points)
{
Delegates.glFogFuncSGIS((Int32)n, (Single*)points);
}
+ [AutoGenerated(Category = "SgisFogFunction", Version = "1.1", EntryPoint = "glGetFogFuncSGIS")]
public static
void GetFogFunc([Out] Single[] points)
{
@@ -34112,6 +46695,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgisFogFunction", Version = "1.1", EntryPoint = "glGetFogFuncSGIS")]
public static
void GetFogFunc([Out] out Single points)
{
@@ -34126,12 +46710,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgisFogFunction", Version = "1.1", EntryPoint = "glGetFogFuncSGIS")]
public static
unsafe void GetFogFunc([Out] Single* points)
{
Delegates.glGetFogFuncSGIS((Single*)points);
}
+ [AutoGenerated(Category = "SgisTextureColorMask", Version = "1.1", EntryPoint = "glTextureColorMaskSGIS")]
public static
void TextureColorMask(bool red, bool green, bool blue, bool alpha)
{
@@ -34142,24 +46728,26 @@ namespace OpenTK.Graphics
public static partial class Sgi
{
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glColorTableSGI")]
public static
- void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table)
+ void ColorTable(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table)
{
unsafe
{
- Delegates.glColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
+ Delegates.glColorTableSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
}
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glColorTableSGI")]
public static
- void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
+ void ColorTable(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
{
unsafe
{
System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
+ Delegates.glColorTableSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
}
finally
{
@@ -34168,92 +46756,101 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glColorTableParameterfvSGI")]
public static
- void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params)
+ void ColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glColorTableParameterfvSGI")]
public static
- void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params)
+ void ColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glColorTableParameterfvSGI")]
public static
- unsafe void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params)
+ unsafe void ColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, Single* @params)
{
- Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glColorTableParameterivSGI")]
public static
- void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params)
+ void ColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glColorTableParameterivSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glColorTableParameterivSGI")]
public static
- void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params)
+ void ColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glColorTableParameterivSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glColorTableParameterivSGI")]
public static
- unsafe void ColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void ColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, Int32* @params)
{
- Delegates.glColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glColorTableParameterivSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glCopyColorTableSGI")]
public static
- void CopyColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width)
+ void CopyColorTable(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width)
{
- Delegates.glCopyColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width);
+ Delegates.glCopyColorTableSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width);
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glGetColorTableSGI")]
public static
- void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table)
+ void GetColorTable(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table)
{
unsafe
{
- Delegates.glGetColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
+ Delegates.glGetColorTableSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table);
}
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glGetColorTableSGI")]
public static
- void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
+ void GetColorTable(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [In, Out] object table)
{
unsafe
{
System.Runtime.InteropServices.GCHandle table_ptr = System.Runtime.InteropServices.GCHandle.Alloc(table, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glGetColorTableSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
+ Delegates.glGetColorTableSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.PixelFormat)format, (OpenTK.Graphics.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject());
}
finally
{
@@ -34262,160 +46859,177 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glGetColorTableParameterfvSGI")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glGetColorTableParameterfvSGI")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glGetColorTableParameterfvSGI")]
public static
- unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, [Out] Single* @params)
{
- Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glGetColorTableParameterivSGI")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glGetColorTableParameterivSGI")]
public static
- void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgiColorTable", Version = "1.0", EntryPoint = "glGetColorTableParameterivSGI")]
public static
- unsafe void GetColorTableParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetColorTableParameter(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, [Out] Int32* @params)
{
- Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.SgiColorTable)target, (OpenTK.Graphics.SgiColorTable)pname, (Int32*)@params);
}
}
public static partial class Sgix
{
+ [AutoGenerated(Category = "SgixPixelTexture", Version = "1.0", EntryPoint = "glPixelTexGenSGIX")]
public static
- void PixelTexGen(OpenTK.Graphics.All mode)
+ void PixelTexGen(OpenTK.Graphics.SgixPixelTexture mode)
{
- Delegates.glPixelTexGenSGIX((OpenTK.Graphics.All)mode);
+ Delegates.glPixelTexGenSGIX((OpenTK.Graphics.SgixPixelTexture)mode);
}
+ [AutoGenerated(Category = "SgixSprite", Version = "1.0", EntryPoint = "glSpriteParameterfSGIX")]
public static
- void SpriteParameter(OpenTK.Graphics.All pname, Single param)
+ void SpriteParameter(OpenTK.Graphics.SgixSprite pname, Single param)
{
- Delegates.glSpriteParameterfSGIX((OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glSpriteParameterfSGIX((OpenTK.Graphics.SgixSprite)pname, (Single)param);
}
+ [AutoGenerated(Category = "SgixSprite", Version = "1.0", EntryPoint = "glSpriteParameterfvSGIX")]
public static
- void SpriteParameterv(OpenTK.Graphics.All pname, Single[] @params)
+ void SpriteParameterv(OpenTK.Graphics.SgixSprite pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.SgixSprite)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixSprite", Version = "1.0", EntryPoint = "glSpriteParameterfvSGIX")]
public static
- void SpriteParameterv(OpenTK.Graphics.All pname, ref Single @params)
+ void SpriteParameterv(OpenTK.Graphics.SgixSprite pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.SgixSprite)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixSprite", Version = "1.0", EntryPoint = "glSpriteParameterfvSGIX")]
public static
- unsafe void SpriteParameterv(OpenTK.Graphics.All pname, Single* @params)
+ unsafe void SpriteParameterv(OpenTK.Graphics.SgixSprite pname, Single* @params)
{
- Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.SgixSprite)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgixSprite", Version = "1.0", EntryPoint = "glSpriteParameteriSGIX")]
public static
- void SpriteParameter(OpenTK.Graphics.All pname, Int32 param)
+ void SpriteParameter(OpenTK.Graphics.SgixSprite pname, Int32 param)
{
- Delegates.glSpriteParameteriSGIX((OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glSpriteParameteriSGIX((OpenTK.Graphics.SgixSprite)pname, (Int32)param);
}
+ [AutoGenerated(Category = "SgixSprite", Version = "1.0", EntryPoint = "glSpriteParameterivSGIX")]
public static
- void SpriteParameterv(OpenTK.Graphics.All pname, Int32[] @params)
+ void SpriteParameterv(OpenTK.Graphics.SgixSprite pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.SgixSprite)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixSprite", Version = "1.0", EntryPoint = "glSpriteParameterivSGIX")]
public static
- void SpriteParameterv(OpenTK.Graphics.All pname, ref Int32 @params)
+ void SpriteParameterv(OpenTK.Graphics.SgixSprite pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.SgixSprite)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixSprite", Version = "1.0", EntryPoint = "glSpriteParameterivSGIX")]
public static
- unsafe void SpriteParameterv(OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void SpriteParameterv(OpenTK.Graphics.SgixSprite pname, Int32* @params)
{
- Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.SgixSprite)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glGetInstrumentsSGIX")]
public static
Int32 GetInstruments()
{
return Delegates.glGetInstrumentsSGIX();
}
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glInstrumentsBufferSGIX")]
public static
void InstrumentsBuffer(Int32 size, [Out] Int32[] buffer)
{
@@ -34428,6 +47042,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glInstrumentsBufferSGIX")]
public static
void InstrumentsBuffer(Int32 size, [Out] out Int32 buffer)
{
@@ -34442,12 +47057,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glInstrumentsBufferSGIX")]
public static
unsafe void InstrumentsBuffer(Int32 size, [Out] Int32* buffer)
{
Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer);
}
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glPollInstrumentsSGIX")]
public static
Int32 PollInstruments([Out] Int32[] marker_p)
{
@@ -34460,6 +47077,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glPollInstrumentsSGIX")]
public static
Int32 PollInstruments([Out] out Int32 marker_p)
{
@@ -34475,111 +47093,125 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glPollInstrumentsSGIX")]
public static
unsafe Int32 PollInstruments([Out] Int32* marker_p)
{
return Delegates.glPollInstrumentsSGIX((Int32*)marker_p);
}
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glReadInstrumentsSGIX")]
public static
void ReadInstruments(Int32 marker)
{
Delegates.glReadInstrumentsSGIX((Int32)marker);
}
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glStartInstrumentsSGIX")]
public static
void StartInstruments()
{
Delegates.glStartInstrumentsSGIX();
}
+ [AutoGenerated(Category = "SgixInstruments", Version = "1.0", EntryPoint = "glStopInstrumentsSGIX")]
public static
void StopInstruments(Int32 marker)
{
Delegates.glStopInstrumentsSGIX((Int32)marker);
}
+ [AutoGenerated(Category = "SgixFramezoom", Version = "1.0", EntryPoint = "glFrameZoomSGIX")]
public static
void FrameZoom(Int32 factor)
{
Delegates.glFrameZoomSGIX((Int32)factor);
}
+ [AutoGenerated(Category = "SgixTagSampleBuffer", Version = "1.0", EntryPoint = "glTagSampleBufferSGIX")]
public static
void TagSampleBuffer()
{
Delegates.glTagSampleBufferSGIX();
}
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glDeformationMap3dSGIX")]
public static
- void DeformationMap3(OpenTK.Graphics.All target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double[] points)
+ void DeformationMap3(OpenTK.Graphics.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double[] points)
{
unsafe
{
fixed (Double* points_ptr = points)
{
- Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.All)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr);
+ Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.SgixPolynomialFfd)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glDeformationMap3dSGIX")]
public static
- void DeformationMap3(OpenTK.Graphics.All target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, ref Double points)
+ void DeformationMap3(OpenTK.Graphics.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, ref Double points)
{
unsafe
{
fixed (Double* points_ptr = &points)
{
- Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.All)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr);
+ Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.SgixPolynomialFfd)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glDeformationMap3dSGIX")]
public static
- unsafe void DeformationMap3(OpenTK.Graphics.All target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points)
+ unsafe void DeformationMap3(OpenTK.Graphics.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points)
{
- Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.All)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points);
+ Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.SgixPolynomialFfd)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points);
}
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glDeformationMap3fSGIX")]
public static
- void DeformationMap3(OpenTK.Graphics.All target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single[] points)
+ void DeformationMap3(OpenTK.Graphics.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single[] points)
{
unsafe
{
fixed (Single* points_ptr = points)
{
- Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.All)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr);
+ Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.SgixPolynomialFfd)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glDeformationMap3fSGIX")]
public static
- void DeformationMap3(OpenTK.Graphics.All target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, ref Single points)
+ void DeformationMap3(OpenTK.Graphics.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, ref Single points)
{
unsafe
{
fixed (Single* points_ptr = &points)
{
- Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.All)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr);
+ Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.SgixPolynomialFfd)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glDeformationMap3fSGIX")]
public static
- unsafe void DeformationMap3(OpenTK.Graphics.All target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points)
+ unsafe void DeformationMap3(OpenTK.Graphics.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points)
{
- Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.All)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points);
+ Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.SgixPolynomialFfd)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glDeformSGIX")]
public static
void Deform(UInt32 mask)
{
Delegates.glDeformSGIX((UInt32)mask);
}
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glDeformSGIX")]
public static
void Deform(Int32 mask)
{
@@ -34587,18 +47219,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glLoadIdentityDeformationMapSGIX")]
public static
void LoadIdentityDeformationMap(UInt32 mask)
{
Delegates.glLoadIdentityDeformationMapSGIX((UInt32)mask);
}
+ [AutoGenerated(Category = "SgixPolynomialFfd", Version = "1.0", EntryPoint = "glLoadIdentityDeformationMapSGIX")]
public static
void LoadIdentityDeformationMap(Int32 mask)
{
Delegates.glLoadIdentityDeformationMapSGIX((UInt32)mask);
}
+ [AutoGenerated(Category = "SgixReferencePlane", Version = "1.0", EntryPoint = "glReferencePlaneSGIX")]
public static
void ReferencePlane(Double[] equation)
{
@@ -34611,6 +47246,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixReferencePlane", Version = "1.0", EntryPoint = "glReferencePlaneSGIX")]
public static
void ReferencePlane(ref Double equation)
{
@@ -34624,12 +47260,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixReferencePlane", Version = "1.0", EntryPoint = "glReferencePlaneSGIX")]
public static
unsafe void ReferencePlane(Double* equation)
{
Delegates.glReferencePlaneSGIX((Double*)equation);
}
+ [AutoGenerated(Category = "SgixFlushRaster", Version = "1.0", EntryPoint = "glFlushRasterSGIX")]
public static
void FlushRaster()
{
@@ -34637,6 +47275,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterfvSGIX")]
public static
void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single[] @params)
{
@@ -34649,6 +47288,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterfvSGIX")]
public static
void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single[] @params)
{
@@ -34662,6 +47302,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterfvSGIX")]
public static
void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] out Single @params)
{
@@ -34675,6 +47316,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterfvSGIX")]
public static
void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] out Single @params)
{
@@ -34689,6 +47331,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterfvSGIX")]
public static
unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single* @params)
{
@@ -34696,6 +47339,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterfvSGIX")]
public static
unsafe void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single* @params)
{
@@ -34703,6 +47347,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterivSGIX")]
public static
void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Int32[] @params)
{
@@ -34715,6 +47360,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterivSGIX")]
public static
void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] Int32[] @params)
{
@@ -34728,6 +47374,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterivSGIX")]
public static
void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] out Int32 @params)
{
@@ -34741,6 +47388,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterivSGIX")]
public static
void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] out Int32 @params)
{
@@ -34755,6 +47403,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterivSGIX")]
public static
unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Int32* @params)
{
@@ -34762,6 +47411,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glGetListParameterivSGIX")]
public static
unsafe void GetListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, [Out] Int32* @params)
{
@@ -34769,12 +47419,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterfSGIX")]
public static
void ListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, Single param)
{
Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Single)param);
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterfSGIX")]
public static
void ListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, Single param)
{
@@ -34782,6 +47434,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterfvSGIX")]
public static
void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, Single[] @params)
{
@@ -34794,6 +47447,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterfvSGIX")]
public static
void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, Single[] @params)
{
@@ -34807,6 +47461,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterfvSGIX")]
public static
void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, ref Single @params)
{
@@ -34819,6 +47474,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterfvSGIX")]
public static
void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, ref Single @params)
{
@@ -34832,6 +47488,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterfvSGIX")]
public static
unsafe void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, Single* @params)
{
@@ -34839,6 +47496,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterfvSGIX")]
public static
unsafe void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, Single* @params)
{
@@ -34846,12 +47504,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameteriSGIX")]
public static
void ListParameter(UInt32 list, OpenTK.Graphics.ListParameterName pname, Int32 param)
{
Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32)param);
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameteriSGIX")]
public static
void ListParameter(Int32 list, OpenTK.Graphics.ListParameterName pname, Int32 param)
{
@@ -34859,6 +47519,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterivSGIX")]
public static
void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, Int32[] @params)
{
@@ -34871,6 +47532,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterivSGIX")]
public static
void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, Int32[] @params)
{
@@ -34884,6 +47546,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterivSGIX")]
public static
void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, ref Int32 @params)
{
@@ -34896,6 +47559,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterivSGIX")]
public static
void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, ref Int32 @params)
{
@@ -34909,6 +47573,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterivSGIX")]
public static
unsafe void ListParameterv(UInt32 list, OpenTK.Graphics.ListParameterName pname, Int32* @params)
{
@@ -34916,172 +47581,192 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixListPriority", Version = "1.0", EntryPoint = "glListParameterivSGIX")]
public static
unsafe void ListParameterv(Int32 list, OpenTK.Graphics.ListParameterName pname, Int32* @params)
{
Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.ListParameterName)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentColorMaterialSGIX")]
public static
void FragmentColorMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter mode)
{
Delegates.glFragmentColorMaterialSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)mode);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightfSGIX")]
public static
- void FragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single param)
+ void FragmentLight(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Single param)
{
- Delegates.glFragmentLightfSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glFragmentLightfSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Single)param);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightfvSGIX")]
public static
- void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single[] @params)
+ void FragmentLightv(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightfvSGIX")]
public static
- void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, ref Single @params)
+ void FragmentLightv(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightfvSGIX")]
public static
- unsafe void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single* @params)
+ unsafe void FragmentLightv(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Single* @params)
{
- Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightiSGIX")]
public static
- void FragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32 param)
+ void FragmentLight(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Int32 param)
{
- Delegates.glFragmentLightiSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glFragmentLightiSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Int32)param);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightivSGIX")]
public static
- void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32[] @params)
+ void FragmentLightv(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glFragmentLightivSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightivSGIX")]
public static
- void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, ref Int32 @params)
+ void FragmentLightv(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glFragmentLightivSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightivSGIX")]
public static
- unsafe void FragmentLightv(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void FragmentLightv(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Int32* @params)
{
- Delegates.glFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glFragmentLightivSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightModelfSGIX")]
public static
- void FragmentLightModel(OpenTK.Graphics.All pname, Single param)
+ void FragmentLightModel(OpenTK.Graphics.SgixFragmentLighting pname, Single param)
{
- Delegates.glFragmentLightModelfSGIX((OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glFragmentLightModelfSGIX((OpenTK.Graphics.SgixFragmentLighting)pname, (Single)param);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightModelfvSGIX")]
public static
- void FragmentLightModelv(OpenTK.Graphics.All pname, Single[] @params)
+ void FragmentLightModelv(OpenTK.Graphics.SgixFragmentLighting pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.SgixFragmentLighting)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightModelfvSGIX")]
public static
- void FragmentLightModelv(OpenTK.Graphics.All pname, ref Single @params)
+ void FragmentLightModelv(OpenTK.Graphics.SgixFragmentLighting pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.SgixFragmentLighting)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightModelfvSGIX")]
public static
- unsafe void FragmentLightModelv(OpenTK.Graphics.All pname, Single* @params)
+ unsafe void FragmentLightModelv(OpenTK.Graphics.SgixFragmentLighting pname, Single* @params)
{
- Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.SgixFragmentLighting)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightModeliSGIX")]
public static
- void FragmentLightModel(OpenTK.Graphics.All pname, Int32 param)
+ void FragmentLightModel(OpenTK.Graphics.SgixFragmentLighting pname, Int32 param)
{
- Delegates.glFragmentLightModeliSGIX((OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glFragmentLightModeliSGIX((OpenTK.Graphics.SgixFragmentLighting)pname, (Int32)param);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightModelivSGIX")]
public static
- void FragmentLightModelv(OpenTK.Graphics.All pname, Int32[] @params)
+ void FragmentLightModelv(OpenTK.Graphics.SgixFragmentLighting pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.SgixFragmentLighting)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightModelivSGIX")]
public static
- void FragmentLightModelv(OpenTK.Graphics.All pname, ref Int32 @params)
+ void FragmentLightModelv(OpenTK.Graphics.SgixFragmentLighting pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.SgixFragmentLighting)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentLightModelivSGIX")]
public static
- unsafe void FragmentLightModelv(OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void FragmentLightModelv(OpenTK.Graphics.SgixFragmentLighting pname, Int32* @params)
{
- Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.SgixFragmentLighting)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentMaterialfSGIX")]
public static
void FragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single param)
{
Delegates.glFragmentMaterialfSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single)param);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentMaterialfvSGIX")]
public static
void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single[] @params)
{
@@ -35094,6 +47779,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentMaterialfvSGIX")]
public static
void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, ref Single @params)
{
@@ -35107,18 +47793,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentMaterialfvSGIX")]
public static
unsafe void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single* @params)
{
Delegates.glFragmentMaterialfvSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentMaterialiSGIX")]
public static
void FragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32 param)
{
Delegates.glFragmentMaterialiSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32)param);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentMaterialivSGIX")]
public static
void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32[] @params)
{
@@ -35131,6 +47820,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentMaterialivSGIX")]
public static
void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, ref Int32 @params)
{
@@ -35144,76 +47834,84 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glFragmentMaterialivSGIX")]
public static
unsafe void FragmentMaterialv(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32* @params)
{
Delegates.glFragmentMaterialivSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentLightfvSGIX")]
public static
- void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetFragmentLight(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentLightfvSGIX")]
public static
- void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetFragmentLight(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentLightfvSGIX")]
public static
- unsafe void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetFragmentLight(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, [Out] Single* @params)
{
- Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentLightivSGIX")]
public static
- void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetFragmentLight(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentLightivSGIX")]
public static
- void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetFragmentLight(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentLightivSGIX")]
public static
- unsafe void GetFragmentLight(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetFragmentLight(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, [Out] Int32* @params)
{
- Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.All)light, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.SgixFragmentLighting)light, (OpenTK.Graphics.SgixFragmentLighting)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentMaterialfvSGIX")]
public static
void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single[] @params)
{
@@ -35226,6 +47924,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentMaterialfvSGIX")]
public static
void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] out Single @params)
{
@@ -35240,12 +47939,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentMaterialfvSGIX")]
public static
unsafe void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single* @params)
{
Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentMaterialivSGIX")]
public static
void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32[] @params)
{
@@ -35258,6 +47959,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentMaterialivSGIX")]
public static
void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] out Int32 @params)
{
@@ -35272,25 +47974,29 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glGetFragmentMaterialivSGIX")]
public static
unsafe void GetFragmentMaterial(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32* @params)
{
Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.MaterialFace)face, (OpenTK.Graphics.MaterialParameter)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "SgixFragmentLighting", Version = "1.0", EntryPoint = "glLightEnviSGIX")]
public static
- void LightEnv(OpenTK.Graphics.All pname, Int32 param)
+ void LightEnv(OpenTK.Graphics.SgixFragmentLighting pname, Int32 param)
{
- Delegates.glLightEnviSGIX((OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glLightEnviSGIX((OpenTK.Graphics.SgixFragmentLighting)pname, (Int32)param);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glAsyncMarkerSGIX")]
public static
void AsyncMarker(UInt32 marker)
{
Delegates.glAsyncMarkerSGIX((UInt32)marker);
}
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glAsyncMarkerSGIX")]
public static
void AsyncMarker(Int32 marker)
{
@@ -35298,6 +48004,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glFinishAsyncSGIX")]
public static
Int32 FinishAsync([Out] UInt32[] markerp)
{
@@ -35310,6 +48017,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glFinishAsyncSGIX")]
public static
Int32 FinishAsync([Out] Int32[] markerp)
{
@@ -35323,6 +48031,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glFinishAsyncSGIX")]
public static
Int32 FinishAsync([Out] out UInt32 markerp)
{
@@ -35337,6 +48046,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glFinishAsyncSGIX")]
public static
Int32 FinishAsync([Out] out Int32 markerp)
{
@@ -35352,6 +48062,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glFinishAsyncSGIX")]
public static
unsafe Int32 FinishAsync([Out] UInt32* markerp)
{
@@ -35359,6 +48070,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glFinishAsyncSGIX")]
public static
unsafe Int32 FinishAsync([Out] Int32* markerp)
{
@@ -35366,6 +48078,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glPollAsyncSGIX")]
public static
Int32 PollAsync([Out] UInt32[] markerp)
{
@@ -35378,6 +48091,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glPollAsyncSGIX")]
public static
Int32 PollAsync([Out] Int32[] markerp)
{
@@ -35391,6 +48105,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glPollAsyncSGIX")]
public static
Int32 PollAsync([Out] out UInt32 markerp)
{
@@ -35405,6 +48120,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glPollAsyncSGIX")]
public static
Int32 PollAsync([Out] out Int32 markerp)
{
@@ -35420,6 +48136,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glPollAsyncSGIX")]
public static
unsafe Int32 PollAsync([Out] UInt32* markerp)
{
@@ -35427,12 +48144,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glPollAsyncSGIX")]
public static
unsafe Int32 PollAsync([Out] Int32* markerp)
{
return Delegates.glPollAsyncSGIX((UInt32*)markerp);
}
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glGenAsyncMarkersSGIX")]
public static
Int32 GenAsyncMarkers(Int32 range)
{
@@ -35440,12 +48159,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glDeleteAsyncMarkersSGIX")]
public static
void DeleteAsyncMarkers(UInt32 marker, Int32 range)
{
Delegates.glDeleteAsyncMarkersSGIX((UInt32)marker, (Int32)range);
}
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glDeleteAsyncMarkersSGIX")]
public static
void DeleteAsyncMarkers(Int32 marker, Int32 range)
{
@@ -35453,18 +48174,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glIsAsyncMarkerSGIX")]
public static
bool IsAsyncMarker(UInt32 marker)
{
return Delegates.glIsAsyncMarkerSGIX((UInt32)marker);
}
+ [AutoGenerated(Category = "SgixAsync", Version = "1.0", EntryPoint = "glIsAsyncMarkerSGIX")]
public static
bool IsAsyncMarker(Int32 marker)
{
return Delegates.glIsAsyncMarkerSGIX((UInt32)marker);
}
+ [AutoGenerated(Category = "SgixIglooInterface", Version = "1.0", EntryPoint = "glIglooInterfaceSGIX")]
public static
void IglooInterface(OpenTK.Graphics.All pname, IntPtr @params)
{
@@ -35474,6 +48198,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SgixIglooInterface", Version = "1.0", EntryPoint = "glIglooInterfaceSGIX")]
public static
void IglooInterface(OpenTK.Graphics.All pname, [In, Out] object @params)
{
@@ -35495,158 +48220,174 @@ namespace OpenTK.Graphics
public static partial class HP
{
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glImageTransformParameteriHP")]
public static
- void ImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param)
+ void ImageTransformParameter(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Int32 param)
{
- Delegates.glImageTransformParameteriHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glImageTransformParameteriHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Int32)param);
}
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glImageTransformParameterfHP")]
public static
- void ImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single param)
+ void ImageTransformParameter(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Single param)
{
- Delegates.glImageTransformParameterfHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glImageTransformParameterfHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Single)param);
}
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glImageTransformParameterivHP")]
public static
- void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32[] @params)
+ void ImageTransformParameterv(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glImageTransformParameterivHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glImageTransformParameterivHP")]
public static
- void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Int32 @params)
+ void ImageTransformParameterv(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, ref Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glImageTransformParameterivHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glImageTransformParameterivHP")]
public static
- unsafe void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params)
+ unsafe void ImageTransformParameterv(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Int32* @params)
{
- Delegates.glImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glImageTransformParameterivHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glImageTransformParameterfvHP")]
public static
- void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single[] @params)
+ void ImageTransformParameterv(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glImageTransformParameterfvHP")]
public static
- void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, ref Single @params)
+ void ImageTransformParameterv(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, ref Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glImageTransformParameterfvHP")]
public static
- unsafe void ImageTransformParameterv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params)
+ unsafe void ImageTransformParameterv(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Single* @params)
{
- Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glGetImageTransformParameterivHP")]
public static
- void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetImageTransformParameter(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glGetImageTransformParameterivHP")]
public static
- void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetImageTransformParameter(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glGetImageTransformParameterivHP")]
public static
- unsafe void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetImageTransformParameter(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, [Out] Int32* @params)
{
- Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glGetImageTransformParameterfvHP")]
public static
- void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetImageTransformParameter(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glGetImageTransformParameterfvHP")]
public static
- void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetImageTransformParameter(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "HpImageTransform", Version = "1.1", EntryPoint = "glGetImageTransformParameterfvHP")]
public static
- unsafe void GetImageTransformParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetImageTransformParameter(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, [Out] Single* @params)
{
- Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.HpImageTransform)target, (OpenTK.Graphics.HpImageTransform)pname, (Single*)@params);
}
}
public static partial class Pgi
{
+ [AutoGenerated(Category = "PgiMiscHints", Version = "1.1", EntryPoint = "glHintPGI")]
public static
- void Hint(OpenTK.Graphics.All target, Int32 mode)
+ void Hint(OpenTK.Graphics.PgiMiscHints target, Int32 mode)
{
- Delegates.glHintPGI((OpenTK.Graphics.All)target, (Int32)mode);
+ Delegates.glHintPGI((OpenTK.Graphics.PgiMiscHints)target, (Int32)mode);
}
}
public static partial class Intel
{
+ [AutoGenerated(Category = "IntelParallelArrays", Version = "1.1", EntryPoint = "glVertexPointervINTEL")]
public static
void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer)
{
@@ -35656,6 +48397,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IntelParallelArrays", Version = "1.1", EntryPoint = "glVertexPointervINTEL")]
public static
void VertexPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, [In, Out] object pointer)
{
@@ -35673,6 +48415,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IntelParallelArrays", Version = "1.1", EntryPoint = "glNormalPointervINTEL")]
public static
void NormalPointer(OpenTK.Graphics.NormalPointerType type, IntPtr pointer)
{
@@ -35682,6 +48425,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IntelParallelArrays", Version = "1.1", EntryPoint = "glNormalPointervINTEL")]
public static
void NormalPointer(OpenTK.Graphics.NormalPointerType type, [In, Out] object pointer)
{
@@ -35699,6 +48443,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IntelParallelArrays", Version = "1.1", EntryPoint = "glColorPointervINTEL")]
public static
void ColorPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer)
{
@@ -35708,6 +48453,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IntelParallelArrays", Version = "1.1", EntryPoint = "glColorPointervINTEL")]
public static
void ColorPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, [In, Out] object pointer)
{
@@ -35725,6 +48471,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IntelParallelArrays", Version = "1.1", EntryPoint = "glTexCoordPointervINTEL")]
public static
void TexCoordPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer)
{
@@ -35734,6 +48481,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IntelParallelArrays", Version = "1.1", EntryPoint = "glTexCoordPointervINTEL")]
public static
void TexCoordPointer(Int32 size, OpenTK.Graphics.VertexPointerType type, [In, Out] object pointer)
{
@@ -35755,6 +48503,7 @@ namespace OpenTK.Graphics
public static partial class Sunx
{
+ [AutoGenerated(Category = "SunxConstantData", Version = "1.1", EntryPoint = "glFinishTextureSUNX")]
public static
void FinishTexture()
{
@@ -35766,30 +48515,35 @@ namespace OpenTK.Graphics
public static partial class Sun
{
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunGlobalAlpha", Version = "1.1", EntryPoint = "glGlobalAlphaFactorbSUN")]
public static
void GlobalAlphaFactor(SByte factor)
{
Delegates.glGlobalAlphaFactorbSUN((SByte)factor);
}
+ [AutoGenerated(Category = "SunGlobalAlpha", Version = "1.1", EntryPoint = "glGlobalAlphaFactorsSUN")]
public static
void GlobalAlphaFactors(Int16 factor)
{
Delegates.glGlobalAlphaFactorsSUN((Int16)factor);
}
+ [AutoGenerated(Category = "SunGlobalAlpha", Version = "1.1", EntryPoint = "glGlobalAlphaFactorfSUN")]
public static
void GlobalAlphaFactor(Single factor)
{
Delegates.glGlobalAlphaFactorfSUN((Single)factor);
}
+ [AutoGenerated(Category = "SunGlobalAlpha", Version = "1.1", EntryPoint = "glGlobalAlphaFactordSUN")]
public static
void GlobalAlphaFactor(Double factor)
{
Delegates.glGlobalAlphaFactordSUN((Double)factor);
}
+ [AutoGenerated(Category = "SunGlobalAlpha", Version = "1.1", EntryPoint = "glGlobalAlphaFactorubSUN")]
public static
void GlobalAlphaFactor(Byte factor)
{
@@ -35797,12 +48551,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunGlobalAlpha", Version = "1.1", EntryPoint = "glGlobalAlphaFactorusSUN")]
public static
void GlobalAlphaFactor(UInt16 factor)
{
Delegates.glGlobalAlphaFactorusSUN((UInt16)factor);
}
+ [AutoGenerated(Category = "SunGlobalAlpha", Version = "1.1", EntryPoint = "glGlobalAlphaFactorusSUN")]
public static
void GlobalAlphaFactor(Int16 factor)
{
@@ -35810,12 +48566,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunGlobalAlpha", Version = "1.1", EntryPoint = "glGlobalAlphaFactoruiSUN")]
public static
void GlobalAlphaFactor(UInt32 factor)
{
Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor);
}
+ [AutoGenerated(Category = "SunGlobalAlpha", Version = "1.1", EntryPoint = "glGlobalAlphaFactoruiSUN")]
public static
void GlobalAlphaFactor(Int32 factor)
{
@@ -35823,12 +48581,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeuiSUN")]
public static
void ReplacementCode(UInt32 code)
{
Delegates.glReplacementCodeuiSUN((UInt32)code);
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeuiSUN")]
public static
void ReplacementCode(Int32 code)
{
@@ -35836,18 +48596,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeusSUN")]
public static
void ReplacementCode(UInt16 code)
{
Delegates.glReplacementCodeusSUN((UInt16)code);
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeusSUN")]
public static
void ReplacementCode(Int16 code)
{
Delegates.glReplacementCodeusSUN((UInt16)code);
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeubSUN")]
public static
void ReplacementCode(Byte code)
{
@@ -35855,6 +48618,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeuivSUN")]
public static
void ReplacementCodev(UInt32[] code)
{
@@ -35867,6 +48631,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeuivSUN")]
public static
void ReplacementCodev(Int32[] code)
{
@@ -35880,6 +48645,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeuivSUN")]
public static
void ReplacementCodev(ref UInt32 code)
{
@@ -35892,6 +48658,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeuivSUN")]
public static
void ReplacementCodev(ref Int32 code)
{
@@ -35905,6 +48672,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeuivSUN")]
public static
unsafe void ReplacementCodev(UInt32* code)
{
@@ -35912,6 +48680,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeuivSUN")]
public static
unsafe void ReplacementCodev(Int32* code)
{
@@ -35919,6 +48688,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeusvSUN")]
public static
void ReplacementCodev(UInt16[] code)
{
@@ -35931,6 +48701,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeusvSUN")]
public static
void ReplacementCodev(Int16[] code)
{
@@ -35944,6 +48715,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeusvSUN")]
public static
void ReplacementCodev(ref UInt16 code)
{
@@ -35956,6 +48728,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeusvSUN")]
public static
void ReplacementCodev(ref Int16 code)
{
@@ -35969,6 +48742,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeusvSUN")]
public static
unsafe void ReplacementCodev(UInt16* code)
{
@@ -35976,12 +48750,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeusvSUN")]
public static
unsafe void ReplacementCodev(Int16* code)
{
Delegates.glReplacementCodeusvSUN((UInt16*)code);
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeubvSUN")]
public static
void ReplacementCodev(Byte[] code)
{
@@ -35994,6 +48770,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeubvSUN")]
public static
void ReplacementCodev(ref Byte code)
{
@@ -36007,30 +48784,33 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodeubvSUN")]
public static
unsafe void ReplacementCodev(Byte* code)
{
Delegates.glReplacementCodeubvSUN((Byte*)code);
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodePointerSUN")]
public static
- void ReplacementCodePointer(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer)
+ void ReplacementCodePointer(OpenTK.Graphics.SunTriangleList type, Int32 stride, IntPtr pointer)
{
unsafe
{
- Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer);
+ Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.SunTriangleList)type, (Int32)stride, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "SunTriangleList", Version = "1.1", EntryPoint = "glReplacementCodePointerSUN")]
public static
- void ReplacementCodePointer(OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer)
+ void ReplacementCodePointer(OpenTK.Graphics.SunTriangleList type, Int32 stride, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -36039,12 +48819,14 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4ubVertex2fSUN")]
public static
void Color4ubVertex2(Byte r, Byte g, Byte b, Byte a, Single x, Single y)
{
Delegates.glColor4ubVertex2fSUN((Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4ubVertex2fvSUN")]
public static
void Color4ubVertex2(Byte[] c, Single[] v)
{
@@ -36058,6 +48840,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4ubVertex2fvSUN")]
public static
void Color4ubVertex2(ref Byte c, ref Single v)
{
@@ -36072,18 +48855,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4ubVertex2fvSUN")]
public static
unsafe void Color4ubVertex2(Byte* c, Single* v)
{
Delegates.glColor4ubVertex2fvSUN((Byte*)c, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4ubVertex3fSUN")]
public static
void Color4ubVertex3(Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z)
{
Delegates.glColor4ubVertex3fSUN((Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4ubVertex3fvSUN")]
public static
void Color4ubVertex3(Byte[] c, Single[] v)
{
@@ -36097,6 +48883,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4ubVertex3fvSUN")]
public static
void Color4ubVertex3(ref Byte c, ref Single v)
{
@@ -36111,18 +48898,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4ubVertex3fvSUN")]
public static
unsafe void Color4ubVertex3(Byte* c, Single* v)
{
Delegates.glColor4ubVertex3fvSUN((Byte*)c, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor3fVertex3fSUN")]
public static
void Color3fVertex3(Single r, Single g, Single b, Single x, Single y, Single z)
{
Delegates.glColor3fVertex3fSUN((Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor3fVertex3fvSUN")]
public static
void Color3fVertex3(Single[] c, Single[] v)
{
@@ -36136,6 +48926,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor3fVertex3fvSUN")]
public static
void Color3fVertex3(ref Single c, ref Single v)
{
@@ -36150,18 +48941,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor3fVertex3fvSUN")]
public static
unsafe void Color3fVertex3(Single* c, Single* v)
{
Delegates.glColor3fVertex3fvSUN((Single*)c, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glNormal3fVertex3fSUN")]
public static
void Normal3fVertex3(Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
Delegates.glNormal3fVertex3fSUN((Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glNormal3fVertex3fvSUN")]
public static
void Normal3fVertex3(Single[] n, Single[] v)
{
@@ -36175,6 +48969,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glNormal3fVertex3fvSUN")]
public static
void Normal3fVertex3(ref Single n, ref Single v)
{
@@ -36189,18 +48984,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glNormal3fVertex3fvSUN")]
public static
unsafe void Normal3fVertex3(Single* n, Single* v)
{
Delegates.glNormal3fVertex3fvSUN((Single*)n, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4fNormal3fVertex3fSUN")]
public static
void Color4fNormal3fVertex3(Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
Delegates.glColor4fNormal3fVertex3fSUN((Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4fNormal3fVertex3fvSUN")]
public static
void Color4fNormal3fVertex3(Single[] c, Single[] n, Single[] v)
{
@@ -36215,6 +49013,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4fNormal3fVertex3fvSUN")]
public static
void Color4fNormal3fVertex3(ref Single c, ref Single n, ref Single v)
{
@@ -36230,18 +49029,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glColor4fNormal3fVertex3fvSUN")]
public static
unsafe void Color4fNormal3fVertex3(Single* c, Single* n, Single* v)
{
Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c, (Single*)n, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fVertex3fSUN")]
public static
void TexCoord2fVertex3(Single s, Single t, Single x, Single y, Single z)
{
Delegates.glTexCoord2fVertex3fSUN((Single)s, (Single)t, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fVertex3fvSUN")]
public static
void TexCoord2fVertex3(Single[] tc, Single[] v)
{
@@ -36255,6 +49057,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fVertex3fvSUN")]
public static
void TexCoord2fVertex3(ref Single tc, ref Single v)
{
@@ -36269,18 +49072,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fVertex3fvSUN")]
public static
unsafe void TexCoord2fVertex3(Single* tc, Single* v)
{
Delegates.glTexCoord2fVertex3fvSUN((Single*)tc, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord4fVertex4fSUN")]
public static
void TexCoord4fVertex4(Single s, Single t, Single p, Single q, Single x, Single y, Single z, Single w)
{
Delegates.glTexCoord4fVertex4fSUN((Single)s, (Single)t, (Single)p, (Single)q, (Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord4fVertex4fvSUN")]
public static
void TexCoord4fVertex4(Single[] tc, Single[] v)
{
@@ -36294,6 +49100,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord4fVertex4fvSUN")]
public static
void TexCoord4fVertex4(ref Single tc, ref Single v)
{
@@ -36308,18 +49115,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord4fVertex4fvSUN")]
public static
unsafe void TexCoord4fVertex4(Single* tc, Single* v)
{
Delegates.glTexCoord4fVertex4fvSUN((Single*)tc, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor4ubVertex3fSUN")]
public static
void TexCoord2fColor4ubVertex3(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z)
{
Delegates.glTexCoord2fColor4ubVertex3fSUN((Single)s, (Single)t, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")]
public static
void TexCoord2fColor4ubVertex3(Single[] tc, Byte[] c, Single[] v)
{
@@ -36334,6 +49144,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")]
public static
void TexCoord2fColor4ubVertex3(ref Single tc, ref Byte c, ref Single v)
{
@@ -36349,18 +49160,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")]
public static
unsafe void TexCoord2fColor4ubVertex3(Single* tc, Byte* c, Single* v)
{
Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc, (Byte*)c, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor3fVertex3fSUN")]
public static
void TexCoord2fColor3fVertex3(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z)
{
Delegates.glTexCoord2fColor3fVertex3fSUN((Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")]
public static
void TexCoord2fColor3fVertex3(Single[] tc, Single[] c, Single[] v)
{
@@ -36375,6 +49189,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")]
public static
void TexCoord2fColor3fVertex3(ref Single tc, ref Single c, ref Single v)
{
@@ -36390,18 +49205,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")]
public static
unsafe void TexCoord2fColor3fVertex3(Single* tc, Single* c, Single* v)
{
Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fNormal3fVertex3fSUN")]
public static
void TexCoord2fNormal3fVertex3(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
Delegates.glTexCoord2fNormal3fVertex3fSUN((Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")]
public static
void TexCoord2fNormal3fVertex3(Single[] tc, Single[] n, Single[] v)
{
@@ -36416,6 +49234,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")]
public static
void TexCoord2fNormal3fVertex3(ref Single tc, ref Single n, ref Single v)
{
@@ -36431,18 +49250,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")]
public static
unsafe void TexCoord2fNormal3fVertex3(Single* tc, Single* n, Single* v)
{
Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc, (Single*)n, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fSUN")]
public static
void TexCoord2fColor4fNormal3fVertex3(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
Delegates.glTexCoord2fColor4fNormal3fVertex3fSUN((Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")]
public static
void TexCoord2fColor4fNormal3fVertex3(Single[] tc, Single[] c, Single[] n, Single[] v)
{
@@ -36458,6 +49280,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")]
public static
void TexCoord2fColor4fNormal3fVertex3(ref Single tc, ref Single c, ref Single n, ref Single v)
{
@@ -36474,18 +49297,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")]
public static
unsafe void TexCoord2fColor4fNormal3fVertex3(Single* tc, Single* c, Single* n, Single* v)
{
Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)n, (Single*)v);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fSUN")]
public static
void TexCoord4fColor4fNormal3fVertex4(Single s, Single t, Single p, Single q, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z, Single w)
{
Delegates.glTexCoord4fColor4fNormal3fVertex4fSUN((Single)s, (Single)t, (Single)p, (Single)q, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")]
public static
void TexCoord4fColor4fNormal3fVertex4(Single[] tc, Single[] c, Single[] n, Single[] v)
{
@@ -36501,6 +49327,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")]
public static
void TexCoord4fColor4fNormal3fVertex4(ref Single tc, ref Single c, ref Single n, ref Single v)
{
@@ -36517,6 +49344,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")]
public static
unsafe void TexCoord4fColor4fNormal3fVertex4(Single* tc, Single* c, Single* n, Single* v)
{
@@ -36524,12 +49352,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fSUN")]
public static
void ReplacementCodeuiVertex3(UInt32 rc, Single x, Single y, Single z)
{
Delegates.glReplacementCodeuiVertex3fSUN((UInt32)rc, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fSUN")]
public static
void ReplacementCodeuiVertex3(Int32 rc, Single x, Single y, Single z)
{
@@ -36537,6 +49367,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")]
public static
void ReplacementCodeuiVertex3v(UInt32[] rc, Single[] v)
{
@@ -36550,6 +49381,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")]
public static
void ReplacementCodeuiVertex3v(Int32[] rc, Single[] v)
{
@@ -36564,6 +49396,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")]
public static
void ReplacementCodeuiVertex3v(ref UInt32 rc, ref Single v)
{
@@ -36577,6 +49410,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")]
public static
void ReplacementCodeuiVertex3v(ref Int32 rc, ref Single v)
{
@@ -36591,6 +49425,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiVertex3v(UInt32* rc, Single* v)
{
@@ -36598,6 +49433,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiVertex3v(Int32* rc, Single* v)
{
@@ -36605,12 +49441,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fSUN")]
public static
void ReplacementCodeuiColor4ubVertex3(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z)
{
Delegates.glReplacementCodeuiColor4ubVertex3fSUN((UInt32)rc, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fSUN")]
public static
void ReplacementCodeuiColor4ubVertex3(Int32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z)
{
@@ -36618,6 +49456,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")]
public static
void ReplacementCodeuiColor4ubVertex3v(UInt32[] rc, Byte[] c, Single[] v)
{
@@ -36632,6 +49471,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")]
public static
void ReplacementCodeuiColor4ubVertex3v(Int32[] rc, Byte[] c, Single[] v)
{
@@ -36647,6 +49487,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")]
public static
void ReplacementCodeuiColor4ubVertex3v(ref UInt32 rc, ref Byte c, ref Single v)
{
@@ -36661,6 +49502,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")]
public static
void ReplacementCodeuiColor4ubVertex3v(ref Int32 rc, ref Byte c, ref Single v)
{
@@ -36676,6 +49518,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiColor4ubVertex3v(UInt32* rc, Byte* c, Single* v)
{
@@ -36683,6 +49526,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiColor4ubVertex3v(Int32* rc, Byte* c, Single* v)
{
@@ -36690,12 +49534,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fSUN")]
public static
void ReplacementCodeuiColor3fVertex3(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z)
{
Delegates.glReplacementCodeuiColor3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fSUN")]
public static
void ReplacementCodeuiColor3fVertex3(Int32 rc, Single r, Single g, Single b, Single x, Single y, Single z)
{
@@ -36703,6 +49549,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")]
public static
void ReplacementCodeuiColor3fVertex3v(UInt32[] rc, Single[] c, Single[] v)
{
@@ -36717,6 +49564,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")]
public static
void ReplacementCodeuiColor3fVertex3v(Int32[] rc, Single[] c, Single[] v)
{
@@ -36732,6 +49580,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")]
public static
void ReplacementCodeuiColor3fVertex3v(ref UInt32 rc, ref Single c, ref Single v)
{
@@ -36746,6 +49595,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")]
public static
void ReplacementCodeuiColor3fVertex3v(ref Int32 rc, ref Single c, ref Single v)
{
@@ -36761,6 +49611,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiColor3fVertex3v(UInt32* rc, Single* c, Single* v)
{
@@ -36768,6 +49619,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiColor3fVertex3v(Int32* rc, Single* c, Single* v)
{
@@ -36775,12 +49627,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fSUN")]
public static
void ReplacementCodeuiNormal3fVertex3(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
Delegates.glReplacementCodeuiNormal3fVertex3fSUN((UInt32)rc, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fSUN")]
public static
void ReplacementCodeuiNormal3fVertex3(Int32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
@@ -36788,6 +49642,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiNormal3fVertex3v(UInt32[] rc, Single[] n, Single[] v)
{
@@ -36802,6 +49657,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiNormal3fVertex3v(Int32[] rc, Single[] n, Single[] v)
{
@@ -36817,6 +49673,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiNormal3fVertex3v(ref UInt32 rc, ref Single n, ref Single v)
{
@@ -36831,6 +49688,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiNormal3fVertex3v(ref Int32 rc, ref Single n, ref Single v)
{
@@ -36846,6 +49704,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiNormal3fVertex3v(UInt32* rc, Single* n, Single* v)
{
@@ -36853,6 +49712,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiNormal3fVertex3v(Int32* rc, Single* n, Single* v)
{
@@ -36860,12 +49720,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fSUN")]
public static
void ReplacementCodeuiColor4fNormal3fVertex3(UInt32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
Delegates.glReplacementCodeuiColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fSUN")]
public static
void ReplacementCodeuiColor4fNormal3fVertex3(Int32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
@@ -36873,6 +49735,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32[] rc, Single[] c, Single[] n, Single[] v)
{
@@ -36888,6 +49751,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiColor4fNormal3fVertex3v(Int32[] rc, Single[] c, Single[] n, Single[] v)
{
@@ -36904,6 +49768,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiColor4fNormal3fVertex3v(ref UInt32 rc, ref Single c, ref Single n, ref Single v)
{
@@ -36919,6 +49784,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiColor4fNormal3fVertex3v(ref Int32 rc, ref Single c, ref Single n, ref Single v)
{
@@ -36935,6 +49801,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(UInt32* rc, Single* c, Single* n, Single* v)
{
@@ -36942,6 +49809,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiColor4fNormal3fVertex3v(Int32* rc, Single* c, Single* n, Single* v)
{
@@ -36949,12 +49817,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fSUN")]
public static
void ReplacementCodeuiTexCoord2fVertex3(UInt32 rc, Single s, Single t, Single x, Single y, Single z)
{
Delegates.glReplacementCodeuiTexCoord2fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fSUN")]
public static
void ReplacementCodeuiTexCoord2fVertex3(Int32 rc, Single s, Single t, Single x, Single y, Single z)
{
@@ -36962,6 +49832,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fVertex3v(UInt32[] rc, Single[] tc, Single[] v)
{
@@ -36976,6 +49847,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fVertex3v(Int32[] rc, Single[] tc, Single[] v)
{
@@ -36991,6 +49863,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fVertex3v(ref UInt32 rc, ref Single tc, ref Single v)
{
@@ -37005,6 +49878,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fVertex3v(ref Int32 rc, ref Single tc, ref Single v)
{
@@ -37020,6 +49894,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiTexCoord2fVertex3v(UInt32* rc, Single* tc, Single* v)
{
@@ -37027,6 +49902,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiTexCoord2fVertex3v(Int32* rc, Single* tc, Single* v)
{
@@ -37034,12 +49910,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN")]
public static
void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN")]
public static
void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
@@ -37047,6 +49925,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] n, Single[] v)
{
@@ -37062,6 +49941,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] n, Single[] v)
{
@@ -37078,6 +49958,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single n, ref Single v)
{
@@ -37093,6 +49974,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single n, ref Single v)
{
@@ -37109,6 +49991,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(UInt32* rc, Single* tc, Single* n, Single* v)
{
@@ -37116,6 +49999,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3v(Int32* rc, Single* tc, Single* n, Single* v)
{
@@ -37123,12 +50007,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN")]
public static
void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN")]
public static
void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32 rc, Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z)
{
@@ -37136,6 +50022,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v)
{
@@ -37152,6 +50039,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32[] rc, Single[] tc, Single[] c, Single[] n, Single[] v)
{
@@ -37169,6 +50057,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref UInt32 rc, ref Single tc, ref Single c, ref Single n, ref Single v)
{
@@ -37185,6 +50074,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")]
public static
void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(ref Int32 rc, ref Single tc, ref Single c, ref Single n, ref Single v)
{
@@ -37202,6 +50092,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(UInt32* rc, Single* tc, Single* c, Single* n, Single* v)
{
@@ -37209,12 +50100,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")]
public static
unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3v(Int32* rc, Single* tc, Single* c, Single* n, Single* v)
{
Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v);
}
+ [AutoGenerated(Category = "SunMeshArray", Version = "1.1", EntryPoint = "glDrawMeshArraysSUN")]
public static
void DrawMeshArrays(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count, Int32 width)
{
@@ -37225,6 +50118,7 @@ namespace OpenTK.Graphics
public static partial class Ingr
{
+ [AutoGenerated(Category = "IngrBlendFuncSeparate", Version = "1.0", EntryPoint = "glBlendFuncSeparateINGR")]
public static
void BlendFuncSeparate(OpenTK.Graphics.All sfactorRGB, OpenTK.Graphics.All dfactorRGB, OpenTK.Graphics.All sfactorAlpha, OpenTK.Graphics.All dfactorAlpha)
{
@@ -37235,18 +50129,21 @@ namespace OpenTK.Graphics
public static partial class Mesa
{
+ [AutoGenerated(Category = "MesaResizeBuffers", Version = "1.0", EntryPoint = "glResizeBuffersMESA")]
public static
void ResizeBuffers()
{
Delegates.glResizeBuffersMESA();
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2dMESA")]
public static
void WindowPos2(Double x, Double y)
{
Delegates.glWindowPos2dMESA((Double)x, (Double)y);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2dvMESA")]
public static
void WindowPos2(Double[] v)
{
@@ -37259,6 +50156,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2dvMESA")]
public static
void WindowPos2(ref Double v)
{
@@ -37272,18 +50170,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2dvMESA")]
public static
unsafe void WindowPos2(Double* v)
{
Delegates.glWindowPos2dvMESA((Double*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2fMESA")]
public static
void WindowPos2(Single x, Single y)
{
Delegates.glWindowPos2fMESA((Single)x, (Single)y);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2fvMESA")]
public static
void WindowPos2(Single[] v)
{
@@ -37296,6 +50197,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2fvMESA")]
public static
void WindowPos2(ref Single v)
{
@@ -37309,18 +50211,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2fvMESA")]
public static
unsafe void WindowPos2(Single* v)
{
Delegates.glWindowPos2fvMESA((Single*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2iMESA")]
public static
void WindowPos2(Int32 x, Int32 y)
{
Delegates.glWindowPos2iMESA((Int32)x, (Int32)y);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2ivMESA")]
public static
void WindowPos2(Int32[] v)
{
@@ -37333,6 +50238,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2ivMESA")]
public static
void WindowPos2(ref Int32 v)
{
@@ -37346,18 +50252,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2ivMESA")]
public static
unsafe void WindowPos2(Int32* v)
{
Delegates.glWindowPos2ivMESA((Int32*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2sMESA")]
public static
void WindowPos2(Int16 x, Int16 y)
{
Delegates.glWindowPos2sMESA((Int16)x, (Int16)y);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2svMESA")]
public static
void WindowPos2(Int16[] v)
{
@@ -37370,6 +50279,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2svMESA")]
public static
void WindowPos2(ref Int16 v)
{
@@ -37383,18 +50293,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos2svMESA")]
public static
unsafe void WindowPos2(Int16* v)
{
Delegates.glWindowPos2svMESA((Int16*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3dMESA")]
public static
void WindowPos3(Double x, Double y, Double z)
{
Delegates.glWindowPos3dMESA((Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3dvMESA")]
public static
void WindowPos3(Double[] v)
{
@@ -37407,6 +50320,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3dvMESA")]
public static
void WindowPos3(ref Double v)
{
@@ -37420,18 +50334,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3dvMESA")]
public static
unsafe void WindowPos3(Double* v)
{
Delegates.glWindowPos3dvMESA((Double*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3fMESA")]
public static
void WindowPos3(Single x, Single y, Single z)
{
Delegates.glWindowPos3fMESA((Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3fvMESA")]
public static
void WindowPos3(Single[] v)
{
@@ -37444,6 +50361,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3fvMESA")]
public static
void WindowPos3(ref Single v)
{
@@ -37457,18 +50375,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3fvMESA")]
public static
unsafe void WindowPos3(Single* v)
{
Delegates.glWindowPos3fvMESA((Single*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3iMESA")]
public static
void WindowPos3(Int32 x, Int32 y, Int32 z)
{
Delegates.glWindowPos3iMESA((Int32)x, (Int32)y, (Int32)z);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3ivMESA")]
public static
void WindowPos3(Int32[] v)
{
@@ -37481,6 +50402,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3ivMESA")]
public static
void WindowPos3(ref Int32 v)
{
@@ -37494,18 +50416,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3ivMESA")]
public static
unsafe void WindowPos3(Int32* v)
{
Delegates.glWindowPos3ivMESA((Int32*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3sMESA")]
public static
void WindowPos3(Int16 x, Int16 y, Int16 z)
{
Delegates.glWindowPos3sMESA((Int16)x, (Int16)y, (Int16)z);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3svMESA")]
public static
void WindowPos3(Int16[] v)
{
@@ -37518,6 +50443,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3svMESA")]
public static
void WindowPos3(ref Int16 v)
{
@@ -37531,18 +50457,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos3svMESA")]
public static
unsafe void WindowPos3(Int16* v)
{
Delegates.glWindowPos3svMESA((Int16*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4dMESA")]
public static
void WindowPos4(Double x, Double y, Double z, Double w)
{
Delegates.glWindowPos4dMESA((Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4dvMESA")]
public static
void WindowPos4(Double[] v)
{
@@ -37555,6 +50484,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4dvMESA")]
public static
void WindowPos4(ref Double v)
{
@@ -37568,18 +50498,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4dvMESA")]
public static
unsafe void WindowPos4(Double* v)
{
Delegates.glWindowPos4dvMESA((Double*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4fMESA")]
public static
void WindowPos4(Single x, Single y, Single z, Single w)
{
Delegates.glWindowPos4fMESA((Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4fvMESA")]
public static
void WindowPos4(Single[] v)
{
@@ -37592,6 +50525,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4fvMESA")]
public static
void WindowPos4(ref Single v)
{
@@ -37605,18 +50539,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4fvMESA")]
public static
unsafe void WindowPos4(Single* v)
{
Delegates.glWindowPos4fvMESA((Single*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4iMESA")]
public static
void WindowPos4(Int32 x, Int32 y, Int32 z, Int32 w)
{
Delegates.glWindowPos4iMESA((Int32)x, (Int32)y, (Int32)z, (Int32)w);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4ivMESA")]
public static
void WindowPos4(Int32[] v)
{
@@ -37629,6 +50566,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4ivMESA")]
public static
void WindowPos4(ref Int32 v)
{
@@ -37642,18 +50580,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4ivMESA")]
public static
unsafe void WindowPos4(Int32* v)
{
Delegates.glWindowPos4ivMESA((Int32*)v);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4sMESA")]
public static
void WindowPos4(Int16 x, Int16 y, Int16 z, Int16 w)
{
Delegates.glWindowPos4sMESA((Int16)x, (Int16)y, (Int16)z, (Int16)w);
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4svMESA")]
public static
void WindowPos4(Int16[] v)
{
@@ -37666,6 +50607,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4svMESA")]
public static
void WindowPos4(ref Int16 v)
{
@@ -37679,6 +50621,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "MesaWindowPos", Version = "1.0", EntryPoint = "glWindowPos4svMESA")]
public static
unsafe void WindowPos4(Int16* v)
{
@@ -37689,6 +50632,7 @@ namespace OpenTK.Graphics
public static partial class Ibm
{
+ [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawArraysIBM")]
public static
void MultiModeDrawArrays(OpenTK.Graphics.BeginMode[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride)
{
@@ -37703,6 +50647,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawArraysIBM")]
public static
void MultiModeDrawArrays(ref OpenTK.Graphics.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride)
{
@@ -37718,12 +50663,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawArraysIBM")]
public static
unsafe void MultiModeDrawArrays(OpenTK.Graphics.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride)
{
Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.BeginMode*)mode, (Int32*)first, (Int32*)count, (Int32)primcount, (Int32)modestride);
}
+ [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")]
public static
void MultiModeDrawElements(OpenTK.Graphics.BeginMode[] mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride)
{
@@ -37737,6 +50684,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")]
public static
void MultiModeDrawElements(OpenTK.Graphics.BeginMode[] mode, Int32[] count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount, Int32 modestride)
{
@@ -37758,6 +50706,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")]
public static
void MultiModeDrawElements(ref OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride)
{
@@ -37771,6 +50720,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")]
public static
void MultiModeDrawElements(ref OpenTK.Graphics.BeginMode mode, ref Int32 count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount, Int32 modestride)
{
@@ -37793,6 +50743,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")]
public static
unsafe void MultiModeDrawElements(OpenTK.Graphics.BeginMode* mode, Int32* count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride)
{
@@ -37800,6 +50751,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")]
public static
unsafe void MultiModeDrawElements(OpenTK.Graphics.BeginMode* mode, Int32* count, OpenTK.Graphics.DrawElementsType type, [In, Out] object indices, Int32 primcount, Int32 modestride)
{
@@ -37814,6 +50766,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glColorPointerListIBM")]
public static
void ColorPointerList(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride)
{
@@ -37823,6 +50776,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glColorPointerListIBM")]
public static
void ColorPointerList(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride)
{
@@ -37840,24 +50794,26 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glSecondaryColorPointerListIBM")]
public static
- void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer, Int32 ptrstride)
+ void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride)
{
unsafe
{
- Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride);
+ Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride);
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glSecondaryColorPointerListIBM")]
public static
- void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer, Int32 ptrstride)
+ void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.IbmVertexArrayLists type, Int32 stride, [In, Out] object pointer, Int32 ptrstride)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride);
+ Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride);
}
finally
{
@@ -37866,6 +50822,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glEdgeFlagPointerListIBM")]
public static
void EdgeFlagPointerList(Int32 stride, bool[] pointer, Int32 ptrstride)
{
@@ -37878,6 +50835,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glEdgeFlagPointerListIBM")]
public static
void EdgeFlagPointerList(Int32 stride, ref bool pointer, Int32 ptrstride)
{
@@ -37891,30 +50849,33 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glEdgeFlagPointerListIBM")]
public static
unsafe void EdgeFlagPointerList(Int32 stride, bool* pointer, Int32 ptrstride)
{
Delegates.glEdgeFlagPointerListIBM((Int32)stride, (bool*)pointer, (Int32)ptrstride);
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glFogCoordPointerListIBM")]
public static
- void FogCoordPointerList(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer, Int32 ptrstride)
+ void FogCoordPointerList(OpenTK.Graphics.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride)
{
unsafe
{
- Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride);
+ Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride);
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glFogCoordPointerListIBM")]
public static
- void FogCoordPointerList(OpenTK.Graphics.All type, Int32 stride, [In, Out] object pointer, Int32 ptrstride)
+ void FogCoordPointerList(OpenTK.Graphics.IbmVertexArrayLists type, Int32 stride, [In, Out] object pointer, Int32 ptrstride)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride);
+ Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride);
}
finally
{
@@ -37923,6 +50884,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glIndexPointerListIBM")]
public static
void IndexPointerList(OpenTK.Graphics.IndexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride)
{
@@ -37932,6 +50894,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glIndexPointerListIBM")]
public static
void IndexPointerList(OpenTK.Graphics.IndexPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride)
{
@@ -37949,6 +50912,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glNormalPointerListIBM")]
public static
void NormalPointerList(OpenTK.Graphics.NormalPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride)
{
@@ -37958,6 +50922,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glNormalPointerListIBM")]
public static
void NormalPointerList(OpenTK.Graphics.NormalPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride)
{
@@ -37975,6 +50940,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glTexCoordPointerListIBM")]
public static
void TexCoordPointerList(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride)
{
@@ -37984,6 +50950,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glTexCoordPointerListIBM")]
public static
void TexCoordPointerList(Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride)
{
@@ -38001,6 +50968,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glVertexPointerListIBM")]
public static
void VertexPointerList(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride)
{
@@ -38010,6 +50978,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "IbmVertexArrayLists", Version = "1.1", EntryPoint = "glVertexPointerListIBM")]
public static
void VertexPointerList(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, [In, Out] object pointer, Int32 ptrstride)
{
@@ -38032,12 +51001,14 @@ namespace OpenTK.Graphics
public static partial class GL_3dfx
{
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "3DfxTbuffer", Version = "1.2", EntryPoint = "glTbufferMask3DFX")]
public static
void TbufferMask(UInt32 mask)
{
Delegates.glTbufferMask3DFX((UInt32)mask);
}
+ [AutoGenerated(Category = "3DfxTbuffer", Version = "1.2", EntryPoint = "glTbufferMask3DFX")]
public static
void TbufferMask(Int32 mask)
{
@@ -38048,139 +51019,153 @@ namespace OpenTK.Graphics
public static partial class Ati
{
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glTexBumpParameterivATI")]
public static
- void TexBumpParameter(OpenTK.Graphics.All pname, Int32[] param)
+ void TexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, Int32[] param)
{
unsafe
{
fixed (Int32* param_ptr = param)
{
- Delegates.glTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param_ptr);
+ Delegates.glTexBumpParameterivATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Int32*)param_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glTexBumpParameterivATI")]
public static
- void TexBumpParameter(OpenTK.Graphics.All pname, ref Int32 param)
+ void TexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, ref Int32 param)
{
unsafe
{
fixed (Int32* param_ptr = ¶m)
{
- Delegates.glTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param_ptr);
+ Delegates.glTexBumpParameterivATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Int32*)param_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glTexBumpParameterivATI")]
public static
- unsafe void TexBumpParameter(OpenTK.Graphics.All pname, Int32* param)
+ unsafe void TexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, Int32* param)
{
- Delegates.glTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param);
+ Delegates.glTexBumpParameterivATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Int32*)param);
}
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glTexBumpParameterfvATI")]
public static
- void TexBumpParameter(OpenTK.Graphics.All pname, Single[] param)
+ void TexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, Single[] param)
{
unsafe
{
fixed (Single* param_ptr = param)
{
- Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param_ptr);
+ Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Single*)param_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glTexBumpParameterfvATI")]
public static
- void TexBumpParameter(OpenTK.Graphics.All pname, ref Single param)
+ void TexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, ref Single param)
{
unsafe
{
fixed (Single* param_ptr = ¶m)
{
- Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param_ptr);
+ Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Single*)param_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glTexBumpParameterfvATI")]
public static
- unsafe void TexBumpParameter(OpenTK.Graphics.All pname, Single* param)
+ unsafe void TexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, Single* param)
{
- Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param);
+ Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Single*)param);
}
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glGetTexBumpParameterivATI")]
public static
- void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] Int32[] param)
+ void GetTexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, [Out] Int32[] param)
{
unsafe
{
fixed (Int32* param_ptr = param)
{
- Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param_ptr);
+ Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Int32*)param_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glGetTexBumpParameterivATI")]
public static
- void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] out Int32 param)
+ void GetTexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, [Out] out Int32 param)
{
unsafe
{
fixed (Int32* param_ptr = ¶m)
{
- Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param_ptr);
+ Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Int32*)param_ptr);
param = *param_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glGetTexBumpParameterivATI")]
public static
- unsafe void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] Int32* param)
+ unsafe void GetTexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, [Out] Int32* param)
{
- Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.All)pname, (Int32*)param);
+ Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Int32*)param);
}
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glGetTexBumpParameterfvATI")]
public static
- void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] Single[] param)
+ void GetTexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, [Out] Single[] param)
{
unsafe
{
fixed (Single* param_ptr = param)
{
- Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param_ptr);
+ Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Single*)param_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glGetTexBumpParameterfvATI")]
public static
- void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] out Single param)
+ void GetTexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, [Out] out Single param)
{
unsafe
{
fixed (Single* param_ptr = ¶m)
{
- Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param_ptr);
+ Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Single*)param_ptr);
param = *param_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiEnvmapBumpmap", Version = "1.2", EntryPoint = "glGetTexBumpParameterfvATI")]
public static
- unsafe void GetTexBumpParameter(OpenTK.Graphics.All pname, [Out] Single* param)
+ unsafe void GetTexBumpParameter(OpenTK.Graphics.AtiEnvmapBumpmap pname, [Out] Single* param)
{
- Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.All)pname, (Single*)param);
+ Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.AtiEnvmapBumpmap)pname, (Single*)param);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glGenFragmentShadersATI")]
public static
Int32 GenFragmentShaders(UInt32 range)
{
return Delegates.glGenFragmentShadersATI((UInt32)range);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glGenFragmentShadersATI")]
public static
Int32 GenFragmentShaders(Int32 range)
{
@@ -38188,12 +51173,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glBindFragmentShaderATI")]
public static
void BindFragmentShader(UInt32 id)
{
Delegates.glBindFragmentShaderATI((UInt32)id);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glBindFragmentShaderATI")]
public static
void BindFragmentShader(Int32 id)
{
@@ -38201,24 +51188,28 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glDeleteFragmentShaderATI")]
public static
void DeleteFragmentShader(UInt32 id)
{
Delegates.glDeleteFragmentShaderATI((UInt32)id);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glDeleteFragmentShaderATI")]
public static
void DeleteFragmentShader(Int32 id)
{
Delegates.glDeleteFragmentShaderATI((UInt32)id);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glBeginFragmentShaderATI")]
public static
void BeginFragmentShader()
{
Delegates.glBeginFragmentShaderATI();
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glEndFragmentShaderATI")]
public static
void EndFragmentShader()
{
@@ -38226,110 +51217,127 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glPassTexCoordATI")]
public static
- void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.Graphics.All swizzle)
+ void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.Graphics.AtiFragmentShader swizzle)
{
- Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.All)swizzle);
+ Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.AtiFragmentShader)swizzle);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glPassTexCoordATI")]
public static
- void PassTexCoor(Int32 dst, Int32 coord, OpenTK.Graphics.All swizzle)
+ void PassTexCoor(Int32 dst, Int32 coord, OpenTK.Graphics.AtiFragmentShader swizzle)
{
- Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.All)swizzle);
+ Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.AtiFragmentShader)swizzle);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glSampleMapATI")]
public static
- void SampleMap(UInt32 dst, UInt32 interp, OpenTK.Graphics.All swizzle)
+ void SampleMap(UInt32 dst, UInt32 interp, OpenTK.Graphics.AtiFragmentShader swizzle)
{
- Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.All)swizzle);
+ Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.AtiFragmentShader)swizzle);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glSampleMapATI")]
public static
- void SampleMap(Int32 dst, Int32 interp, OpenTK.Graphics.All swizzle)
+ void SampleMap(Int32 dst, Int32 interp, OpenTK.Graphics.AtiFragmentShader swizzle)
{
- Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.All)swizzle);
+ Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.AtiFragmentShader)swizzle);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glColorFragmentOp1ATI")]
public static
- void ColorFragmentOp1(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod)
+ void ColorFragmentOp1(OpenTK.Graphics.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod)
{
- Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod);
+ Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glColorFragmentOp1ATI")]
public static
- void ColorFragmentOp1(OpenTK.Graphics.All op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod)
+ void ColorFragmentOp1(OpenTK.Graphics.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod)
{
- Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod);
+ Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glColorFragmentOp2ATI")]
public static
- void ColorFragmentOp2(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod)
+ void ColorFragmentOp2(OpenTK.Graphics.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod)
{
- Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod);
+ Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glColorFragmentOp2ATI")]
public static
- void ColorFragmentOp2(OpenTK.Graphics.All op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod)
+ void ColorFragmentOp2(OpenTK.Graphics.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod)
{
- Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod);
+ Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glColorFragmentOp3ATI")]
public static
- void ColorFragmentOp3(OpenTK.Graphics.All 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(OpenTK.Graphics.AtiFragmentShader 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((OpenTK.Graphics.All)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((OpenTK.Graphics.AtiFragmentShader)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);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glColorFragmentOp3ATI")]
public static
- void ColorFragmentOp3(OpenTK.Graphics.All 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(OpenTK.Graphics.AtiFragmentShader 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((OpenTK.Graphics.All)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((OpenTK.Graphics.AtiFragmentShader)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)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glAlphaFragmentOp1ATI")]
public static
- void AlphaFragmentOp1(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod)
+ void AlphaFragmentOp1(OpenTK.Graphics.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod)
{
- Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod);
+ Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glAlphaFragmentOp1ATI")]
public static
- void AlphaFragmentOp1(OpenTK.Graphics.All op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod)
+ void AlphaFragmentOp1(OpenTK.Graphics.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod)
{
- Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod);
+ Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glAlphaFragmentOp2ATI")]
public static
- void AlphaFragmentOp2(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod)
+ void AlphaFragmentOp2(OpenTK.Graphics.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod)
{
- Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod);
+ Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glAlphaFragmentOp2ATI")]
public static
- void AlphaFragmentOp2(OpenTK.Graphics.All op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod)
+ void AlphaFragmentOp2(OpenTK.Graphics.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod, Int32 arg2, Int32 arg2Rep, Int32 arg2Mod)
{
- Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.All)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod);
+ Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glAlphaFragmentOp3ATI")]
public static
- void AlphaFragmentOp3(OpenTK.Graphics.All 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(OpenTK.Graphics.AtiFragmentShader 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((OpenTK.Graphics.All)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((OpenTK.Graphics.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod);
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glAlphaFragmentOp3ATI")]
public static
- void AlphaFragmentOp3(OpenTK.Graphics.All 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(OpenTK.Graphics.AtiFragmentShader 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((OpenTK.Graphics.All)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((OpenTK.Graphics.AtiFragmentShader)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)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glSetFragmentShaderConstantATI")]
public static
void SetFragmentShaderConstant(UInt32 dst, Single[] value)
{
@@ -38342,6 +51350,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glSetFragmentShaderConstantATI")]
public static
void SetFragmentShaderConstant(Int32 dst, Single[] value)
{
@@ -38355,6 +51364,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glSetFragmentShaderConstantATI")]
public static
void SetFragmentShaderConstant(UInt32 dst, ref Single value)
{
@@ -38367,6 +51377,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glSetFragmentShaderConstantATI")]
public static
void SetFragmentShaderConstant(Int32 dst, ref Single value)
{
@@ -38380,6 +51391,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glSetFragmentShaderConstantATI")]
public static
unsafe void SetFragmentShaderConstant(UInt32 dst, Single* value)
{
@@ -38387,42 +51399,47 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glSetFragmentShaderConstantATI")]
public static
unsafe void SetFragmentShaderConstant(Int32 dst, Single* value)
{
Delegates.glSetFragmentShaderConstantATI((UInt32)dst, (Single*)value);
}
+ [AutoGenerated(Category = "AtiPnTriangles", Version = "1.2", EntryPoint = "glPNTrianglesiATI")]
public static
- void PNTriangles(OpenTK.Graphics.All pname, Int32 param)
+ void PNTriangles(OpenTK.Graphics.AtiPnTriangles pname, Int32 param)
{
- Delegates.glPNTrianglesiATI((OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glPNTrianglesiATI((OpenTK.Graphics.AtiPnTriangles)pname, (Int32)param);
}
+ [AutoGenerated(Category = "AtiPnTriangles", Version = "1.2", EntryPoint = "glPNTrianglesfATI")]
public static
- void PNTriangles(OpenTK.Graphics.All pname, Single param)
+ void PNTriangles(OpenTK.Graphics.AtiPnTriangles pname, Single param)
{
- Delegates.glPNTrianglesfATI((OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glPNTrianglesfATI((OpenTK.Graphics.AtiPnTriangles)pname, (Single)param);
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glNewObjectBufferATI")]
public static
- Int32 NewObjectBuffer(Int32 size, IntPtr pointer, OpenTK.Graphics.All usage)
+ Int32 NewObjectBuffer(Int32 size, IntPtr pointer, OpenTK.Graphics.AtiVertexArrayObject usage)
{
unsafe
{
- return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer, (OpenTK.Graphics.All)usage);
+ return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer, (OpenTK.Graphics.AtiVertexArrayObject)usage);
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glNewObjectBufferATI")]
public static
- Int32 NewObjectBuffer(Int32 size, [In, Out] object pointer, OpenTK.Graphics.All usage)
+ Int32 NewObjectBuffer(Int32 size, [In, Out] object pointer, OpenTK.Graphics.AtiVertexArrayObject usage)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.All)usage);
+ return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.AtiVertexArrayObject)usage);
}
finally
{
@@ -38432,12 +51449,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glIsObjectBufferATI")]
public static
bool IsObjectBuffer(UInt32 buffer)
{
return Delegates.glIsObjectBufferATI((UInt32)buffer);
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glIsObjectBufferATI")]
public static
bool IsObjectBuffer(Int32 buffer)
{
@@ -38445,34 +51464,37 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glUpdateObjectBufferATI")]
public static
- void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.All preserve)
+ void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.AtiVertexArrayObject preserve)
{
unsafe
{
- Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.All)preserve);
+ Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.AtiVertexArrayObject)preserve);
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glUpdateObjectBufferATI")]
public static
- void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.All preserve)
+ void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.AtiVertexArrayObject preserve)
{
unsafe
{
- Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.All)preserve);
+ Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.AtiVertexArrayObject)preserve);
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glUpdateObjectBufferATI")]
public static
- void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [In, Out] object pointer, OpenTK.Graphics.All preserve)
+ void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [In, Out] object pointer, OpenTK.Graphics.AtiVertexArrayObject preserve)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.All)preserve);
+ Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.AtiVertexArrayObject)preserve);
}
finally
{
@@ -38481,15 +51503,16 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glUpdateObjectBufferATI")]
public static
- void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [In, Out] object pointer, OpenTK.Graphics.All preserve)
+ void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [In, Out] object pointer, OpenTK.Graphics.AtiVertexArrayObject preserve)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.All)preserve);
+ Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.AtiVertexArrayObject)preserve);
}
finally
{
@@ -38499,144 +51522,158 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferfvATI")]
public static
- void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferfvATI")]
public static
- void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferfvATI")]
public static
- void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferfvATI")]
public static
- void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferfvATI")]
public static
- unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single* @params)
{
- Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferfvATI")]
public static
- unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single* @params)
{
- Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferivATI")]
public static
- void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferivATI")]
public static
- void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferivATI")]
public static
- void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferivATI")]
public static
- void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferivATI")]
public static
- unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32* @params)
{
- Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetObjectBufferivATI")]
public static
- unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32* @params)
{
- Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glFreeObjectBufferATI")]
public static
void FreeObjectBuffer(UInt32 buffer)
{
Delegates.glFreeObjectBufferATI((UInt32)buffer);
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glFreeObjectBufferATI")]
public static
void FreeObjectBuffer(Int32 buffer)
{
@@ -38644,1080 +51681,1195 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glArrayObjectATI")]
public static
- void ArrayObject(OpenTK.Graphics.EnableCap array, Int32 size, OpenTK.Graphics.All type, Int32 stride, UInt32 buffer, UInt32 offset)
+ void ArrayObject(OpenTK.Graphics.EnableCap array, Int32 size, OpenTK.Graphics.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset)
{
- Delegates.glArrayObjectATI((OpenTK.Graphics.EnableCap)array, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset);
+ Delegates.glArrayObjectATI((OpenTK.Graphics.EnableCap)array, (Int32)size, (OpenTK.Graphics.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset);
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glArrayObjectATI")]
public static
- void ArrayObject(OpenTK.Graphics.EnableCap array, Int32 size, OpenTK.Graphics.All type, Int32 stride, Int32 buffer, Int32 offset)
+ void ArrayObject(OpenTK.Graphics.EnableCap array, Int32 size, OpenTK.Graphics.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset)
{
- Delegates.glArrayObjectATI((OpenTK.Graphics.EnableCap)array, (Int32)size, (OpenTK.Graphics.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset);
+ Delegates.glArrayObjectATI((OpenTK.Graphics.EnableCap)array, (Int32)size, (OpenTK.Graphics.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset);
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetArrayObjectfvATI")]
public static
- void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetArrayObjectfvATI")]
public static
- void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetArrayObjectfvATI")]
public static
- unsafe void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single* @params)
{
- Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params);
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetArrayObjectivATI")]
public static
- void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetArrayObjectivATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetArrayObjectivATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetArrayObjectivATI")]
public static
- void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetArrayObjectivATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetArrayObjectivATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetArrayObjectivATI")]
public static
- unsafe void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetArrayObject(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32* @params)
{
- Delegates.glGetArrayObjectivATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetArrayObjectivATI((OpenTK.Graphics.EnableCap)array, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glVariantArrayObjectATI")]
public static
- void VariantArrayObject(UInt32 id, OpenTK.Graphics.All type, Int32 stride, UInt32 buffer, UInt32 offset)
+ void VariantArrayObject(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset)
{
- Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset);
+ Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset);
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glVariantArrayObjectATI")]
public static
- void VariantArrayObject(Int32 id, OpenTK.Graphics.All type, Int32 stride, Int32 buffer, Int32 offset)
+ void VariantArrayObject(Int32 id, OpenTK.Graphics.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset)
{
- Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.All)type, (Int32)stride, (UInt32)buffer, (UInt32)offset);
+ Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectfvATI")]
public static
- void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectfvATI")]
public static
- void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetVariantArrayObject(Int32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectfvATI")]
public static
- void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectfvATI")]
public static
- void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetVariantArrayObject(Int32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectfvATI")]
public static
- unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single* @params)
{
- Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectfvATI")]
public static
- unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single* @params)
{
- Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectivATI")]
public static
- void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectivATI")]
public static
- void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetVariantArrayObject(Int32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectivATI")]
public static
- void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectivATI")]
public static
- void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetVariantArrayObject(Int32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectivATI")]
public static
- unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32* @params)
{
- Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexArrayObject", Version = "1.2", EntryPoint = "glGetVariantArrayObjectivATI")]
public static
- unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32* @params)
{
- Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.AtiVertexArrayObject)pname, (Int32*)@params);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1sATI")]
public static
- void VertexStream1(OpenTK.Graphics.All stream, Int16 x)
+ void VertexStream1(OpenTK.Graphics.AtiVertexStreams stream, Int16 x)
{
- Delegates.glVertexStream1sATI((OpenTK.Graphics.All)stream, (Int16)x);
+ Delegates.glVertexStream1sATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16)x);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1svATI")]
public static
- void VertexStream1v(OpenTK.Graphics.All stream, Int16[] coords)
+ void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, Int16[] coords)
{
unsafe
{
fixed (Int16* coords_ptr = coords)
{
- Delegates.glVertexStream1svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glVertexStream1svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1svATI")]
public static
- void VertexStream1v(OpenTK.Graphics.All stream, ref Int16 coords)
+ void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, ref Int16 coords)
{
unsafe
{
fixed (Int16* coords_ptr = &coords)
{
- Delegates.glVertexStream1svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glVertexStream1svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1svATI")]
public static
- unsafe void VertexStream1v(OpenTK.Graphics.All stream, Int16* coords)
+ unsafe void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords)
{
- Delegates.glVertexStream1svATI((OpenTK.Graphics.All)stream, (Int16*)coords);
+ Delegates.glVertexStream1svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1iATI")]
public static
- void VertexStream1(OpenTK.Graphics.All stream, Int32 x)
+ void VertexStream1(OpenTK.Graphics.AtiVertexStreams stream, Int32 x)
{
- Delegates.glVertexStream1iATI((OpenTK.Graphics.All)stream, (Int32)x);
+ Delegates.glVertexStream1iATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32)x);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1ivATI")]
public static
- void VertexStream1v(OpenTK.Graphics.All stream, Int32[] coords)
+ void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, Int32[] coords)
{
unsafe
{
fixed (Int32* coords_ptr = coords)
{
- Delegates.glVertexStream1ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glVertexStream1ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1ivATI")]
public static
- void VertexStream1v(OpenTK.Graphics.All stream, ref Int32 coords)
+ void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, ref Int32 coords)
{
unsafe
{
fixed (Int32* coords_ptr = &coords)
{
- Delegates.glVertexStream1ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glVertexStream1ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1ivATI")]
public static
- unsafe void VertexStream1v(OpenTK.Graphics.All stream, Int32* coords)
+ unsafe void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords)
{
- Delegates.glVertexStream1ivATI((OpenTK.Graphics.All)stream, (Int32*)coords);
+ Delegates.glVertexStream1ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1fATI")]
public static
- void VertexStream1(OpenTK.Graphics.All stream, Single x)
+ void VertexStream1(OpenTK.Graphics.AtiVertexStreams stream, Single x)
{
- Delegates.glVertexStream1fATI((OpenTK.Graphics.All)stream, (Single)x);
+ Delegates.glVertexStream1fATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single)x);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1fvATI")]
public static
- void VertexStream1v(OpenTK.Graphics.All stream, Single[] coords)
+ void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, Single[] coords)
{
unsafe
{
fixed (Single* coords_ptr = coords)
{
- Delegates.glVertexStream1fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glVertexStream1fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1fvATI")]
public static
- void VertexStream1v(OpenTK.Graphics.All stream, ref Single coords)
+ void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, ref Single coords)
{
unsafe
{
fixed (Single* coords_ptr = &coords)
{
- Delegates.glVertexStream1fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glVertexStream1fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1fvATI")]
public static
- unsafe void VertexStream1v(OpenTK.Graphics.All stream, Single* coords)
+ unsafe void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, Single* coords)
{
- Delegates.glVertexStream1fvATI((OpenTK.Graphics.All)stream, (Single*)coords);
+ Delegates.glVertexStream1fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1dATI")]
public static
- void VertexStream1(OpenTK.Graphics.All stream, Double x)
+ void VertexStream1(OpenTK.Graphics.AtiVertexStreams stream, Double x)
{
- Delegates.glVertexStream1dATI((OpenTK.Graphics.All)stream, (Double)x);
+ Delegates.glVertexStream1dATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double)x);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1dvATI")]
public static
- void VertexStream1v(OpenTK.Graphics.All stream, Double[] coords)
+ void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, Double[] coords)
{
unsafe
{
fixed (Double* coords_ptr = coords)
{
- Delegates.glVertexStream1dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glVertexStream1dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1dvATI")]
public static
- void VertexStream1v(OpenTK.Graphics.All stream, ref Double coords)
+ void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, ref Double coords)
{
unsafe
{
fixed (Double* coords_ptr = &coords)
{
- Delegates.glVertexStream1dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glVertexStream1dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream1dvATI")]
public static
- unsafe void VertexStream1v(OpenTK.Graphics.All stream, Double* coords)
+ unsafe void VertexStream1v(OpenTK.Graphics.AtiVertexStreams stream, Double* coords)
{
- Delegates.glVertexStream1dvATI((OpenTK.Graphics.All)stream, (Double*)coords);
+ Delegates.glVertexStream1dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2sATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, Int16 x, Int16 y)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Int16 x, Int16 y)
{
- Delegates.glVertexStream2sATI((OpenTK.Graphics.All)stream, (Int16)x, (Int16)y);
+ Delegates.glVertexStream2sATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16)x, (Int16)y);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2svATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, Int16[] coords)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Int16[] coords)
{
unsafe
{
fixed (Int16* coords_ptr = coords)
{
- Delegates.glVertexStream2svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glVertexStream2svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2svATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, ref Int16 coords)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, ref Int16 coords)
{
unsafe
{
fixed (Int16* coords_ptr = &coords)
{
- Delegates.glVertexStream2svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glVertexStream2svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2svATI")]
public static
- unsafe void VertexStream2(OpenTK.Graphics.All stream, Int16* coords)
+ unsafe void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords)
{
- Delegates.glVertexStream2svATI((OpenTK.Graphics.All)stream, (Int16*)coords);
+ Delegates.glVertexStream2svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2iATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, Int32 x, Int32 y)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Int32 x, Int32 y)
{
- Delegates.glVertexStream2iATI((OpenTK.Graphics.All)stream, (Int32)x, (Int32)y);
+ Delegates.glVertexStream2iATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32)x, (Int32)y);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2ivATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, Int32[] coords)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Int32[] coords)
{
unsafe
{
fixed (Int32* coords_ptr = coords)
{
- Delegates.glVertexStream2ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glVertexStream2ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2ivATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, ref Int32 coords)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, ref Int32 coords)
{
unsafe
{
fixed (Int32* coords_ptr = &coords)
{
- Delegates.glVertexStream2ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glVertexStream2ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2ivATI")]
public static
- unsafe void VertexStream2(OpenTK.Graphics.All stream, Int32* coords)
+ unsafe void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords)
{
- Delegates.glVertexStream2ivATI((OpenTK.Graphics.All)stream, (Int32*)coords);
+ Delegates.glVertexStream2ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2fATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, Single x, Single y)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Single x, Single y)
{
- Delegates.glVertexStream2fATI((OpenTK.Graphics.All)stream, (Single)x, (Single)y);
+ Delegates.glVertexStream2fATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single)x, (Single)y);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2fvATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, Single[] coords)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Single[] coords)
{
unsafe
{
fixed (Single* coords_ptr = coords)
{
- Delegates.glVertexStream2fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glVertexStream2fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2fvATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, ref Single coords)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, ref Single coords)
{
unsafe
{
fixed (Single* coords_ptr = &coords)
{
- Delegates.glVertexStream2fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glVertexStream2fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2fvATI")]
public static
- unsafe void VertexStream2(OpenTK.Graphics.All stream, Single* coords)
+ unsafe void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Single* coords)
{
- Delegates.glVertexStream2fvATI((OpenTK.Graphics.All)stream, (Single*)coords);
+ Delegates.glVertexStream2fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2dATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, Double x, Double y)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Double x, Double y)
{
- Delegates.glVertexStream2dATI((OpenTK.Graphics.All)stream, (Double)x, (Double)y);
+ Delegates.glVertexStream2dATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double)x, (Double)y);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2dvATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, Double[] coords)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Double[] coords)
{
unsafe
{
fixed (Double* coords_ptr = coords)
{
- Delegates.glVertexStream2dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glVertexStream2dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2dvATI")]
public static
- void VertexStream2(OpenTK.Graphics.All stream, ref Double coords)
+ void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, ref Double coords)
{
unsafe
{
fixed (Double* coords_ptr = &coords)
{
- Delegates.glVertexStream2dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glVertexStream2dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream2dvATI")]
public static
- unsafe void VertexStream2(OpenTK.Graphics.All stream, Double* coords)
+ unsafe void VertexStream2(OpenTK.Graphics.AtiVertexStreams stream, Double* coords)
{
- Delegates.glVertexStream2dvATI((OpenTK.Graphics.All)stream, (Double*)coords);
+ Delegates.glVertexStream2dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3sATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, Int16 x, Int16 y, Int16 z)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z)
{
- Delegates.glVertexStream3sATI((OpenTK.Graphics.All)stream, (Int16)x, (Int16)y, (Int16)z);
+ Delegates.glVertexStream3sATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16)x, (Int16)y, (Int16)z);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3svATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, Int16[] coords)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Int16[] coords)
{
unsafe
{
fixed (Int16* coords_ptr = coords)
{
- Delegates.glVertexStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glVertexStream3svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3svATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, ref Int16 coords)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, ref Int16 coords)
{
unsafe
{
fixed (Int16* coords_ptr = &coords)
{
- Delegates.glVertexStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glVertexStream3svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3svATI")]
public static
- unsafe void VertexStream3(OpenTK.Graphics.All stream, Int16* coords)
+ unsafe void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords)
{
- Delegates.glVertexStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords);
+ Delegates.glVertexStream3svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3iATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, Int32 x, Int32 y, Int32 z)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z)
{
- Delegates.glVertexStream3iATI((OpenTK.Graphics.All)stream, (Int32)x, (Int32)y, (Int32)z);
+ Delegates.glVertexStream3iATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32)x, (Int32)y, (Int32)z);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3ivATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, Int32[] coords)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Int32[] coords)
{
unsafe
{
fixed (Int32* coords_ptr = coords)
{
- Delegates.glVertexStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glVertexStream3ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3ivATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, ref Int32 coords)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, ref Int32 coords)
{
unsafe
{
fixed (Int32* coords_ptr = &coords)
{
- Delegates.glVertexStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glVertexStream3ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3ivATI")]
public static
- unsafe void VertexStream3(OpenTK.Graphics.All stream, Int32* coords)
+ unsafe void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords)
{
- Delegates.glVertexStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords);
+ Delegates.glVertexStream3ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3fATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, Single x, Single y, Single z)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Single x, Single y, Single z)
{
- Delegates.glVertexStream3fATI((OpenTK.Graphics.All)stream, (Single)x, (Single)y, (Single)z);
+ Delegates.glVertexStream3fATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single)x, (Single)y, (Single)z);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3fvATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, Single[] coords)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Single[] coords)
{
unsafe
{
fixed (Single* coords_ptr = coords)
{
- Delegates.glVertexStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glVertexStream3fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3fvATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, ref Single coords)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, ref Single coords)
{
unsafe
{
fixed (Single* coords_ptr = &coords)
{
- Delegates.glVertexStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glVertexStream3fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3fvATI")]
public static
- unsafe void VertexStream3(OpenTK.Graphics.All stream, Single* coords)
+ unsafe void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Single* coords)
{
- Delegates.glVertexStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords);
+ Delegates.glVertexStream3fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3dATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, Double x, Double y, Double z)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Double x, Double y, Double z)
{
- Delegates.glVertexStream3dATI((OpenTK.Graphics.All)stream, (Double)x, (Double)y, (Double)z);
+ Delegates.glVertexStream3dATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double)x, (Double)y, (Double)z);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3dvATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, Double[] coords)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Double[] coords)
{
unsafe
{
fixed (Double* coords_ptr = coords)
{
- Delegates.glVertexStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glVertexStream3dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3dvATI")]
public static
- void VertexStream3(OpenTK.Graphics.All stream, ref Double coords)
+ void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, ref Double coords)
{
unsafe
{
fixed (Double* coords_ptr = &coords)
{
- Delegates.glVertexStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glVertexStream3dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream3dvATI")]
public static
- unsafe void VertexStream3(OpenTK.Graphics.All stream, Double* coords)
+ unsafe void VertexStream3(OpenTK.Graphics.AtiVertexStreams stream, Double* coords)
{
- Delegates.glVertexStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords);
+ Delegates.glVertexStream3dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4sATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, Int16 x, Int16 y, Int16 z, Int16 w)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z, Int16 w)
{
- Delegates.glVertexStream4sATI((OpenTK.Graphics.All)stream, (Int16)x, (Int16)y, (Int16)z, (Int16)w);
+ Delegates.glVertexStream4sATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16)x, (Int16)y, (Int16)z, (Int16)w);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4svATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, Int16[] coords)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Int16[] coords)
{
unsafe
{
fixed (Int16* coords_ptr = coords)
{
- Delegates.glVertexStream4svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glVertexStream4svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4svATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, ref Int16 coords)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, ref Int16 coords)
{
unsafe
{
fixed (Int16* coords_ptr = &coords)
{
- Delegates.glVertexStream4svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glVertexStream4svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4svATI")]
public static
- unsafe void VertexStream4(OpenTK.Graphics.All stream, Int16* coords)
+ unsafe void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords)
{
- Delegates.glVertexStream4svATI((OpenTK.Graphics.All)stream, (Int16*)coords);
+ Delegates.glVertexStream4svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4iATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, Int32 x, Int32 y, Int32 z, Int32 w)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z, Int32 w)
{
- Delegates.glVertexStream4iATI((OpenTK.Graphics.All)stream, (Int32)x, (Int32)y, (Int32)z, (Int32)w);
+ Delegates.glVertexStream4iATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32)x, (Int32)y, (Int32)z, (Int32)w);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4ivATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, Int32[] coords)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Int32[] coords)
{
unsafe
{
fixed (Int32* coords_ptr = coords)
{
- Delegates.glVertexStream4ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glVertexStream4ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4ivATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, ref Int32 coords)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, ref Int32 coords)
{
unsafe
{
fixed (Int32* coords_ptr = &coords)
{
- Delegates.glVertexStream4ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glVertexStream4ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4ivATI")]
public static
- unsafe void VertexStream4(OpenTK.Graphics.All stream, Int32* coords)
+ unsafe void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords)
{
- Delegates.glVertexStream4ivATI((OpenTK.Graphics.All)stream, (Int32*)coords);
+ Delegates.glVertexStream4ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4fATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, Single x, Single y, Single z, Single w)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Single x, Single y, Single z, Single w)
{
- Delegates.glVertexStream4fATI((OpenTK.Graphics.All)stream, (Single)x, (Single)y, (Single)z, (Single)w);
+ Delegates.glVertexStream4fATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single)x, (Single)y, (Single)z, (Single)w);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4fvATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, Single[] coords)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Single[] coords)
{
unsafe
{
fixed (Single* coords_ptr = coords)
{
- Delegates.glVertexStream4fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glVertexStream4fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4fvATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, ref Single coords)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, ref Single coords)
{
unsafe
{
fixed (Single* coords_ptr = &coords)
{
- Delegates.glVertexStream4fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glVertexStream4fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4fvATI")]
public static
- unsafe void VertexStream4(OpenTK.Graphics.All stream, Single* coords)
+ unsafe void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Single* coords)
{
- Delegates.glVertexStream4fvATI((OpenTK.Graphics.All)stream, (Single*)coords);
+ Delegates.glVertexStream4fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4dATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, Double x, Double y, Double z, Double w)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Double x, Double y, Double z, Double w)
{
- Delegates.glVertexStream4dATI((OpenTK.Graphics.All)stream, (Double)x, (Double)y, (Double)z, (Double)w);
+ Delegates.glVertexStream4dATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double)x, (Double)y, (Double)z, (Double)w);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4dvATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, Double[] coords)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Double[] coords)
{
unsafe
{
fixed (Double* coords_ptr = coords)
{
- Delegates.glVertexStream4dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glVertexStream4dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4dvATI")]
public static
- void VertexStream4(OpenTK.Graphics.All stream, ref Double coords)
+ void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, ref Double coords)
{
unsafe
{
fixed (Double* coords_ptr = &coords)
{
- Delegates.glVertexStream4dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glVertexStream4dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexStream4dvATI")]
public static
- unsafe void VertexStream4(OpenTK.Graphics.All stream, Double* coords)
+ unsafe void VertexStream4(OpenTK.Graphics.AtiVertexStreams stream, Double* coords)
{
- Delegates.glVertexStream4dvATI((OpenTK.Graphics.All)stream, (Double*)coords);
+ Delegates.glVertexStream4dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3bATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, SByte nx, SByte ny, SByte nz)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, SByte nx, SByte ny, SByte nz)
{
- Delegates.glNormalStream3bATI((OpenTK.Graphics.All)stream, (SByte)nx, (SByte)ny, (SByte)nz);
+ Delegates.glNormalStream3bATI((OpenTK.Graphics.AtiVertexStreams)stream, (SByte)nx, (SByte)ny, (SByte)nz);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3bATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Byte nx, Byte ny, Byte nz)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Byte nx, Byte ny, Byte nz)
{
- Delegates.glNormalStream3bATI((OpenTK.Graphics.All)stream, (SByte)nx, (SByte)ny, (SByte)nz);
+ Delegates.glNormalStream3bATI((OpenTK.Graphics.AtiVertexStreams)stream, (SByte)nx, (SByte)ny, (SByte)nz);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3bvATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, SByte[] coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, SByte[] coords)
{
unsafe
{
fixed (SByte* coords_ptr = coords)
{
- Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords_ptr);
+ Delegates.glNormalStream3bvATI((OpenTK.Graphics.AtiVertexStreams)stream, (SByte*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3bvATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Byte[] coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Byte[] coords)
{
unsafe
{
fixed (Byte* coords_ptr = coords)
{
- Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords_ptr);
+ Delegates.glNormalStream3bvATI((OpenTK.Graphics.AtiVertexStreams)stream, (SByte*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3bvATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, ref SByte coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, ref SByte coords)
{
unsafe
{
fixed (SByte* coords_ptr = &coords)
{
- Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords_ptr);
+ Delegates.glNormalStream3bvATI((OpenTK.Graphics.AtiVertexStreams)stream, (SByte*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3bvATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, ref Byte coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, ref Byte coords)
{
unsafe
{
fixed (Byte* coords_ptr = &coords)
{
- Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords_ptr);
+ Delegates.glNormalStream3bvATI((OpenTK.Graphics.AtiVertexStreams)stream, (SByte*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3bvATI")]
public static
- unsafe void NormalStream3(OpenTK.Graphics.All stream, SByte* coords)
+ unsafe void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, SByte* coords)
{
- Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords);
+ Delegates.glNormalStream3bvATI((OpenTK.Graphics.AtiVertexStreams)stream, (SByte*)coords);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3bvATI")]
public static
- unsafe void NormalStream3(OpenTK.Graphics.All stream, Byte* coords)
+ unsafe void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Byte* coords)
{
- Delegates.glNormalStream3bvATI((OpenTK.Graphics.All)stream, (SByte*)coords);
+ Delegates.glNormalStream3bvATI((OpenTK.Graphics.AtiVertexStreams)stream, (SByte*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3sATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Int16 nx, Int16 ny, Int16 nz)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Int16 nx, Int16 ny, Int16 nz)
{
- Delegates.glNormalStream3sATI((OpenTK.Graphics.All)stream, (Int16)nx, (Int16)ny, (Int16)nz);
+ Delegates.glNormalStream3sATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16)nx, (Int16)ny, (Int16)nz);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3svATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Int16[] coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Int16[] coords)
{
unsafe
{
fixed (Int16* coords_ptr = coords)
{
- Delegates.glNormalStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glNormalStream3svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3svATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, ref Int16 coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, ref Int16 coords)
{
unsafe
{
fixed (Int16* coords_ptr = &coords)
{
- Delegates.glNormalStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords_ptr);
+ Delegates.glNormalStream3svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3svATI")]
public static
- unsafe void NormalStream3(OpenTK.Graphics.All stream, Int16* coords)
+ unsafe void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords)
{
- Delegates.glNormalStream3svATI((OpenTK.Graphics.All)stream, (Int16*)coords);
+ Delegates.glNormalStream3svATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int16*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3iATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Int32 nx, Int32 ny, Int32 nz)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Int32 nx, Int32 ny, Int32 nz)
{
- Delegates.glNormalStream3iATI((OpenTK.Graphics.All)stream, (Int32)nx, (Int32)ny, (Int32)nz);
+ Delegates.glNormalStream3iATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32)nx, (Int32)ny, (Int32)nz);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3ivATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Int32[] coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Int32[] coords)
{
unsafe
{
fixed (Int32* coords_ptr = coords)
{
- Delegates.glNormalStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glNormalStream3ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3ivATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, ref Int32 coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, ref Int32 coords)
{
unsafe
{
fixed (Int32* coords_ptr = &coords)
{
- Delegates.glNormalStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords_ptr);
+ Delegates.glNormalStream3ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3ivATI")]
public static
- unsafe void NormalStream3(OpenTK.Graphics.All stream, Int32* coords)
+ unsafe void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords)
{
- Delegates.glNormalStream3ivATI((OpenTK.Graphics.All)stream, (Int32*)coords);
+ Delegates.glNormalStream3ivATI((OpenTK.Graphics.AtiVertexStreams)stream, (Int32*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3fATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Single nx, Single ny, Single nz)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Single nx, Single ny, Single nz)
{
- Delegates.glNormalStream3fATI((OpenTK.Graphics.All)stream, (Single)nx, (Single)ny, (Single)nz);
+ Delegates.glNormalStream3fATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single)nx, (Single)ny, (Single)nz);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3fvATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Single[] coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Single[] coords)
{
unsafe
{
fixed (Single* coords_ptr = coords)
{
- Delegates.glNormalStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glNormalStream3fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3fvATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, ref Single coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, ref Single coords)
{
unsafe
{
fixed (Single* coords_ptr = &coords)
{
- Delegates.glNormalStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords_ptr);
+ Delegates.glNormalStream3fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3fvATI")]
public static
- unsafe void NormalStream3(OpenTK.Graphics.All stream, Single* coords)
+ unsafe void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Single* coords)
{
- Delegates.glNormalStream3fvATI((OpenTK.Graphics.All)stream, (Single*)coords);
+ Delegates.glNormalStream3fvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Single*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3dATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Double nx, Double ny, Double nz)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Double nx, Double ny, Double nz)
{
- Delegates.glNormalStream3dATI((OpenTK.Graphics.All)stream, (Double)nx, (Double)ny, (Double)nz);
+ Delegates.glNormalStream3dATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double)nx, (Double)ny, (Double)nz);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3dvATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, Double[] coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Double[] coords)
{
unsafe
{
fixed (Double* coords_ptr = coords)
{
- Delegates.glNormalStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glNormalStream3dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3dvATI")]
public static
- void NormalStream3(OpenTK.Graphics.All stream, ref Double coords)
+ void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, ref Double coords)
{
unsafe
{
fixed (Double* coords_ptr = &coords)
{
- Delegates.glNormalStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords_ptr);
+ Delegates.glNormalStream3dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glNormalStream3dvATI")]
public static
- unsafe void NormalStream3(OpenTK.Graphics.All stream, Double* coords)
+ unsafe void NormalStream3(OpenTK.Graphics.AtiVertexStreams stream, Double* coords)
{
- Delegates.glNormalStream3dvATI((OpenTK.Graphics.All)stream, (Double*)coords);
+ Delegates.glNormalStream3dvATI((OpenTK.Graphics.AtiVertexStreams)stream, (Double*)coords);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glClientActiveVertexStreamATI")]
public static
- void ClientActiveVertexStream(OpenTK.Graphics.All stream)
+ void ClientActiveVertexStream(OpenTK.Graphics.AtiVertexStreams stream)
{
- Delegates.glClientActiveVertexStreamATI((OpenTK.Graphics.All)stream);
+ Delegates.glClientActiveVertexStreamATI((OpenTK.Graphics.AtiVertexStreams)stream);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexBlendEnviATI")]
public static
- void VertexBlendEnv(OpenTK.Graphics.All pname, Int32 param)
+ void VertexBlendEnv(OpenTK.Graphics.AtiVertexStreams pname, Int32 param)
{
- Delegates.glVertexBlendEnviATI((OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glVertexBlendEnviATI((OpenTK.Graphics.AtiVertexStreams)pname, (Int32)param);
}
+ [AutoGenerated(Category = "AtiVertexStreams", Version = "1.2", EntryPoint = "glVertexBlendEnvfATI")]
public static
- void VertexBlendEnv(OpenTK.Graphics.All pname, Single param)
+ void VertexBlendEnv(OpenTK.Graphics.AtiVertexStreams pname, Single param)
{
- Delegates.glVertexBlendEnvfATI((OpenTK.Graphics.All)pname, (Single)param);
+ Delegates.glVertexBlendEnvfATI((OpenTK.Graphics.AtiVertexStreams)pname, (Single)param);
}
+ [AutoGenerated(Category = "AtiElementArray", Version = "1.2", EntryPoint = "glElementPointerATI")]
public static
- void ElementPointer(OpenTK.Graphics.All type, IntPtr pointer)
+ void ElementPointer(OpenTK.Graphics.AtiElementArray type, IntPtr pointer)
{
unsafe
{
- Delegates.glElementPointerATI((OpenTK.Graphics.All)type, (IntPtr)pointer);
+ Delegates.glElementPointerATI((OpenTK.Graphics.AtiElementArray)type, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "AtiElementArray", Version = "1.2", EntryPoint = "glElementPointerATI")]
public static
- void ElementPointer(OpenTK.Graphics.All type, [In, Out] object pointer)
+ void ElementPointer(OpenTK.Graphics.AtiElementArray type, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glElementPointerATI((OpenTK.Graphics.All)type, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glElementPointerATI((OpenTK.Graphics.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -39726,6 +52878,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AtiElementArray", Version = "1.2", EntryPoint = "glDrawElementArrayATI")]
public static
void DrawElementArray(OpenTK.Graphics.BeginMode mode, Int32 count)
{
@@ -39733,50 +52886,56 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiElementArray", Version = "1.2", EntryPoint = "glDrawRangeElementArrayATI")]
public static
void DrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count)
{
Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count);
}
+ [AutoGenerated(Category = "AtiElementArray", Version = "1.2", EntryPoint = "glDrawRangeElementArrayATI")]
public static
void DrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 count)
{
Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)count);
}
+ [AutoGenerated(Category = "AtiDrawBuffers", Version = "1.2", EntryPoint = "glDrawBuffersATI")]
public static
- void DrawBuffers(Int32 n, OpenTK.Graphics.All[] bufs)
+ void DrawBuffers(Int32 n, OpenTK.Graphics.AtiDrawBuffers[] bufs)
{
unsafe
{
- fixed (OpenTK.Graphics.All* bufs_ptr = bufs)
+ fixed (OpenTK.Graphics.AtiDrawBuffers* bufs_ptr = bufs)
{
- Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.All*)bufs_ptr);
+ Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.AtiDrawBuffers*)bufs_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiDrawBuffers", Version = "1.2", EntryPoint = "glDrawBuffersATI")]
public static
- void DrawBuffers(Int32 n, ref OpenTK.Graphics.All bufs)
+ void DrawBuffers(Int32 n, ref OpenTK.Graphics.AtiDrawBuffers bufs)
{
unsafe
{
- fixed (OpenTK.Graphics.All* bufs_ptr = &bufs)
+ fixed (OpenTK.Graphics.AtiDrawBuffers* bufs_ptr = &bufs)
{
- Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.All*)bufs_ptr);
+ Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.AtiDrawBuffers*)bufs_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiDrawBuffers", Version = "1.2", EntryPoint = "glDrawBuffersATI")]
public static
- unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.All* bufs)
+ unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.AtiDrawBuffers* bufs)
{
- Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.All*)bufs);
+ Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.AtiDrawBuffers*)bufs);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiMapObjectBuffer", Version = "1.2", EntryPoint = "glMapObjectBufferATI")]
public static
unsafe IntPtr MapObjectBuffer(UInt32 buffer)
{
@@ -39784,6 +52943,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiMapObjectBuffer", Version = "1.2", EntryPoint = "glMapObjectBufferATI")]
public static
unsafe IntPtr MapObjectBuffer(Int32 buffer)
{
@@ -39791,31 +52951,36 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiMapObjectBuffer", Version = "1.2", EntryPoint = "glUnmapObjectBufferATI")]
public static
void UnmapObjectBuffer(UInt32 buffer)
{
Delegates.glUnmapObjectBufferATI((UInt32)buffer);
}
+ [AutoGenerated(Category = "AtiMapObjectBuffer", Version = "1.2", EntryPoint = "glUnmapObjectBufferATI")]
public static
void UnmapObjectBuffer(Int32 buffer)
{
Delegates.glUnmapObjectBufferATI((UInt32)buffer);
}
+ [AutoGenerated(Category = "AtiSeparateStencil", Version = "1.2", EntryPoint = "glStencilOpSeparateATI")]
public static
- void StencilOpSeparate(OpenTK.Graphics.All face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass)
+ void StencilOpSeparate(OpenTK.Graphics.AtiSeparateStencil face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass)
{
- Delegates.glStencilOpSeparateATI((OpenTK.Graphics.All)face, (OpenTK.Graphics.StencilOp)sfail, (OpenTK.Graphics.StencilOp)dpfail, (OpenTK.Graphics.StencilOp)dppass);
+ Delegates.glStencilOpSeparateATI((OpenTK.Graphics.AtiSeparateStencil)face, (OpenTK.Graphics.StencilOp)sfail, (OpenTK.Graphics.StencilOp)dpfail, (OpenTK.Graphics.StencilOp)dppass);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiSeparateStencil", Version = "1.2", EntryPoint = "glStencilFuncSeparateATI")]
public static
void StencilFuncSeparate(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.StencilFunction backfunc, Int32 @ref, UInt32 mask)
{
Delegates.glStencilFuncSeparateATI((OpenTK.Graphics.StencilFunction)frontfunc, (OpenTK.Graphics.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask);
}
+ [AutoGenerated(Category = "AtiSeparateStencil", Version = "1.2", EntryPoint = "glStencilFuncSeparateATI")]
public static
void StencilFuncSeparate(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.StencilFunction backfunc, Int32 @ref, Int32 mask)
{
@@ -39823,172 +52988,188 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glVertexAttribArrayObjectATI")]
public static
- void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.All type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset)
+ void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset)
{
- Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset);
+ Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.AtiVertexAttribArrayObject)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset);
}
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glVertexAttribArrayObjectATI")]
public static
- void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.All type, bool normalized, Int32 stride, Int32 buffer, Int32 offset)
+ void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, Int32 buffer, Int32 offset)
{
- Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.All)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset);
+ Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.AtiVertexAttribArrayObject)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectfvATI")]
public static
- void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectfvATI")]
public static
- void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] Single[] @params)
+ void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Single[] @params)
{
unsafe
{
fixed (Single* @params_ptr = @params)
{
- Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectfvATI")]
public static
- void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectfvATI")]
public static
- void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] out Single @params)
+ void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] out Single @params)
{
unsafe
{
fixed (Single* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params_ptr);
+ Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectfvATI")]
public static
- unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Single* @params)
{
- Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectfvATI")]
public static
- unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] Single* @params)
+ unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Single* @params)
{
- Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.All)pname, (Single*)@params);
+ Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Single*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectivATI")]
public static
- void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr);
}
}
}
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectivATI")]
public static
- void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] Int32[] @params)
+ void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Int32[] @params)
{
unsafe
{
fixed (Int32* @params_ptr = @params)
{
- Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr);
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectivATI")]
public static
- void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectivATI")]
public static
- void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] out Int32 @params)
+ void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] out Int32 @params)
{
unsafe
{
fixed (Int32* @params_ptr = &@params)
{
- Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params_ptr);
+ Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr);
@params = *@params_ptr;
}
}
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectivATI")]
public static
- unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Int32* @params)
{
- Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Int32*)@params);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AtiVertexAttribArrayObject", Version = "1.2", EntryPoint = "glGetVertexAttribArrayObjectivATI")]
public static
- unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.All pname, [Out] Int32* @params)
+ unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Int32* @params)
{
- Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.All)pname, (Int32*)@params);
+ Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.AtiVertexAttribArrayObject)pname, (Int32*)@params);
}
}
public static partial class Apple
{
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glElementPointerAPPLE")]
public static
- void ElementPointer(OpenTK.Graphics.All type, IntPtr pointer)
+ void ElementPointer(OpenTK.Graphics.AppleElementArray type, IntPtr pointer)
{
unsafe
{
- Delegates.glElementPointerAPPLE((OpenTK.Graphics.All)type, (IntPtr)pointer);
+ Delegates.glElementPointerAPPLE((OpenTK.Graphics.AppleElementArray)type, (IntPtr)pointer);
}
}
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glElementPointerAPPLE")]
public static
- void ElementPointer(OpenTK.Graphics.All type, [In, Out] object pointer)
+ void ElementPointer(OpenTK.Graphics.AppleElementArray type, [In, Out] object pointer)
{
unsafe
{
System.Runtime.InteropServices.GCHandle pointer_ptr = System.Runtime.InteropServices.GCHandle.Alloc(pointer, System.Runtime.InteropServices.GCHandleType.Pinned);
try
{
- Delegates.glElementPointerAPPLE((OpenTK.Graphics.All)type, (IntPtr)pointer_ptr.AddrOfPinnedObject());
+ Delegates.glElementPointerAPPLE((OpenTK.Graphics.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject());
}
finally
{
@@ -39997,6 +53178,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glDrawElementArrayAPPLE")]
public static
void DrawElementArray(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count)
{
@@ -40004,18 +53186,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glDrawRangeElementArrayAPPLE")]
public static
void DrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count)
{
Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count);
}
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glDrawRangeElementArrayAPPLE")]
public static
void DrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32 first, Int32 count)
{
Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.BeginMode)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count);
}
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glMultiDrawElementArrayAPPLE")]
public static
void MultiDrawElementArray(OpenTK.Graphics.BeginMode mode, Int32[] first, Int32[] count, Int32 primcount)
{
@@ -40029,6 +53214,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glMultiDrawElementArrayAPPLE")]
public static
void MultiDrawElementArray(OpenTK.Graphics.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount)
{
@@ -40043,6 +53229,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glMultiDrawElementArrayAPPLE")]
public static
unsafe void MultiDrawElementArray(OpenTK.Graphics.BeginMode mode, Int32* first, Int32* count, Int32 primcount)
{
@@ -40050,6 +53237,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")]
public static
void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32[] first, Int32[] count, Int32 primcount)
{
@@ -40063,6 +53251,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")]
public static
void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32[] first, Int32[] count, Int32 primcount)
{
@@ -40077,6 +53266,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")]
public static
void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, ref Int32 first, ref Int32 count, Int32 primcount)
{
@@ -40090,6 +53280,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")]
public static
void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, ref Int32 first, ref Int32 count, Int32 primcount)
{
@@ -40104,6 +53295,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")]
public static
unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount)
{
@@ -40111,6 +53303,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleElementArray", Version = "1.2", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")]
public static
unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.BeginMode mode, Int32 start, Int32 end, Int32* first, Int32* count, Int32 primcount)
{
@@ -40118,6 +53311,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glGenFencesAPPLE")]
public static
void GenFences(Int32 n, [Out] UInt32[] fences)
{
@@ -40130,6 +53324,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glGenFencesAPPLE")]
public static
void GenFences(Int32 n, [Out] Int32[] fences)
{
@@ -40143,6 +53338,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glGenFencesAPPLE")]
public static
void GenFences(Int32 n, [Out] out UInt32 fences)
{
@@ -40156,6 +53352,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glGenFencesAPPLE")]
public static
void GenFences(Int32 n, [Out] out Int32 fences)
{
@@ -40170,6 +53367,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glGenFencesAPPLE")]
public static
unsafe void GenFences(Int32 n, [Out] UInt32* fences)
{
@@ -40177,6 +53375,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glGenFencesAPPLE")]
public static
unsafe void GenFences(Int32 n, [Out] Int32* fences)
{
@@ -40184,6 +53383,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glDeleteFencesAPPLE")]
public static
void DeleteFences(Int32 n, UInt32[] fences)
{
@@ -40196,6 +53396,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glDeleteFencesAPPLE")]
public static
void DeleteFences(Int32 n, Int32[] fences)
{
@@ -40209,6 +53410,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glDeleteFencesAPPLE")]
public static
void DeleteFences(Int32 n, ref UInt32 fences)
{
@@ -40221,6 +53423,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glDeleteFencesAPPLE")]
public static
void DeleteFences(Int32 n, ref Int32 fences)
{
@@ -40234,6 +53437,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glDeleteFencesAPPLE")]
public static
unsafe void DeleteFences(Int32 n, UInt32* fences)
{
@@ -40241,6 +53445,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glDeleteFencesAPPLE")]
public static
unsafe void DeleteFences(Int32 n, Int32* fences)
{
@@ -40248,12 +53453,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glSetFenceAPPLE")]
public static
void SetFence(UInt32 fence)
{
Delegates.glSetFenceAPPLE((UInt32)fence);
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glSetFenceAPPLE")]
public static
void SetFence(Int32 fence)
{
@@ -40261,12 +53468,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glIsFenceAPPLE")]
public static
bool IsFence(UInt32 fence)
{
return Delegates.glIsFenceAPPLE((UInt32)fence);
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glIsFenceAPPLE")]
public static
bool IsFence(Int32 fence)
{
@@ -40274,12 +53483,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glTestFenceAPPLE")]
public static
bool TestFence(UInt32 fence)
{
return Delegates.glTestFenceAPPLE((UInt32)fence);
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glTestFenceAPPLE")]
public static
bool TestFence(Int32 fence)
{
@@ -40287,12 +53498,14 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glFinishFenceAPPLE")]
public static
void FinishFence(UInt32 fence)
{
Delegates.glFinishFenceAPPLE((UInt32)fence);
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glFinishFenceAPPLE")]
public static
void FinishFence(Int32 fence)
{
@@ -40300,31 +53513,36 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glTestObjectAPPLE")]
public static
- bool TestObject(OpenTK.Graphics.All @object, UInt32 name)
+ bool TestObject(OpenTK.Graphics.AppleFence @object, UInt32 name)
{
- return Delegates.glTestObjectAPPLE((OpenTK.Graphics.All)@object, (UInt32)name);
+ return Delegates.glTestObjectAPPLE((OpenTK.Graphics.AppleFence)@object, (UInt32)name);
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glTestObjectAPPLE")]
public static
- bool TestObject(OpenTK.Graphics.All @object, Int32 name)
+ bool TestObject(OpenTK.Graphics.AppleFence @object, Int32 name)
{
- return Delegates.glTestObjectAPPLE((OpenTK.Graphics.All)@object, (UInt32)name);
+ return Delegates.glTestObjectAPPLE((OpenTK.Graphics.AppleFence)@object, (UInt32)name);
}
+ [AutoGenerated(Category = "AppleFence", Version = "1.2", EntryPoint = "glFinishObjectAPPLE")]
public static
- void FinishObject(OpenTK.Graphics.All @object, Int32 name)
+ void FinishObject(OpenTK.Graphics.AppleFence @object, Int32 name)
{
- Delegates.glFinishObjectAPPLE((OpenTK.Graphics.All)@object, (Int32)name);
+ Delegates.glFinishObjectAPPLE((OpenTK.Graphics.AppleFence)@object, (Int32)name);
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glBindVertexArrayAPPLE")]
public static
void BindVertexArray(UInt32 array)
{
Delegates.glBindVertexArrayAPPLE((UInt32)array);
}
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glBindVertexArrayAPPLE")]
public static
void BindVertexArray(Int32 array)
{
@@ -40332,6 +53550,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glDeleteVertexArraysAPPLE")]
public static
void DeleteVertexArrays(Int32 n, UInt32[] arrays)
{
@@ -40344,6 +53563,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glDeleteVertexArraysAPPLE")]
public static
void DeleteVertexArrays(Int32 n, Int32[] arrays)
{
@@ -40357,6 +53577,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glDeleteVertexArraysAPPLE")]
public static
void DeleteVertexArrays(Int32 n, ref UInt32 arrays)
{
@@ -40369,6 +53590,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glDeleteVertexArraysAPPLE")]
public static
void DeleteVertexArrays(Int32 n, ref Int32 arrays)
{
@@ -40382,6 +53604,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glDeleteVertexArraysAPPLE")]
public static
unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays)
{
@@ -40389,6 +53612,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glDeleteVertexArraysAPPLE")]
public static
unsafe void DeleteVertexArrays(Int32 n, Int32* arrays)
{
@@ -40396,6 +53620,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glGenVertexArraysAPPLE")]
public static
void GenVertexArrays(Int32 n, [Out] UInt32[] arrays)
{
@@ -40408,6 +53633,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glGenVertexArraysAPPLE")]
public static
void GenVertexArrays(Int32 n, [Out] Int32[] arrays)
{
@@ -40421,6 +53647,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glGenVertexArraysAPPLE")]
public static
void GenVertexArrays(Int32 n, [Out] out UInt32 arrays)
{
@@ -40434,6 +53661,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glGenVertexArraysAPPLE")]
public static
void GenVertexArrays(Int32 n, [Out] out Int32 arrays)
{
@@ -40448,6 +53676,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glGenVertexArraysAPPLE")]
public static
unsafe void GenVertexArrays(Int32 n, [Out] UInt32* arrays)
{
@@ -40455,6 +53684,7 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glGenVertexArraysAPPLE")]
public static
unsafe void GenVertexArrays(Int32 n, [Out] Int32* arrays)
{
@@ -40462,18 +53692,21 @@ namespace OpenTK.Graphics
}
[System.CLSCompliant(false)]
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glIsVertexArrayAPPLE")]
public static
bool IsVertexArray(UInt32 array)
{
return Delegates.glIsVertexArrayAPPLE((UInt32)array);
}
+ [AutoGenerated(Category = "AppleVertexArrayObject", Version = "1.2", EntryPoint = "glIsVertexArrayAPPLE")]
public static
bool IsVertexArray(Int32 array)
{
return Delegates.glIsVertexArrayAPPLE((UInt32)array);
}
+ [AutoGenerated(Category = "AppleVertexArrayRange", Version = "1.2", EntryPoint = "glVertexArrayRangeAPPLE")]
public static
void VertexArrayRange(Int32 length, [Out] IntPtr pointer)
{
@@ -40483,6 +53716,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleVertexArrayRange", Version = "1.2", EntryPoint = "glVertexArrayRangeAPPLE")]
public static
void VertexArrayRange(Int32 length, [In, Out] object pointer)
{
@@ -40500,6 +53734,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleVertexArrayRange", Version = "1.2", EntryPoint = "glFlushVertexArrayRangeAPPLE")]
public static
void FlushVertexArrayRange(Int32 length, [Out] IntPtr pointer)
{
@@ -40509,6 +53744,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleVertexArrayRange", Version = "1.2", EntryPoint = "glFlushVertexArrayRangeAPPLE")]
public static
void FlushVertexArrayRange(Int32 length, [In, Out] object pointer)
{
@@ -40526,28 +53762,32 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "AppleVertexArrayRange", Version = "1.2", EntryPoint = "glVertexArrayParameteriAPPLE")]
public static
- void VertexArrayParameter(OpenTK.Graphics.All pname, Int32 param)
+ void VertexArrayParameter(OpenTK.Graphics.AppleVertexArrayRange pname, Int32 param)
{
- Delegates.glVertexArrayParameteriAPPLE((OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glVertexArrayParameteriAPPLE((OpenTK.Graphics.AppleVertexArrayRange)pname, (Int32)param);
}
+ [AutoGenerated(Category = "AppleFlushBufferRange", Version = "1.5", EntryPoint = "glBufferParameteriAPPLE")]
public static
- void BufferParameter(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param)
+ void BufferParameter(OpenTK.Graphics.AppleFlushBufferRange target, OpenTK.Graphics.AppleFlushBufferRange pname, Int32 param)
{
- Delegates.glBufferParameteriAPPLE((OpenTK.Graphics.All)target, (OpenTK.Graphics.All)pname, (Int32)param);
+ Delegates.glBufferParameteriAPPLE((OpenTK.Graphics.AppleFlushBufferRange)target, (OpenTK.Graphics.AppleFlushBufferRange)pname, (Int32)param);
}
+ [AutoGenerated(Category = "AppleFlushBufferRange", Version = "1.5", EntryPoint = "glFlushMappedBufferRangeAPPLE")]
public static
- void FlushMappedBufferRange(OpenTK.Graphics.All target, IntPtr offset, IntPtr size)
+ void FlushMappedBufferRange(OpenTK.Graphics.AppleFlushBufferRange target, IntPtr offset, IntPtr size)
{
- Delegates.glFlushMappedBufferRangeAPPLE((OpenTK.Graphics.All)target, (IntPtr)offset, (IntPtr)size);
+ Delegates.glFlushMappedBufferRangeAPPLE((OpenTK.Graphics.AppleFlushBufferRange)target, (IntPtr)offset, (IntPtr)size);
}
}
public static partial class Gremedy
{
+ [AutoGenerated(Category = "GremedyStringMarker", Version = "1.0", EntryPoint = "glStringMarkerGREMEDY")]
public static
void StringMarker(Int32 len, IntPtr @string)
{
@@ -40557,6 +53797,7 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "GremedyStringMarker", Version = "1.0", EntryPoint = "glStringMarkerGREMEDY")]
public static
void StringMarker(Int32 len, [In, Out] object @string)
{
@@ -40574,6 +53815,13 @@ namespace OpenTK.Graphics
}
}
+ [AutoGenerated(Category = "GremedyFrameTerminator", Version = "1.0", EntryPoint = "glFrameTerminatorGREMEDY")]
+ public static
+ void FrameTerminator()
+ {
+ Delegates.glFrameTerminatorGREMEDY();
+ }
+
}
}
diff --git a/Source/OpenTK/Graphics/GL/GLCore.cs b/Source/OpenTK/Graphics/GL/GLCore.cs
index 2aeac055..98a175dd 100644
--- a/Source/OpenTK/Graphics/GL/GLCore.cs
+++ b/Source/OpenTK/Graphics/GL/GLCore.cs
@@ -1,3 +1,30 @@
+#region License
+//
+// The Open Toolkit Library License
+//
+// Copyright (c) 2006 - 2008 the Open Toolkit library, except where noted.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights to
+// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+// the Software, and to permit persons to whom the Software is furnished to do
+// so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in all
+// copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+//
+#endregion
+
namespace OpenTK.Graphics
{
using System;
@@ -1027,100 +1054,100 @@ namespace OpenTK.Graphics
internal extern static void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTable", ExactSpelling = true)]
- internal extern static void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table);
+ internal extern static void ColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterfv", ExactSpelling = true)]
- internal extern static unsafe void ColorTableParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params);
+ internal extern static unsafe void ColorTableParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameteriv", ExactSpelling = true)]
- internal extern static unsafe void ColorTableParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params);
+ internal extern static unsafe void ColorTableParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorTable", ExactSpelling = true)]
- internal extern static void CopyColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
+ internal extern static void CopyColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTable", ExactSpelling = true)]
- internal extern static void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table);
+ internal extern static void GetColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterfv", ExactSpelling = true)]
- internal extern static unsafe void GetColorTableParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal extern static unsafe void GetColorTableParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameteriv", ExactSpelling = true)]
- internal extern static unsafe void GetColorTableParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal extern static unsafe void GetColorTableParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorSubTable", ExactSpelling = true)]
- internal extern static void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data);
+ internal extern static void ColorSubTable(OpenTK.Graphics.Version12 target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorSubTable", ExactSpelling = true)]
- internal extern static void CopyColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 x, Int32 y, Int32 width);
+ internal extern static void CopyColorSubTable(OpenTK.Graphics.Version12 target, Int32 start, Int32 x, Int32 y, Int32 width);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter1D", ExactSpelling = true)]
- internal extern static void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
+ internal extern static void ConvolutionFilter1D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter2D", ExactSpelling = true)]
- internal extern static void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
+ internal extern static void ConvolutionFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterf", ExactSpelling = true)]
- internal extern static void ConvolutionParameterf(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params);
+ internal extern static void ConvolutionParameterf(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfv", ExactSpelling = true)]
- internal extern static unsafe void ConvolutionParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params);
+ internal extern static unsafe void ConvolutionParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteri", ExactSpelling = true)]
- internal extern static void ConvolutionParameteri(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params);
+ internal extern static void ConvolutionParameteri(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32 @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteriv", ExactSpelling = true)]
- internal extern static unsafe void ConvolutionParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params);
+ internal extern static unsafe void ConvolutionParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter1D", ExactSpelling = true)]
- internal extern static void CopyConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
+ internal extern static void CopyConvolutionFilter1D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter2D", ExactSpelling = true)]
- internal extern static void CopyConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
+ internal extern static void CopyConvolutionFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionFilter", ExactSpelling = true)]
- internal extern static void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image);
+ internal extern static void GetConvolutionFilter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterfv", ExactSpelling = true)]
- internal extern static unsafe void GetConvolutionParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal extern static unsafe void GetConvolutionParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameteriv", ExactSpelling = true)]
- internal extern static unsafe void GetConvolutionParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal extern static unsafe void GetConvolutionParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetSeparableFilter", ExactSpelling = true)]
- internal extern static void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span);
+ internal extern static void GetSeparableFilter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSeparableFilter2D", ExactSpelling = true)]
- internal extern static void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column);
+ internal extern static void SeparableFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogram", ExactSpelling = true)]
- internal extern static void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
+ internal extern static void GetHistogram(OpenTK.Graphics.Version12 target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterfv", ExactSpelling = true)]
- internal extern static unsafe void GetHistogramParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal extern static unsafe void GetHistogramParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameteriv", ExactSpelling = true)]
- internal extern static unsafe void GetHistogramParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal extern static unsafe void GetHistogramParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmax", ExactSpelling = true)]
- internal extern static void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
+ internal extern static void GetMinmax(OpenTK.Graphics.Version12 target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterfv", ExactSpelling = true)]
- internal extern static unsafe void GetMinmaxParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal extern static unsafe void GetMinmaxParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameteriv", ExactSpelling = true)]
- internal extern static unsafe void GetMinmaxParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal extern static unsafe void GetMinmaxParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHistogram", ExactSpelling = true)]
- internal extern static void Histogram(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
+ internal extern static void Histogram(OpenTK.Graphics.Version12 target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinmax", ExactSpelling = true)]
- internal extern static void Minmax(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
+ internal extern static void Minmax(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetHistogram", ExactSpelling = true)]
- internal extern static void ResetHistogram(OpenTK.Graphics.All target);
+ internal extern static void ResetHistogram(OpenTK.Graphics.Version12 target);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetMinmax", ExactSpelling = true)]
- internal extern static void ResetMinmax(OpenTK.Graphics.All target);
+ internal extern static void ResetMinmax(OpenTK.Graphics.Version12 target);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage3D", ExactSpelling = true)]
internal extern static void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
@@ -1758,32 +1785,260 @@ namespace OpenTK.Graphics
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix4x3fv", ExactSpelling = true)]
internal extern static unsafe void UniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, Single* value);
[System.Security.SuppressUnmanagedCodeSecurity()]
- [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonOffsetEXT", ExactSpelling = true)]
- internal extern static void PolygonOffsetEXT(Single factor, Single bias);
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorMaski", ExactSpelling = true)]
+ internal extern static void ColorMaski(UInt32 index, bool r, bool g, bool b, bool a);
[System.Security.SuppressUnmanagedCodeSecurity()]
- [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAreTexturesResidentEXT", ExactSpelling = true)]
- internal extern static unsafe bool AreTexturesResidentEXT(Int32 n, UInt32* textures, [Out] bool* residences);
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBooleani_v", ExactSpelling = true)]
+ internal extern static unsafe void GetBooleani_v(OpenTK.Graphics.Version30 target, UInt32 index, [Out] bool* data);
[System.Security.SuppressUnmanagedCodeSecurity()]
- [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glArrayElementEXT", ExactSpelling = true)]
- internal extern static void ArrayElementEXT(Int32 i);
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetIntegeri_v", ExactSpelling = true)]
+ internal extern static unsafe void GetIntegeri_v(OpenTK.Graphics.Version30 target, UInt32 index, [Out] Int32* data);
[System.Security.SuppressUnmanagedCodeSecurity()]
- [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureLightEXT", ExactSpelling = true)]
- internal extern static void TextureLightEXT(OpenTK.Graphics.All pname);
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnablei", ExactSpelling = true)]
+ internal extern static void Enablei(OpenTK.Graphics.Version30 target, UInt32 index);
[System.Security.SuppressUnmanagedCodeSecurity()]
- [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glInsertComponentEXT", ExactSpelling = true)]
- internal extern static void InsertComponentEXT(UInt32 res, UInt32 src, UInt32 num);
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisablei", ExactSpelling = true)]
+ internal extern static void Disablei(OpenTK.Graphics.Version30 target, UInt32 index);
[System.Security.SuppressUnmanagedCodeSecurity()]
- [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glExtractComponentEXT", ExactSpelling = true)]
- internal extern static void ExtractComponentEXT(UInt32 res, UInt32 src, UInt32 num);
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsEnabledi", ExactSpelling = true)]
+ internal extern static bool IsEnabledi(OpenTK.Graphics.Version30 target, UInt32 index);
[System.Security.SuppressUnmanagedCodeSecurity()]
- [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetInvariantEXT", ExactSpelling = true)]
- internal extern static void SetInvariantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr);
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginTransformFeedback", ExactSpelling = true)]
+ internal extern static void BeginTransformFeedback(OpenTK.Graphics.Version30 primitiveMode);
[System.Security.SuppressUnmanagedCodeSecurity()]
- [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetLocalConstantEXT", ExactSpelling = true)]
- internal extern static void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr);
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndTransformFeedback", ExactSpelling = true)]
+ internal extern static void EndTransformFeedback();
[System.Security.SuppressUnmanagedCodeSecurity()]
- [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformOffsetEXT", ExactSpelling = true)]
- internal extern static IntPtr GetUniformOffsetEXT(UInt32 program, Int32 location);
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferRange", ExactSpelling = true)]
+ internal extern static void BindBufferRange(OpenTK.Graphics.Version30 target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferBase", ExactSpelling = true)]
+ internal extern static void BindBufferBase(OpenTK.Graphics.Version30 target, UInt32 index, UInt32 buffer);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTransformFeedbackVaryings", ExactSpelling = true)]
+ internal extern static unsafe void TransformFeedbackVaryings(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.Version30 bufferMode);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTransformFeedbackVarying", ExactSpelling = true)]
+ internal extern static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] Int32* location);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClampColor", ExactSpelling = true)]
+ internal extern static void ClampColor(OpenTK.Graphics.ClampColorTarget target, OpenTK.Graphics.ClampColorMode clamp);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginConditionalRender", ExactSpelling = true)]
+ internal extern static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.Version30 mode);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndConditionalRender", ExactSpelling = true)]
+ internal extern static void EndConditionalRender();
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1i", ExactSpelling = true)]
+ internal extern static void VertexAttribI1i(UInt32 index, Int32 x);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI2i", ExactSpelling = true)]
+ internal extern static void VertexAttribI2i(UInt32 index, Int32 x, Int32 y);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI3i", ExactSpelling = true)]
+ internal extern static void VertexAttribI3i(UInt32 index, Int32 x, Int32 y, Int32 z);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI4i", ExactSpelling = true)]
+ internal extern static void VertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1ui", ExactSpelling = true)]
+ internal extern static void VertexAttribI1ui(UInt32 index, UInt32 x);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI2ui", ExactSpelling = true)]
+ internal extern static void VertexAttribI2ui(UInt32 index, UInt32 x, UInt32 y);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI3ui", ExactSpelling = true)]
+ internal extern static void VertexAttribI3ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI4ui", ExactSpelling = true)]
+ internal extern static void VertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1iv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI1iv(UInt32 index, Int32* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI2iv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI2iv(UInt32 index, Int32* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI3iv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI3iv(UInt32 index, Int32* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI4iv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI4iv(UInt32 index, Int32* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1uiv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI1uiv(UInt32 index, UInt32* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI2uiv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI2uiv(UInt32 index, UInt32* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI3uiv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI3uiv(UInt32 index, UInt32* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI4uiv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI4uiv(UInt32 index, UInt32* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI4bv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI4bv(UInt32 index, SByte* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI4sv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI4sv(UInt32 index, Int16* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI4ubv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI4ubv(UInt32 index, Byte* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI4usv", ExactSpelling = true)]
+ internal extern static unsafe void VertexAttribI4usv(UInt32 index, UInt16* v);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribIPointer", ExactSpelling = true)]
+ internal extern static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.Version30 type, Int32 stride, IntPtr pointer);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribIiv", ExactSpelling = true)]
+ internal extern static unsafe void GetVertexAttribIiv(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] Int32* @params);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribIuiv", ExactSpelling = true)]
+ internal extern static unsafe void GetVertexAttribIuiv(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] UInt32* @params);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformuiv", ExactSpelling = true)]
+ internal extern static unsafe void GetUniformuiv(UInt32 program, Int32 location, [Out] UInt32* @params);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindFragDataLocation", ExactSpelling = true)]
+ internal extern static void BindFragDataLocation(UInt32 program, UInt32 color, System.String name);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFragDataLocation", ExactSpelling = true)]
+ internal extern static Int32 GetFragDataLocation(UInt32 program, System.String name);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1ui", ExactSpelling = true)]
+ internal extern static void Uniform1ui(Int32 location, UInt32 v0);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2ui", ExactSpelling = true)]
+ internal extern static void Uniform2ui(Int32 location, UInt32 v0, UInt32 v1);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3ui", ExactSpelling = true)]
+ internal extern static void Uniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4ui", ExactSpelling = true)]
+ internal extern static void Uniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1uiv", ExactSpelling = true)]
+ internal extern static unsafe void Uniform1uiv(Int32 location, Int32 count, UInt32* value);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2uiv", ExactSpelling = true)]
+ internal extern static unsafe void Uniform2uiv(Int32 location, Int32 count, UInt32* value);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3uiv", ExactSpelling = true)]
+ internal extern static unsafe void Uniform3uiv(Int32 location, Int32 count, UInt32* value);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4uiv", ExactSpelling = true)]
+ internal extern static unsafe void Uniform4uiv(Int32 location, Int32 count, UInt32* value);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterIiv", ExactSpelling = true)]
+ internal extern static unsafe void TexParameterIiv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterIuiv", ExactSpelling = true)]
+ internal extern static unsafe void TexParameterIuiv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterIiv", ExactSpelling = true)]
+ internal extern static unsafe void GetTexParameterIiv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterIuiv", ExactSpelling = true)]
+ internal extern static unsafe void GetTexParameterIuiv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearBufferiv", ExactSpelling = true)]
+ internal extern static unsafe void ClearBufferiv(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Int32* value);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearBufferuiv", ExactSpelling = true)]
+ internal extern static unsafe void ClearBufferuiv(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, UInt32* value);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearBufferfv", ExactSpelling = true)]
+ internal extern static unsafe void ClearBufferfv(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Single* value);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearBufferfi", ExactSpelling = true)]
+ internal extern static void ClearBufferfi(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Single depth, Int32 stencil);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetStringi", ExactSpelling = true)]
+ internal extern static IntPtr GetStringi(OpenTK.Graphics.Version30 name, UInt32 index);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsRenderbuffer", ExactSpelling = true)]
+ internal extern static bool IsRenderbuffer(UInt32 renderbuffer);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindRenderbuffer", ExactSpelling = true)]
+ internal extern static void BindRenderbuffer(OpenTK.Graphics.RenderbufferTarget target, UInt32 renderbuffer);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteRenderbuffers", ExactSpelling = true)]
+ internal extern static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenRenderbuffers", ExactSpelling = true)]
+ internal extern static unsafe void GenRenderbuffers(Int32 n, [Out] UInt32* renderbuffers);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderbufferStorage", ExactSpelling = true)]
+ internal extern static void RenderbufferStorage(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferStorage internalformat, Int32 width, Int32 height);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetRenderbufferParameteriv", ExactSpelling = true)]
+ internal extern static unsafe void GetRenderbufferParameteriv(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32* @params);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsFramebuffer", ExactSpelling = true)]
+ internal extern static bool IsFramebuffer(UInt32 framebuffer);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindFramebuffer", ExactSpelling = true)]
+ internal extern static void BindFramebuffer(OpenTK.Graphics.FramebufferTarget target, UInt32 framebuffer);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteFramebuffers", ExactSpelling = true)]
+ internal extern static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenFramebuffers", ExactSpelling = true)]
+ internal extern static unsafe void GenFramebuffers(Int32 n, [Out] UInt32* framebuffers);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCheckFramebufferStatus", ExactSpelling = true)]
+ internal extern static OpenTK.Graphics.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.FramebufferTarget target);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture1D", ExactSpelling = true)]
+ internal extern static void FramebufferTexture1D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture2D", ExactSpelling = true)]
+ internal extern static void FramebufferTexture2D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture3D", ExactSpelling = true)]
+ internal extern static void FramebufferTexture3D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferRenderbuffer", ExactSpelling = true)]
+ internal extern static void FramebufferRenderbuffer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFramebufferAttachmentParameteriv", ExactSpelling = true)]
+ internal extern static unsafe void GetFramebufferAttachmentParameteriv(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] Int32* @params);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenerate", ExactSpelling = true)]
+ internal extern static void Generate(OpenTK.Graphics.GenerateMipmapTarget target);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlitFramebuffer", ExactSpelling = true)]
+ internal extern static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ClearBufferMask mask, OpenTK.Graphics.BlitFramebufferFilter filter);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderbufferStorageMultisample", ExactSpelling = true)]
+ internal extern static void RenderbufferStorageMultisample(OpenTK.Graphics.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.RenderbufferStorage internalformat, Int32 width, Int32 height);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTextureLayer", ExactSpelling = true)]
+ internal extern static void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribDivisor", ExactSpelling = true)]
+ internal extern static void VertexAttribDivisor(UInt32 index, UInt32 divisor);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBufferRange", ExactSpelling = true)]
+ internal extern static void MapBufferRange(OpenTK.Graphics.ArbMapBufferRange target, IntPtr offset, IntPtr length, UInt32 access);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFlushMappedBufferRange", ExactSpelling = true)]
+ internal extern static void FlushMappedBufferRange(OpenTK.Graphics.ArbMapBufferRange target, IntPtr offset, IntPtr length);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindVertexArray", ExactSpelling = true)]
+ internal extern static void BindVertexArray(UInt32 array);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteVertexArrays", ExactSpelling = true)]
+ internal extern static unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenVertexArrays", ExactSpelling = true)]
+ internal extern static unsafe void GenVertexArrays(Int32 n, [Out] UInt32* arrays);
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsVertexArray", ExactSpelling = true)]
+ internal extern static bool IsVertexArray(UInt32 array);
}
}
}
diff --git a/Source/OpenTK/Graphics/GL/GLDelegates.cs b/Source/OpenTK/Graphics/GL/GLDelegates.cs
index 97b72d58..600b4ca8 100644
--- a/Source/OpenTK/Graphics/GL/GLDelegates.cs
+++ b/Source/OpenTK/Graphics/GL/GLDelegates.cs
@@ -1,3 +1,30 @@
+#region License
+//
+// The Open Toolkit Library License
+//
+// Copyright (c) 2006 - 2008 the Open Toolkit library, except where noted.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights to
+// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+// the Software, and to permit persons to whom the Software is furnished to do
+// so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in all
+// copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+//
+#endregion
+
namespace OpenTK.Graphics
{
using System;
@@ -1028,100 +1055,100 @@ namespace OpenTK.Graphics
internal delegate void DrawRangeElements(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices);
internal static DrawRangeElements glDrawRangeElements;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table);
+ internal delegate void ColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table);
internal static ColorTable glColorTable;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ColorTableParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void ColorTableParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single* @params);
internal unsafe static ColorTableParameterfv glColorTableParameterfv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ColorTableParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void ColorTableParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32* @params);
internal unsafe static ColorTableParameteriv glColorTableParameteriv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CopyColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
+ internal delegate void CopyColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
internal static CopyColorTable glCopyColorTable;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetColorTable(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table);
+ internal delegate void GetColorTable(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table);
internal static GetColorTable glGetColorTable;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetColorTableParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetColorTableParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params);
internal unsafe static GetColorTableParameterfv glGetColorTableParameterfv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetColorTableParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetColorTableParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params);
internal unsafe static GetColorTableParameteriv glGetColorTableParameteriv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data);
+ internal delegate void ColorSubTable(OpenTK.Graphics.Version12 target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data);
internal static ColorSubTable glColorSubTable;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CopyColorSubTable(OpenTK.Graphics.All target, Int32 start, Int32 x, Int32 y, Int32 width);
+ internal delegate void CopyColorSubTable(OpenTK.Graphics.Version12 target, Int32 start, Int32 x, Int32 y, Int32 width);
internal static CopyColorSubTable glCopyColorSubTable;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
+ internal delegate void ConvolutionFilter1D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
internal static ConvolutionFilter1D glConvolutionFilter1D;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
+ internal delegate void ConvolutionFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
internal static ConvolutionFilter2D glConvolutionFilter2D;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ConvolutionParameterf(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params);
+ internal delegate void ConvolutionParameterf(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single @params);
internal static ConvolutionParameterf glConvolutionParameterf;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ConvolutionParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void ConvolutionParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Single* @params);
internal unsafe static ConvolutionParameterfv glConvolutionParameterfv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ConvolutionParameteri(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params);
+ internal delegate void ConvolutionParameteri(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32 @params);
internal static ConvolutionParameteri glConvolutionParameteri;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ConvolutionParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void ConvolutionParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, Int32* @params);
internal unsafe static ConvolutionParameteriv glConvolutionParameteriv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CopyConvolutionFilter1D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
+ internal delegate void CopyConvolutionFilter1D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
internal static CopyConvolutionFilter1D glCopyConvolutionFilter1D;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CopyConvolutionFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
+ internal delegate void CopyConvolutionFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
internal static CopyConvolutionFilter2D glCopyConvolutionFilter2D;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetConvolutionFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image);
+ internal delegate void GetConvolutionFilter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image);
internal static GetConvolutionFilter glGetConvolutionFilter;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetConvolutionParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetConvolutionParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params);
internal unsafe static GetConvolutionParameterfv glGetConvolutionParameterfv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetConvolutionParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetConvolutionParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params);
internal unsafe static GetConvolutionParameteriv glGetConvolutionParameteriv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetSeparableFilter(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span);
+ internal delegate void GetSeparableFilter(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span);
internal static GetSeparableFilter glGetSeparableFilter;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SeparableFilter2D(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column);
+ internal delegate void SeparableFilter2D(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column);
internal static SeparableFilter2D glSeparableFilter2D;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetHistogram(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
+ internal delegate void GetHistogram(OpenTK.Graphics.Version12 target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
internal static GetHistogram glGetHistogram;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetHistogramParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetHistogramParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params);
internal unsafe static GetHistogramParameterfv glGetHistogramParameterfv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetHistogramParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetHistogramParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params);
internal unsafe static GetHistogramParameteriv glGetHistogramParameteriv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetMinmax(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
+ internal delegate void GetMinmax(OpenTK.Graphics.Version12 target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
internal static GetMinmax glGetMinmax;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetMinmaxParameterfv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetMinmaxParameterfv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Single* @params);
internal unsafe static GetMinmaxParameterfv glGetMinmaxParameterfv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetMinmaxParameteriv(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetMinmaxParameteriv(OpenTK.Graphics.Version12 target, OpenTK.Graphics.Version12 pname, [Out] Int32* @params);
internal unsafe static GetMinmaxParameteriv glGetMinmaxParameteriv;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void Histogram(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
+ internal delegate void Histogram(OpenTK.Graphics.Version12 target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
internal static Histogram glHistogram;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void Minmax(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
+ internal delegate void Minmax(OpenTK.Graphics.Version12 target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
internal static Minmax glMinmax;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ResetHistogram(OpenTK.Graphics.All target);
+ internal delegate void ResetHistogram(OpenTK.Graphics.Version12 target);
internal static ResetHistogram glResetHistogram;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ResetMinmax(OpenTK.Graphics.All target);
+ internal delegate void ResetMinmax(OpenTK.Graphics.Version12 target);
internal static ResetMinmax glResetMinmax;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void TexImage3D(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
@@ -1760,6 +1787,180 @@ namespace OpenTK.Graphics
internal unsafe delegate void UniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, Single* value);
internal unsafe static UniformMatrix4x3fv glUniformMatrix4x3fv;
[System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ColorMaski(UInt32 index, bool r, bool g, bool b, bool a);
+ internal static ColorMaski glColorMaski;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetBooleani_v(OpenTK.Graphics.Version30 target, UInt32 index, [Out] bool* data);
+ internal unsafe static GetBooleani_v glGetBooleani_v;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetIntegeri_v(OpenTK.Graphics.Version30 target, UInt32 index, [Out] Int32* data);
+ internal unsafe static GetIntegeri_v glGetIntegeri_v;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void Enablei(OpenTK.Graphics.Version30 target, UInt32 index);
+ internal static Enablei glEnablei;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void Disablei(OpenTK.Graphics.Version30 target, UInt32 index);
+ internal static Disablei glDisablei;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate bool IsEnabledi(OpenTK.Graphics.Version30 target, UInt32 index);
+ internal static IsEnabledi glIsEnabledi;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BeginTransformFeedback(OpenTK.Graphics.Version30 primitiveMode);
+ internal static BeginTransformFeedback glBeginTransformFeedback;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void EndTransformFeedback();
+ internal static EndTransformFeedback glEndTransformFeedback;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindBufferRange(OpenTK.Graphics.Version30 target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size);
+ internal static BindBufferRange glBindBufferRange;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindBufferBase(OpenTK.Graphics.Version30 target, UInt32 index, UInt32 buffer);
+ internal static BindBufferBase glBindBufferBase;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void TransformFeedbackVaryings(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.Version30 bufferMode);
+ internal unsafe static TransformFeedbackVaryings glTransformFeedbackVaryings;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [Out] Int32* location);
+ internal unsafe static GetTransformFeedbackVarying glGetTransformFeedbackVarying;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ClampColor(OpenTK.Graphics.ClampColorTarget target, OpenTK.Graphics.ClampColorMode clamp);
+ internal static ClampColor glClampColor;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BeginConditionalRender(UInt32 id, OpenTK.Graphics.Version30 mode);
+ internal static BeginConditionalRender glBeginConditionalRender;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void EndConditionalRender();
+ internal static EndConditionalRender glEndConditionalRender;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribI1i(UInt32 index, Int32 x);
+ internal static VertexAttribI1i glVertexAttribI1i;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribI2i(UInt32 index, Int32 x, Int32 y);
+ internal static VertexAttribI2i glVertexAttribI2i;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribI3i(UInt32 index, Int32 x, Int32 y, Int32 z);
+ internal static VertexAttribI3i glVertexAttribI3i;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribI4i(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
+ internal static VertexAttribI4i glVertexAttribI4i;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribI1ui(UInt32 index, UInt32 x);
+ internal static VertexAttribI1ui glVertexAttribI1ui;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribI2ui(UInt32 index, UInt32 x, UInt32 y);
+ internal static VertexAttribI2ui glVertexAttribI2ui;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribI3ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z);
+ internal static VertexAttribI3ui glVertexAttribI3ui;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribI4ui(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
+ internal static VertexAttribI4ui glVertexAttribI4ui;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI1iv(UInt32 index, Int32* v);
+ internal unsafe static VertexAttribI1iv glVertexAttribI1iv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI2iv(UInt32 index, Int32* v);
+ internal unsafe static VertexAttribI2iv glVertexAttribI2iv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI3iv(UInt32 index, Int32* v);
+ internal unsafe static VertexAttribI3iv glVertexAttribI3iv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI4iv(UInt32 index, Int32* v);
+ internal unsafe static VertexAttribI4iv glVertexAttribI4iv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI1uiv(UInt32 index, UInt32* v);
+ internal unsafe static VertexAttribI1uiv glVertexAttribI1uiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI2uiv(UInt32 index, UInt32* v);
+ internal unsafe static VertexAttribI2uiv glVertexAttribI2uiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI3uiv(UInt32 index, UInt32* v);
+ internal unsafe static VertexAttribI3uiv glVertexAttribI3uiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI4uiv(UInt32 index, UInt32* v);
+ internal unsafe static VertexAttribI4uiv glVertexAttribI4uiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI4bv(UInt32 index, SByte* v);
+ internal unsafe static VertexAttribI4bv glVertexAttribI4bv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI4sv(UInt32 index, Int16* v);
+ internal unsafe static VertexAttribI4sv glVertexAttribI4sv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI4ubv(UInt32 index, Byte* v);
+ internal unsafe static VertexAttribI4ubv glVertexAttribI4ubv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void VertexAttribI4usv(UInt32 index, UInt16* v);
+ internal unsafe static VertexAttribI4usv glVertexAttribI4usv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.Version30 type, Int32 stride, IntPtr pointer);
+ internal static VertexAttribIPointer glVertexAttribIPointer;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetVertexAttribIiv(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] Int32* @params);
+ internal unsafe static GetVertexAttribIiv glGetVertexAttribIiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetVertexAttribIuiv(UInt32 index, OpenTK.Graphics.Version30 pname, [Out] UInt32* @params);
+ internal unsafe static GetVertexAttribIuiv glGetVertexAttribIuiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetUniformuiv(UInt32 program, Int32 location, [Out] UInt32* @params);
+ internal unsafe static GetUniformuiv glGetUniformuiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindFragDataLocation(UInt32 program, UInt32 color, System.String name);
+ internal static BindFragDataLocation glBindFragDataLocation;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate Int32 GetFragDataLocation(UInt32 program, System.String name);
+ internal static GetFragDataLocation glGetFragDataLocation;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void Uniform1ui(Int32 location, UInt32 v0);
+ internal static Uniform1ui glUniform1ui;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void Uniform2ui(Int32 location, UInt32 v0, UInt32 v1);
+ internal static Uniform2ui glUniform2ui;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void Uniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2);
+ internal static Uniform3ui glUniform3ui;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void Uniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3);
+ internal static Uniform4ui glUniform4ui;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void Uniform1uiv(Int32 location, Int32 count, UInt32* value);
+ internal unsafe static Uniform1uiv glUniform1uiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void Uniform2uiv(Int32 location, Int32 count, UInt32* value);
+ internal unsafe static Uniform2uiv glUniform2uiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void Uniform3uiv(Int32 location, Int32 count, UInt32* value);
+ internal unsafe static Uniform3uiv glUniform3uiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void Uniform4uiv(Int32 location, Int32 count, UInt32* value);
+ internal unsafe static Uniform4uiv glUniform4uiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void TexParameterIiv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params);
+ internal unsafe static TexParameterIiv glTexParameterIiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void TexParameterIuiv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params);
+ internal unsafe static TexParameterIuiv glTexParameterIuiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTexParameterIiv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params);
+ internal unsafe static GetTexParameterIiv glGetTexParameterIiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTexParameterIuiv(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params);
+ internal unsafe static GetTexParameterIuiv glGetTexParameterIuiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ClearBufferiv(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Int32* value);
+ internal unsafe static ClearBufferiv glClearBufferiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ClearBufferuiv(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, UInt32* value);
+ internal unsafe static ClearBufferuiv glClearBufferuiv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ClearBufferfv(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Single* value);
+ internal unsafe static ClearBufferfv glClearBufferfv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ClearBufferfi(OpenTK.Graphics.Version30 buffer, Int32 drawbuffer, Single depth, Int32 stencil);
+ internal static ClearBufferfi glClearBufferfi;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate IntPtr GetStringi(OpenTK.Graphics.Version30 name, UInt32 index);
+ internal static GetStringi glGetStringi;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void ActiveTextureARB(OpenTK.Graphics.TextureUnit texture);
internal static ActiveTextureARB glActiveTextureARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
@@ -1898,10 +2099,10 @@ namespace OpenTK.Graphics
internal delegate void GetCompressedTexImageARB(OpenTK.Graphics.TextureTarget target, Int32 level, [Out] IntPtr img);
internal static GetCompressedTexImageARB glGetCompressedTexImageARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PointParameterfARB(OpenTK.Graphics.All pname, Single param);
+ internal delegate void PointParameterfARB(OpenTK.Graphics.ArbPointParameters pname, Single param);
internal static PointParameterfARB glPointParameterfARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void PointParameterfvARB(OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void PointParameterfvARB(OpenTK.Graphics.ArbPointParameters pname, Single* @params);
internal unsafe static PointParameterfvARB glPointParameterfvARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void WeightbvARB(Int32 size, SByte* weights);
@@ -1928,7 +2129,7 @@ namespace OpenTK.Graphics
internal unsafe delegate void WeightuivARB(Int32 size, UInt32* weights);
internal unsafe static WeightuivARB glWeightuivARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void WeightPointerARB(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer);
+ internal delegate void WeightPointerARB(Int32 size, OpenTK.Graphics.ArbVertexBlend type, Int32 stride, IntPtr pointer);
internal static WeightPointerARB glWeightPointerARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void VertexBlendARB(Int32 count);
@@ -1946,7 +2147,7 @@ namespace OpenTK.Graphics
internal unsafe delegate void MatrixIndexuivARB(Int32 size, UInt32* indices);
internal unsafe static MatrixIndexuivARB glMatrixIndexuivARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void MatrixIndexPointerARB(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer);
+ internal delegate void MatrixIndexPointerARB(Int32 size, OpenTK.Graphics.ArbMatrixPalette type, Int32 stride, IntPtr pointer);
internal static MatrixIndexPointerARB glMatrixIndexPointerARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void WindowPos2dARB(Double x, Double y);
@@ -2210,10 +2411,10 @@ namespace OpenTK.Graphics
internal delegate bool UnmapBufferARB(OpenTK.Graphics.BufferTargetArb target);
internal static UnmapBufferARB glUnmapBufferARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetBufferParameterivARB(OpenTK.Graphics.All target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] Int32* @params);
+ internal unsafe delegate void GetBufferParameterivARB(OpenTK.Graphics.ArbVertexBufferObject target, OpenTK.Graphics.BufferParameterNameArb pname, [Out] Int32* @params);
internal unsafe static GetBufferParameterivARB glGetBufferParameterivARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetBufferPointervARB(OpenTK.Graphics.All target, OpenTK.Graphics.BufferPointerNameArb pname, [Out] IntPtr @params);
+ internal delegate void GetBufferPointervARB(OpenTK.Graphics.ArbVertexBufferObject target, OpenTK.Graphics.BufferPointerNameArb pname, [Out] IntPtr @params);
internal static GetBufferPointervARB glGetBufferPointervARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void GenQueriesARB(Int32 n, [Out] UInt32* ids);
@@ -2225,31 +2426,31 @@ namespace OpenTK.Graphics
internal delegate bool IsQueryARB(UInt32 id);
internal static IsQueryARB glIsQueryARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BeginQueryARB(OpenTK.Graphics.All target, UInt32 id);
+ internal delegate void BeginQueryARB(OpenTK.Graphics.ArbOcclusionQuery target, UInt32 id);
internal static BeginQueryARB glBeginQueryARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void EndQueryARB(OpenTK.Graphics.All target);
+ internal delegate void EndQueryARB(OpenTK.Graphics.ArbOcclusionQuery target);
internal static EndQueryARB glEndQueryARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetQueryivARB(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetQueryivARB(OpenTK.Graphics.ArbOcclusionQuery target, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] Int32* @params);
internal unsafe static GetQueryivARB glGetQueryivARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetQueryObjectivARB(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetQueryObjectivARB(UInt32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] Int32* @params);
internal unsafe static GetQueryObjectivARB glGetQueryObjectivARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetQueryObjectuivARB(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32* @params);
+ internal unsafe delegate void GetQueryObjectuivARB(UInt32 id, OpenTK.Graphics.ArbOcclusionQuery pname, [Out] UInt32* @params);
internal unsafe static GetQueryObjectuivARB glGetQueryObjectuivARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void DeleteObjectARB(UInt32 obj);
internal static DeleteObjectARB glDeleteObjectARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate Int32 GetHandleARB(OpenTK.Graphics.All pname);
+ internal delegate Int32 GetHandleARB(OpenTK.Graphics.ArbShaderObjects pname);
internal static GetHandleARB glGetHandleARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void DetachObjectARB(UInt32 containerObj, UInt32 attachedObj);
internal static DetachObjectARB glDetachObjectARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate Int32 CreateShaderObjectARB(OpenTK.Graphics.All shaderType);
+ internal delegate Int32 CreateShaderObjectARB(OpenTK.Graphics.ArbShaderObjects shaderType);
internal static CreateShaderObjectARB glCreateShaderObjectARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void ShaderSourceARB(UInt32 shaderObj, Int32 count, System.String[] @string, Int32* length);
@@ -2330,10 +2531,10 @@ namespace OpenTK.Graphics
internal unsafe delegate void UniformMatrix4fvARB(Int32 location, Int32 count, bool transpose, Single* value);
internal unsafe static UniformMatrix4fvARB glUniformMatrix4fvARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetObjectParameterfvARB(UInt32 obj, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetObjectParameterfvARB(UInt32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Single* @params);
internal unsafe static GetObjectParameterfvARB glGetObjectParameterfvARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetObjectParameterivARB(UInt32 obj, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetObjectParameterivARB(UInt32 obj, OpenTK.Graphics.ArbShaderObjects pname, [Out] Int32* @params);
internal unsafe static GetObjectParameterivARB glGetObjectParameterivARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void GetInfoLogARB(UInt32 obj, Int32 maxLength, [Out] Int32* length, [Out] System.Text.StringBuilder infoLog);
@@ -2345,7 +2546,7 @@ namespace OpenTK.Graphics
internal delegate Int32 GetUniformLocationARB(UInt32 programObj, System.String name);
internal static GetUniformLocationARB glGetUniformLocationARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name);
+ internal unsafe delegate void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ArbShaderObjects* type, [Out] System.Text.StringBuilder name);
internal unsafe static GetActiveUniformARB glGetActiveUniformARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void GetUniformfvARB(UInt32 programObj, Int32 location, [Out] Single* @params);
@@ -2360,18 +2561,120 @@ namespace OpenTK.Graphics
internal delegate void BindAttribLocationARB(UInt32 programObj, UInt32 index, System.String name);
internal static BindAttribLocationARB glBindAttribLocationARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name);
+ internal unsafe delegate void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.ArbVertexShader* type, [Out] System.Text.StringBuilder name);
internal unsafe static GetActiveAttribARB glGetActiveAttribARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate Int32 GetAttribLocationARB(UInt32 programObj, System.String name);
internal static GetAttribLocationARB glGetAttribLocationARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void DrawBuffersARB(Int32 n, OpenTK.Graphics.All* bufs);
+ internal unsafe delegate void DrawBuffersARB(Int32 n, OpenTK.Graphics.ArbDrawBuffers* bufs);
internal unsafe static DrawBuffersARB glDrawBuffersARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ClampColorARB(OpenTK.Graphics.All target, OpenTK.Graphics.All clamp);
+ internal delegate void ClampColorARB(OpenTK.Graphics.ArbColorBufferFloat target, OpenTK.Graphics.ArbColorBufferFloat clamp);
internal static ClampColorARB glClampColorARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void DrawArraysInstancedARB(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count, Int32 primcount);
+ internal static DrawArraysInstancedARB glDrawArraysInstancedARB;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void DrawElementsInstancedARB(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount);
+ internal static DrawElementsInstancedARB glDrawElementsInstancedARB;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate bool IsRenderbuffer(UInt32 renderbuffer);
+ internal static IsRenderbuffer glIsRenderbuffer;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindRenderbuffer(OpenTK.Graphics.RenderbufferTarget target, UInt32 renderbuffer);
+ internal static BindRenderbuffer glBindRenderbuffer;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers);
+ internal unsafe static DeleteRenderbuffers glDeleteRenderbuffers;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GenRenderbuffers(Int32 n, [Out] UInt32* renderbuffers);
+ internal unsafe static GenRenderbuffers glGenRenderbuffers;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void RenderbufferStorage(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferStorage internalformat, Int32 width, Int32 height);
+ internal static RenderbufferStorage glRenderbufferStorage;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetRenderbufferParameteriv(OpenTK.Graphics.RenderbufferTarget target, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32* @params);
+ internal unsafe static GetRenderbufferParameteriv glGetRenderbufferParameteriv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate bool IsFramebuffer(UInt32 framebuffer);
+ internal static IsFramebuffer glIsFramebuffer;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindFramebuffer(OpenTK.Graphics.FramebufferTarget target, UInt32 framebuffer);
+ internal static BindFramebuffer glBindFramebuffer;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void DeleteFramebuffers(Int32 n, UInt32* framebuffers);
+ internal unsafe static DeleteFramebuffers glDeleteFramebuffers;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GenFramebuffers(Int32 n, [Out] UInt32* framebuffers);
+ internal unsafe static GenFramebuffers glGenFramebuffers;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate OpenTK.Graphics.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.FramebufferTarget target);
+ internal static CheckFramebufferStatus glCheckFramebufferStatus;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferTexture1D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level);
+ internal static FramebufferTexture1D glFramebufferTexture1D;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferTexture2D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level);
+ internal static FramebufferTexture2D glFramebufferTexture2D;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferTexture3D(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset);
+ internal static FramebufferTexture3D glFramebufferTexture3D;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferRenderbuffer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer);
+ internal static FramebufferRenderbuffer glFramebufferRenderbuffer;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetFramebufferAttachmentParameteriv(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.FramebufferParameterName pname, [Out] Int32* @params);
+ internal unsafe static GetFramebufferAttachmentParameteriv glGetFramebufferAttachmentParameteriv;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void Generate(OpenTK.Graphics.GenerateMipmapTarget target);
+ internal static Generate glGenerate;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ClearBufferMask mask, OpenTK.Graphics.BlitFramebufferFilter filter);
+ internal static BlitFramebuffer glBlitFramebuffer;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void RenderbufferStorageMultisample(OpenTK.Graphics.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.RenderbufferStorage internalformat, Int32 width, Int32 height);
+ internal static RenderbufferStorageMultisample glRenderbufferStorageMultisample;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferTextureLayer(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer);
+ internal static FramebufferTextureLayer glFramebufferTextureLayer;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramParameteriARB(UInt32 program, OpenTK.Graphics.ArbGeometryShader4 pname, Int32 value);
+ internal static ProgramParameteriARB glProgramParameteriARB;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferTextureARB(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level);
+ internal static FramebufferTextureARB glFramebufferTextureARB;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferTextureLayerARB(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer);
+ internal static FramebufferTextureLayerARB glFramebufferTextureLayerARB;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferTextureFaceARB(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.TextureTarget face);
+ internal static FramebufferTextureFaceARB glFramebufferTextureFaceARB;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void VertexAttribDivisor(UInt32 index, UInt32 divisor);
+ internal static VertexAttribDivisor glVertexAttribDivisor;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MapBufferRange(OpenTK.Graphics.ArbMapBufferRange target, IntPtr offset, IntPtr length, UInt32 access);
+ internal static MapBufferRange glMapBufferRange;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FlushMappedBufferRange(OpenTK.Graphics.ArbMapBufferRange target, IntPtr offset, IntPtr length);
+ internal static FlushMappedBufferRange glFlushMappedBufferRange;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TexBufferARB(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ArbTextureBufferObject internalformat, UInt32 buffer);
+ internal static TexBufferARB glTexBufferARB;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindVertexArray(UInt32 array);
+ internal static BindVertexArray glBindVertexArray;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void DeleteVertexArrays(Int32 n, UInt32* arrays);
+ internal unsafe static DeleteVertexArrays glDeleteVertexArrays;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GenVertexArrays(Int32 n, [Out] UInt32* arrays);
+ internal unsafe static GenVertexArrays glGenVertexArrays;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate bool IsVertexArray(UInt32 array);
+ internal static IsVertexArray glIsVertexArray;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void BlendColorEXT(Single red, Single green, Single blue, Single alpha);
internal static BlendColorEXT glBlendColorEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
@@ -2384,10 +2687,10 @@ namespace OpenTK.Graphics
internal delegate void TexSubImage3DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
internal static TexSubImage3DEXT glTexSubImage3DEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetTexFilterFuncSGIS(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, [Out] Single* weights);
+ internal unsafe delegate void GetTexFilterFuncSGIS(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.SgisTextureFilter4 filter, [Out] Single* weights);
internal unsafe static GetTexFilterFuncSGIS glGetTexFilterFuncSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void TexFilterFuncSGIS(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All filter, Int32 n, Single* weights);
+ internal unsafe delegate void TexFilterFuncSGIS(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.SgisTextureFilter4 filter, Int32 n, Single* weights);
internal unsafe static TexFilterFuncSGIS glTexFilterFuncSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void TexSubImage1DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
@@ -2411,115 +2714,115 @@ namespace OpenTK.Graphics
internal delegate void CopyTexSubImage3DEXT(OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height);
internal static CopyTexSubImage3DEXT glCopyTexSubImage3DEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetHistogramEXT(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
+ internal delegate void GetHistogramEXT(OpenTK.Graphics.ExtHistogram target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
internal static GetHistogramEXT glGetHistogramEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetHistogramParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetHistogramParameterfvEXT(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Single* @params);
internal unsafe static GetHistogramParameterfvEXT glGetHistogramParameterfvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetHistogramParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetHistogramParameterivEXT(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Int32* @params);
internal unsafe static GetHistogramParameterivEXT glGetHistogramParameterivEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetMinmaxEXT(OpenTK.Graphics.All target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
+ internal delegate void GetMinmaxEXT(OpenTK.Graphics.ExtHistogram target, bool reset, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr values);
internal static GetMinmaxEXT glGetMinmaxEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetMinmaxParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetMinmaxParameterfvEXT(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Single* @params);
internal unsafe static GetMinmaxParameterfvEXT glGetMinmaxParameterfvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetMinmaxParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetMinmaxParameterivEXT(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.ExtHistogram pname, [Out] Int32* @params);
internal unsafe static GetMinmaxParameterivEXT glGetMinmaxParameterivEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void HistogramEXT(OpenTK.Graphics.All target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
+ internal delegate void HistogramEXT(OpenTK.Graphics.ExtHistogram target, Int32 width, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
internal static HistogramEXT glHistogramEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void MinmaxEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
+ internal delegate void MinmaxEXT(OpenTK.Graphics.ExtHistogram target, OpenTK.Graphics.PixelInternalFormat internalformat, bool sink);
internal static MinmaxEXT glMinmaxEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ResetHistogramEXT(OpenTK.Graphics.All target);
+ internal delegate void ResetHistogramEXT(OpenTK.Graphics.ExtHistogram target);
internal static ResetHistogramEXT glResetHistogramEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ResetMinmaxEXT(OpenTK.Graphics.All target);
+ internal delegate void ResetMinmaxEXT(OpenTK.Graphics.ExtHistogram target);
internal static ResetMinmaxEXT glResetMinmaxEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ConvolutionFilter1DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
+ internal delegate void ConvolutionFilter1DEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
internal static ConvolutionFilter1DEXT glConvolutionFilter1DEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ConvolutionFilter2DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
+ internal delegate void ConvolutionFilter2DEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr image);
internal static ConvolutionFilter2DEXT glConvolutionFilter2DEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ConvolutionParameterfEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single @params);
+ internal delegate void ConvolutionParameterfEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Single @params);
internal static ConvolutionParameterfEXT glConvolutionParameterfEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ConvolutionParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void ConvolutionParameterfvEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Single* @params);
internal unsafe static ConvolutionParameterfvEXT glConvolutionParameterfvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ConvolutionParameteriEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 @params);
+ internal delegate void ConvolutionParameteriEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Int32 @params);
internal static ConvolutionParameteriEXT glConvolutionParameteriEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ConvolutionParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void ConvolutionParameterivEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, Int32* @params);
internal unsafe static ConvolutionParameterivEXT glConvolutionParameterivEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CopyConvolutionFilter1DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
+ internal delegate void CopyConvolutionFilter1DEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
internal static CopyConvolutionFilter1DEXT glCopyConvolutionFilter1DEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CopyConvolutionFilter2DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
+ internal delegate void CopyConvolutionFilter2DEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
internal static CopyConvolutionFilter2DEXT glCopyConvolutionFilter2DEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetConvolutionFilterEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image);
+ internal delegate void GetConvolutionFilterEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr image);
internal static GetConvolutionFilterEXT glGetConvolutionFilterEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetConvolutionParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetConvolutionParameterfvEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, [Out] Single* @params);
internal unsafe static GetConvolutionParameterfvEXT glGetConvolutionParameterfvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetConvolutionParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetConvolutionParameterivEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.ExtConvolution pname, [Out] Int32* @params);
internal unsafe static GetConvolutionParameterivEXT glGetConvolutionParameterivEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetSeparableFilterEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span);
+ internal delegate void GetSeparableFilterEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr row, [Out] IntPtr column, [Out] IntPtr span);
internal static GetSeparableFilterEXT glGetSeparableFilterEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SeparableFilter2DEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column);
+ internal delegate void SeparableFilter2DEXT(OpenTK.Graphics.ExtConvolution target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr row, IntPtr column);
internal static SeparableFilter2DEXT glSeparableFilter2DEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ColorTableSGI(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table);
+ internal delegate void ColorTableSGI(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table);
internal static ColorTableSGI glColorTableSGI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ColorTableParameterfvSGI(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void ColorTableParameterfvSGI(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, Single* @params);
internal unsafe static ColorTableParameterfvSGI glColorTableParameterfvSGI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ColorTableParameterivSGI(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void ColorTableParameterivSGI(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, Int32* @params);
internal unsafe static ColorTableParameterivSGI glColorTableParameterivSGI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CopyColorTableSGI(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
+ internal delegate void CopyColorTableSGI(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
internal static CopyColorTableSGI glCopyColorTableSGI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetColorTableSGI(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table);
+ internal delegate void GetColorTableSGI(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr table);
internal static GetColorTableSGI glGetColorTableSGI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetColorTableParameterfvSGI(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetColorTableParameterfvSGI(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, [Out] Single* @params);
internal unsafe static GetColorTableParameterfvSGI glGetColorTableParameterfvSGI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetColorTableParameterivSGI(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetColorTableParameterivSGI(OpenTK.Graphics.SgiColorTable target, OpenTK.Graphics.SgiColorTable pname, [Out] Int32* @params);
internal unsafe static GetColorTableParameterivSGI glGetColorTableParameterivSGI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PixelTexGenSGIX(OpenTK.Graphics.All mode);
+ internal delegate void PixelTexGenSGIX(OpenTK.Graphics.SgixPixelTexture mode);
internal static PixelTexGenSGIX glPixelTexGenSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PixelTexGenParameteriSGIS(OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void PixelTexGenParameteriSGIS(OpenTK.Graphics.SgisPixelTexture pname, Int32 param);
internal static PixelTexGenParameteriSGIS glPixelTexGenParameteriSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void PixelTexGenParameterivSGIS(OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void PixelTexGenParameterivSGIS(OpenTK.Graphics.SgisPixelTexture pname, Int32* @params);
internal unsafe static PixelTexGenParameterivSGIS glPixelTexGenParameterivSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PixelTexGenParameterfSGIS(OpenTK.Graphics.All pname, Single param);
+ internal delegate void PixelTexGenParameterfSGIS(OpenTK.Graphics.SgisPixelTexture pname, Single param);
internal static PixelTexGenParameterfSGIS glPixelTexGenParameterfSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void PixelTexGenParameterfvSGIS(OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void PixelTexGenParameterfvSGIS(OpenTK.Graphics.SgisPixelTexture pname, Single* @params);
internal unsafe static PixelTexGenParameterfvSGIS glPixelTexGenParameterfvSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetPixelTexGenParameterivSGIS(OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetPixelTexGenParameterivSGIS(OpenTK.Graphics.SgisPixelTexture pname, [Out] Int32* @params);
internal unsafe static GetPixelTexGenParameterivSGIS glGetPixelTexGenParameterivSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetPixelTexGenParameterfvSGIS(OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetPixelTexGenParameterfvSGIS(OpenTK.Graphics.SgisPixelTexture pname, [Out] Single* @params);
internal unsafe static GetPixelTexGenParameterfvSGIS glGetPixelTexGenParameterfvSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void TexImage4DSGIS(OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 size4d, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
@@ -2561,7 +2864,7 @@ namespace OpenTK.Graphics
internal delegate void SampleMaskSGIS(Single value, bool invert);
internal static SampleMaskSGIS glSampleMaskSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SamplePatternSGIS(OpenTK.Graphics.All pattern);
+ internal delegate void SamplePatternSGIS(OpenTK.Graphics.SgisMultisample pattern);
internal static SamplePatternSGIS glSamplePatternSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void ArrayElementEXT(Int32 i);
@@ -2591,31 +2894,31 @@ namespace OpenTK.Graphics
internal delegate void VertexPointerEXT(Int32 size, OpenTK.Graphics.VertexPointerType type, Int32 stride, Int32 count, IntPtr pointer);
internal static VertexPointerEXT glVertexPointerEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BlendEquationEXT(OpenTK.Graphics.All mode);
+ internal delegate void BlendEquationEXT(OpenTK.Graphics.ExtBlendMinmax mode);
internal static BlendEquationEXT glBlendEquationEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SpriteParameterfSGIX(OpenTK.Graphics.All pname, Single param);
+ internal delegate void SpriteParameterfSGIX(OpenTK.Graphics.SgixSprite pname, Single param);
internal static SpriteParameterfSGIX glSpriteParameterfSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void SpriteParameterfvSGIX(OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void SpriteParameterfvSGIX(OpenTK.Graphics.SgixSprite pname, Single* @params);
internal unsafe static SpriteParameterfvSGIX glSpriteParameterfvSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SpriteParameteriSGIX(OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void SpriteParameteriSGIX(OpenTK.Graphics.SgixSprite pname, Int32 param);
internal static SpriteParameteriSGIX glSpriteParameteriSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void SpriteParameterivSGIX(OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void SpriteParameterivSGIX(OpenTK.Graphics.SgixSprite pname, Int32* @params);
internal unsafe static SpriteParameterivSGIX glSpriteParameterivSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PointParameterfEXT(OpenTK.Graphics.All pname, Single param);
+ internal delegate void PointParameterfEXT(OpenTK.Graphics.ExtPointParameters pname, Single param);
internal static PointParameterfEXT glPointParameterfEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void PointParameterfvEXT(OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void PointParameterfvEXT(OpenTK.Graphics.ExtPointParameters pname, Single* @params);
internal unsafe static PointParameterfvEXT glPointParameterfvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PointParameterfSGIS(OpenTK.Graphics.All pname, Single param);
+ internal delegate void PointParameterfSGIS(OpenTK.Graphics.SgisPointParameters pname, Single param);
internal static PointParameterfSGIS glPointParameterfSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void PointParameterfvSGIS(OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void PointParameterfvSGIS(OpenTK.Graphics.SgisPointParameters pname, Single* @params);
internal unsafe static PointParameterfvSGIS glPointParameterfvSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate Int32 GetInstrumentsSGIX();
@@ -2642,10 +2945,10 @@ namespace OpenTK.Graphics
internal delegate void TagSampleBufferSGIX();
internal static TagSampleBufferSGIX glTagSampleBufferSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void DeformationMap3dSGIX(OpenTK.Graphics.All target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points);
+ internal unsafe delegate void DeformationMap3dSGIX(OpenTK.Graphics.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points);
internal unsafe static DeformationMap3dSGIX glDeformationMap3dSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void DeformationMap3fSGIX(OpenTK.Graphics.All target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points);
+ internal unsafe delegate void DeformationMap3fSGIX(OpenTK.Graphics.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points);
internal unsafe static DeformationMap3fSGIX glDeformationMap3fSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void DeformSGIX(UInt32 mask);
@@ -2666,43 +2969,43 @@ namespace OpenTK.Graphics
internal unsafe delegate void GetFogFuncSGIS([Out] Single* points);
internal unsafe static GetFogFuncSGIS glGetFogFuncSGIS;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ImageTransformParameteriHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void ImageTransformParameteriHP(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Int32 param);
internal static ImageTransformParameteriHP glImageTransformParameteriHP;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ImageTransformParameterfHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single param);
+ internal delegate void ImageTransformParameterfHP(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Single param);
internal static ImageTransformParameterfHP glImageTransformParameterfHP;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ImageTransformParameterivHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void ImageTransformParameterivHP(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Int32* @params);
internal unsafe static ImageTransformParameterivHP glImageTransformParameterivHP;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ImageTransformParameterfvHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void ImageTransformParameterfvHP(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, Single* @params);
internal unsafe static ImageTransformParameterfvHP glImageTransformParameterfvHP;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetImageTransformParameterivHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetImageTransformParameterivHP(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, [Out] Int32* @params);
internal unsafe static GetImageTransformParameterivHP glGetImageTransformParameterivHP;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetImageTransformParameterfvHP(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetImageTransformParameterfvHP(OpenTK.Graphics.HpImageTransform target, OpenTK.Graphics.HpImageTransform pname, [Out] Single* @params);
internal unsafe static GetImageTransformParameterfvHP glGetImageTransformParameterfvHP;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ColorSubTableEXT(OpenTK.Graphics.All target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data);
+ internal delegate void ColorSubTableEXT(OpenTK.Graphics.ExtColorSubtable target, Int32 start, Int32 count, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr data);
internal static ColorSubTableEXT glColorSubTableEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CopyColorSubTableEXT(OpenTK.Graphics.All target, Int32 start, Int32 x, Int32 y, Int32 width);
+ internal delegate void CopyColorSubTableEXT(OpenTK.Graphics.ExtColorSubtable target, Int32 start, Int32 x, Int32 y, Int32 width);
internal static CopyColorSubTableEXT glCopyColorSubTableEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void HintPGI(OpenTK.Graphics.All target, Int32 mode);
+ internal delegate void HintPGI(OpenTK.Graphics.PgiMiscHints target, Int32 mode);
internal static HintPGI glHintPGI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ColorTableEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table);
+ internal delegate void ColorTableEXT(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr table);
internal static ColorTableEXT glColorTableEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetColorTableEXT(OpenTK.Graphics.All target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr data);
+ internal delegate void GetColorTableEXT(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr data);
internal static GetColorTableEXT glGetColorTableEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetColorTableParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetColorTableParameterivEXT(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.ExtPalettedTexture pname, [Out] Int32* @params);
internal unsafe static GetColorTableParameterivEXT glGetColorTableParameterivEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetColorTableParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetColorTableParameterfvEXT(OpenTK.Graphics.ExtPalettedTexture target, OpenTK.Graphics.ExtPalettedTexture pname, [Out] Single* @params);
internal unsafe static GetColorTableParameterfvEXT glGetColorTableParameterfvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void GetListParameterfvSGIX(UInt32 list, OpenTK.Graphics.ListParameterName pname, [Out] Single* @params);
@@ -2723,10 +3026,10 @@ namespace OpenTK.Graphics
internal unsafe delegate void ListParameterivSGIX(UInt32 list, OpenTK.Graphics.ListParameterName pname, Int32* @params);
internal unsafe static ListParameterivSGIX glListParameterivSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void IndexMaterialEXT(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.All mode);
+ internal delegate void IndexMaterialEXT(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.ExtIndexMaterial mode);
internal static IndexMaterialEXT glIndexMaterialEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void IndexFuncEXT(OpenTK.Graphics.All func, Single @ref);
+ internal delegate void IndexFuncEXT(OpenTK.Graphics.ExtIndexFunc func, Single @ref);
internal static IndexFuncEXT glIndexFuncEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void LockArraysEXT(Int32 first, Int32 count);
@@ -2735,37 +3038,37 @@ namespace OpenTK.Graphics
internal delegate void UnlockArraysEXT();
internal static UnlockArraysEXT glUnlockArraysEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void CullParameterdvEXT(OpenTK.Graphics.All pname, [Out] Double* @params);
+ internal unsafe delegate void CullParameterdvEXT(OpenTK.Graphics.ExtCullVertex pname, [Out] Double* @params);
internal unsafe static CullParameterdvEXT glCullParameterdvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void CullParameterfvEXT(OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void CullParameterfvEXT(OpenTK.Graphics.ExtCullVertex pname, [Out] Single* @params);
internal unsafe static CullParameterfvEXT glCullParameterfvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void FragmentColorMaterialSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter mode);
internal static FragmentColorMaterialSGIX glFragmentColorMaterialSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FragmentLightfSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single param);
+ internal delegate void FragmentLightfSGIX(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Single param);
internal static FragmentLightfSGIX glFragmentLightfSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void FragmentLightfvSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void FragmentLightfvSGIX(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Single* @params);
internal unsafe static FragmentLightfvSGIX glFragmentLightfvSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FragmentLightiSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void FragmentLightiSGIX(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Int32 param);
internal static FragmentLightiSGIX glFragmentLightiSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void FragmentLightivSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void FragmentLightivSGIX(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, Int32* @params);
internal unsafe static FragmentLightivSGIX glFragmentLightivSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FragmentLightModelfSGIX(OpenTK.Graphics.All pname, Single param);
+ internal delegate void FragmentLightModelfSGIX(OpenTK.Graphics.SgixFragmentLighting pname, Single param);
internal static FragmentLightModelfSGIX glFragmentLightModelfSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void FragmentLightModelfvSGIX(OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void FragmentLightModelfvSGIX(OpenTK.Graphics.SgixFragmentLighting pname, Single* @params);
internal unsafe static FragmentLightModelfvSGIX glFragmentLightModelfvSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FragmentLightModeliSGIX(OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void FragmentLightModeliSGIX(OpenTK.Graphics.SgixFragmentLighting pname, Int32 param);
internal static FragmentLightModeliSGIX glFragmentLightModeliSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void FragmentLightModelivSGIX(OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void FragmentLightModelivSGIX(OpenTK.Graphics.SgixFragmentLighting pname, Int32* @params);
internal unsafe static FragmentLightModelivSGIX glFragmentLightModelivSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void FragmentMaterialfSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Single param);
@@ -2780,10 +3083,10 @@ namespace OpenTK.Graphics
internal unsafe delegate void FragmentMaterialivSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, Int32* @params);
internal unsafe static FragmentMaterialivSGIX glFragmentMaterialivSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetFragmentLightfvSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetFragmentLightfvSGIX(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, [Out] Single* @params);
internal unsafe static GetFragmentLightfvSGIX glGetFragmentLightfvSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetFragmentLightivSGIX(OpenTK.Graphics.All light, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetFragmentLightivSGIX(OpenTK.Graphics.SgixFragmentLighting light, OpenTK.Graphics.SgixFragmentLighting pname, [Out] Int32* @params);
internal unsafe static GetFragmentLightivSGIX glGetFragmentLightivSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void GetFragmentMaterialfvSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Single* @params);
@@ -2792,16 +3095,16 @@ namespace OpenTK.Graphics
internal unsafe delegate void GetFragmentMaterialivSGIX(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter pname, [Out] Int32* @params);
internal unsafe static GetFragmentMaterialivSGIX glGetFragmentMaterialivSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void LightEnviSGIX(OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void LightEnviSGIX(OpenTK.Graphics.SgixFragmentLighting pname, Int32 param);
internal static LightEnviSGIX glLightEnviSGIX;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void DrawRangeElementsEXT(OpenTK.Graphics.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices);
internal static DrawRangeElementsEXT glDrawRangeElementsEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ApplyTextureEXT(OpenTK.Graphics.All mode);
+ internal delegate void ApplyTextureEXT(OpenTK.Graphics.ExtLightTexture mode);
internal static ApplyTextureEXT glApplyTextureEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void TextureLightEXT(OpenTK.Graphics.All pname);
+ internal delegate void TextureLightEXT(OpenTK.Graphics.ExtLightTexture pname);
internal static TextureLightEXT glTextureLightEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void TextureMaterialEXT(OpenTK.Graphics.MaterialFace face, OpenTK.Graphics.MaterialParameter mode);
@@ -2837,16 +3140,16 @@ namespace OpenTK.Graphics
internal delegate void TexCoordPointervINTEL(Int32 size, OpenTK.Graphics.VertexPointerType type, IntPtr pointer);
internal static TexCoordPointervINTEL glTexCoordPointervINTEL;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PixelTransformParameteriEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void PixelTransformParameteriEXT(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Int32 param);
internal static PixelTransformParameteriEXT glPixelTransformParameteriEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PixelTransformParameterfEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single param);
+ internal delegate void PixelTransformParameterfEXT(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Single param);
internal static PixelTransformParameterfEXT glPixelTransformParameterfEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void PixelTransformParameterivEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void PixelTransformParameterivEXT(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Int32* @params);
internal unsafe static PixelTransformParameterivEXT glPixelTransformParameterivEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void PixelTransformParameterfvEXT(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void PixelTransformParameterfvEXT(OpenTK.Graphics.ExtPixelTransform target, OpenTK.Graphics.ExtPixelTransform pname, Single* @params);
internal unsafe static PixelTransformParameterfvEXT glPixelTransformParameterfvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void SecondaryColor3bEXT(SByte red, SByte green, SByte blue);
@@ -2900,7 +3203,7 @@ namespace OpenTK.Graphics
internal delegate void SecondaryColorPointerEXT(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer);
internal static SecondaryColorPointerEXT glSecondaryColorPointerEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void TextureNormalEXT(OpenTK.Graphics.All mode);
+ internal delegate void TextureNormalEXT(OpenTK.Graphics.ExtTexturePerturbNormal mode);
internal static TextureNormalEXT glTextureNormalEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void MultiDrawArraysEXT(OpenTK.Graphics.BeginMode mode, [Out] Int32* first, [Out] Int32* count, Int32 primcount);
@@ -2921,7 +3224,7 @@ namespace OpenTK.Graphics
internal unsafe delegate void FogCoorddvEXT(Double* coord);
internal unsafe static FogCoorddvEXT glFogCoorddvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FogCoordPointerEXT(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer);
+ internal delegate void FogCoordPointerEXT(OpenTK.Graphics.ExtFogCoord type, Int32 stride, IntPtr pointer);
internal static FogCoordPointerEXT glFogCoordPointerEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void Tangent3bEXT(SByte tx, SByte ty, SByte tz);
@@ -2984,10 +3287,10 @@ namespace OpenTK.Graphics
internal unsafe delegate void Binormal3svEXT(Int16* v);
internal unsafe static Binormal3svEXT glBinormal3svEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void TangentPointerEXT(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer);
+ internal delegate void TangentPointerEXT(OpenTK.Graphics.ExtCoordinateFrame type, Int32 stride, IntPtr pointer);
internal static TangentPointerEXT glTangentPointerEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BinormalPointerEXT(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer);
+ internal delegate void BinormalPointerEXT(OpenTK.Graphics.ExtCoordinateFrame type, Int32 stride, IntPtr pointer);
internal static BinormalPointerEXT glBinormalPointerEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void FinishTextureSUNX();
@@ -3035,7 +3338,7 @@ namespace OpenTK.Graphics
internal unsafe delegate void ReplacementCodeubvSUN(Byte* code);
internal unsafe static ReplacementCodeubvSUN glReplacementCodeubvSUN;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ReplacementCodePointerSUN(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer);
+ internal delegate void ReplacementCodePointerSUN(OpenTK.Graphics.SunTriangleList type, Int32 stride, IntPtr pointer);
internal static ReplacementCodePointerSUN glReplacementCodePointerSUN;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void Color4ubVertex2fSUN(Byte r, Byte g, Byte b, Byte a, Single x, Single y);
@@ -3158,7 +3461,7 @@ namespace OpenTK.Graphics
internal unsafe delegate void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN(UInt32* rc, Single* tc, Single* c, Single* n, Single* v);
internal unsafe static ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BlendFuncSeparateEXT(OpenTK.Graphics.All sfactorRGB, OpenTK.Graphics.All dfactorRGB, OpenTK.Graphics.All sfactorAlpha, OpenTK.Graphics.All dfactorAlpha);
+ internal delegate void BlendFuncSeparateEXT(OpenTK.Graphics.ExtBlendFuncSeparate sfactorRGB, OpenTK.Graphics.ExtBlendFuncSeparate dfactorRGB, OpenTK.Graphics.ExtBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.ExtBlendFuncSeparate dfactorAlpha);
internal static BlendFuncSeparateEXT glBlendFuncSeparateEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void BlendFuncSeparateINGR(OpenTK.Graphics.All sfactorRGB, OpenTK.Graphics.All dfactorRGB, OpenTK.Graphics.All sfactorAlpha, OpenTK.Graphics.All dfactorAlpha);
@@ -3170,7 +3473,7 @@ namespace OpenTK.Graphics
internal unsafe delegate void VertexWeightfvEXT(Single* weight);
internal unsafe static VertexWeightfvEXT glVertexWeightfvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexWeightPointerEXT(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer);
+ internal delegate void VertexWeightPointerEXT(Int32 size, OpenTK.Graphics.ExtVertexWeighting type, Int32 stride, IntPtr pointer);
internal static VertexWeightPointerEXT glVertexWeightPointerEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void FlushVertexArrayRangeNV();
@@ -3179,43 +3482,43 @@ namespace OpenTK.Graphics
internal delegate void VertexArrayRangeNV(Int32 length, IntPtr pointer);
internal static VertexArrayRangeNV glVertexArrayRangeNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void CombinerParameterfvNV(OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void CombinerParameterfvNV(OpenTK.Graphics.NvRegisterCombiners pname, Single* @params);
internal unsafe static CombinerParameterfvNV glCombinerParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CombinerParameterfNV(OpenTK.Graphics.All pname, Single param);
+ internal delegate void CombinerParameterfNV(OpenTK.Graphics.NvRegisterCombiners pname, Single param);
internal static CombinerParameterfNV glCombinerParameterfNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void CombinerParameterivNV(OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void CombinerParameterivNV(OpenTK.Graphics.NvRegisterCombiners pname, Int32* @params);
internal unsafe static CombinerParameterivNV glCombinerParameterivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CombinerParameteriNV(OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void CombinerParameteriNV(OpenTK.Graphics.NvRegisterCombiners pname, Int32 param);
internal static CombinerParameteriNV glCombinerParameteriNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CombinerInputNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All input, OpenTK.Graphics.All mapping, OpenTK.Graphics.All componentUsage);
+ internal delegate void CombinerInputNV(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners input, OpenTK.Graphics.NvRegisterCombiners mapping, OpenTK.Graphics.NvRegisterCombiners componentUsage);
internal static CombinerInputNV glCombinerInputNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void CombinerOutputNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All abOutput, OpenTK.Graphics.All cdOutput, OpenTK.Graphics.All sumOutput, OpenTK.Graphics.All scale, OpenTK.Graphics.All bias, bool abDotProduct, bool cdDotProduct, bool muxSum);
+ internal delegate void CombinerOutputNV(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners abOutput, OpenTK.Graphics.NvRegisterCombiners cdOutput, OpenTK.Graphics.NvRegisterCombiners sumOutput, OpenTK.Graphics.NvRegisterCombiners scale, OpenTK.Graphics.NvRegisterCombiners bias, bool abDotProduct, bool cdDotProduct, bool muxSum);
internal static CombinerOutputNV glCombinerOutputNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FinalCombinerInputNV(OpenTK.Graphics.All variable, OpenTK.Graphics.All input, OpenTK.Graphics.All mapping, OpenTK.Graphics.All componentUsage);
+ internal delegate void FinalCombinerInputNV(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners input, OpenTK.Graphics.NvRegisterCombiners mapping, OpenTK.Graphics.NvRegisterCombiners componentUsage);
internal static FinalCombinerInputNV glFinalCombinerInputNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetCombinerInputParameterfvNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetCombinerInputParameterfvNV(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Single* @params);
internal unsafe static GetCombinerInputParameterfvNV glGetCombinerInputParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetCombinerInputParameterivNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetCombinerInputParameterivNV(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Int32* @params);
internal unsafe static GetCombinerInputParameterivNV glGetCombinerInputParameterivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetCombinerOutputParameterfvNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetCombinerOutputParameterfvNV(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Single* @params);
internal unsafe static GetCombinerOutputParameterfvNV glGetCombinerOutputParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetCombinerOutputParameterivNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All portion, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetCombinerOutputParameterivNV(OpenTK.Graphics.NvRegisterCombiners stage, OpenTK.Graphics.NvRegisterCombiners portion, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Int32* @params);
internal unsafe static GetCombinerOutputParameterivNV glGetCombinerOutputParameterivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetFinalCombinerInputParameterfvNV(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetFinalCombinerInputParameterfvNV(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Single* @params);
internal unsafe static GetFinalCombinerInputParameterfvNV glGetFinalCombinerInputParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetFinalCombinerInputParameterivNV(OpenTK.Graphics.All variable, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetFinalCombinerInputParameterivNV(OpenTK.Graphics.NvRegisterCombiners variable, OpenTK.Graphics.NvRegisterCombiners pname, [Out] Int32* @params);
internal unsafe static GetFinalCombinerInputParameterivNV glGetFinalCombinerInputParameterivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void ResizeBuffersMESA();
@@ -3302,13 +3605,13 @@ namespace OpenTK.Graphics
internal delegate void ColorPointerListIBM(Int32 size, OpenTK.Graphics.ColorPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
internal static ColorPointerListIBM glColorPointerListIBM;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SecondaryColorPointerListIBM(Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer, Int32 ptrstride);
+ internal delegate void SecondaryColorPointerListIBM(Int32 size, OpenTK.Graphics.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride);
internal static SecondaryColorPointerListIBM glSecondaryColorPointerListIBM;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void EdgeFlagPointerListIBM(Int32 stride, bool* pointer, Int32 ptrstride);
internal unsafe static EdgeFlagPointerListIBM glEdgeFlagPointerListIBM;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FogCoordPointerListIBM(OpenTK.Graphics.All type, Int32 stride, IntPtr pointer, Int32 ptrstride);
+ internal delegate void FogCoordPointerListIBM(OpenTK.Graphics.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride);
internal static FogCoordPointerListIBM glFogCoordPointerListIBM;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void IndexPointerListIBM(OpenTK.Graphics.IndexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
@@ -3329,7 +3632,7 @@ namespace OpenTK.Graphics
internal delegate void SampleMaskEXT(Single value, bool invert);
internal static SampleMaskEXT glSampleMaskEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SamplePatternEXT(OpenTK.Graphics.All pattern);
+ internal delegate void SamplePatternEXT(OpenTK.Graphics.ExtMultisample pattern);
internal static SamplePatternEXT glSamplePatternEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void TextureColorMaskSGIS(bool red, bool green, bool blue, bool alpha);
@@ -3350,121 +3653,121 @@ namespace OpenTK.Graphics
internal delegate bool TestFenceNV(UInt32 fence);
internal static TestFenceNV glTestFenceNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetFenceivNV(UInt32 fence, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetFenceivNV(UInt32 fence, OpenTK.Graphics.NvFence pname, [Out] Int32* @params);
internal unsafe static GetFenceivNV glGetFenceivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void FinishFenceNV(UInt32 fence);
internal static FinishFenceNV glFinishFenceNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SetFenceNV(UInt32 fence, OpenTK.Graphics.All condition);
+ internal delegate void SetFenceNV(UInt32 fence, OpenTK.Graphics.NvFence condition);
internal static SetFenceNV glSetFenceNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void MapControlPointsNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points);
+ internal delegate void MapControlPointsNV(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points);
internal static MapControlPointsNV glMapControlPointsNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void MapParameterivNV(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void MapParameterivNV(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, Int32* @params);
internal unsafe static MapParameterivNV glMapParameterivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void MapParameterfvNV(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void MapParameterfvNV(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, Single* @params);
internal unsafe static MapParameterfvNV glMapParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetMapControlPointsNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points);
+ internal delegate void GetMapControlPointsNV(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [Out] IntPtr points);
internal static GetMapControlPointsNV glGetMapControlPointsNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetMapParameterivNV(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetMapParameterivNV(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, [Out] Int32* @params);
internal unsafe static GetMapParameterivNV glGetMapParameterivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetMapParameterfvNV(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetMapParameterfvNV(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators pname, [Out] Single* @params);
internal unsafe static GetMapParameterfvNV glGetMapParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetMapAttribParameterivNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetMapAttribParameterivNV(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Int32* @params);
internal unsafe static GetMapAttribParameterivNV glGetMapAttribParameterivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetMapAttribParameterfvNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetMapAttribParameterfvNV(OpenTK.Graphics.NvEvaluators target, UInt32 index, OpenTK.Graphics.NvEvaluators pname, [Out] Single* @params);
internal unsafe static GetMapAttribParameterfvNV glGetMapAttribParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void EvalMapsNV(OpenTK.Graphics.All target, OpenTK.Graphics.All mode);
+ internal delegate void EvalMapsNV(OpenTK.Graphics.NvEvaluators target, OpenTK.Graphics.NvEvaluators mode);
internal static EvalMapsNV glEvalMapsNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void CombinerStageParameterfvNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, Single* @params);
+ internal unsafe delegate void CombinerStageParameterfvNV(OpenTK.Graphics.NvRegisterCombiners2 stage, OpenTK.Graphics.NvRegisterCombiners2 pname, Single* @params);
internal unsafe static CombinerStageParameterfvNV glCombinerStageParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetCombinerStageParameterfvNV(OpenTK.Graphics.All stage, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetCombinerStageParameterfvNV(OpenTK.Graphics.NvRegisterCombiners2 stage, OpenTK.Graphics.NvRegisterCombiners2 pname, [Out] Single* @params);
internal unsafe static GetCombinerStageParameterfvNV glGetCombinerStageParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate bool AreProgramsResidentNV(Int32 n, UInt32* programs, [Out] bool* residences);
internal unsafe static AreProgramsResidentNV glAreProgramsResidentNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BindProgramNV(OpenTK.Graphics.All target, UInt32 id);
+ internal delegate void BindProgramNV(OpenTK.Graphics.NvVertexProgram target, UInt32 id);
internal static BindProgramNV glBindProgramNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void DeleteProgramsNV(Int32 n, UInt32* programs);
internal unsafe static DeleteProgramsNV glDeleteProgramsNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ExecuteProgramNV(OpenTK.Graphics.All target, UInt32 id, Single* @params);
+ internal unsafe delegate void ExecuteProgramNV(OpenTK.Graphics.NvVertexProgram target, UInt32 id, Single* @params);
internal unsafe static ExecuteProgramNV glExecuteProgramNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void GenProgramsNV(Int32 n, [Out] UInt32* programs);
internal unsafe static GenProgramsNV glGenProgramsNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetProgramParameterdvNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Double* @params);
+ internal unsafe delegate void GetProgramParameterdvNV(OpenTK.Graphics.NvVertexProgram target, UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double* @params);
internal unsafe static GetProgramParameterdvNV glGetProgramParameterdvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetProgramParameterfvNV(OpenTK.Graphics.All target, UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetProgramParameterfvNV(OpenTK.Graphics.NvVertexProgram target, UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single* @params);
internal unsafe static GetProgramParameterfvNV glGetProgramParameterfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetProgramivNV(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetProgramivNV(UInt32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32* @params);
internal unsafe static GetProgramivNV glGetProgramivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetProgramStringNV(UInt32 id, OpenTK.Graphics.All pname, [Out] Byte* program);
+ internal unsafe delegate void GetProgramStringNV(UInt32 id, OpenTK.Graphics.NvVertexProgram pname, [Out] Byte* program);
internal unsafe static GetProgramStringNV glGetProgramStringNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetTrackMatrixivNV(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetTrackMatrixivNV(OpenTK.Graphics.NvVertexProgram target, UInt32 address, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32* @params);
internal unsafe static GetTrackMatrixivNV glGetTrackMatrixivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVertexAttribdvNV(UInt32 index, OpenTK.Graphics.All pname, [Out] Double* @params);
+ internal unsafe delegate void GetVertexAttribdvNV(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Double* @params);
internal unsafe static GetVertexAttribdvNV glGetVertexAttribdvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVertexAttribfvNV(UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetVertexAttribfvNV(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Single* @params);
internal unsafe static GetVertexAttribfvNV glGetVertexAttribfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVertexAttribivNV(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetVertexAttribivNV(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] Int32* @params);
internal unsafe static GetVertexAttribivNV glGetVertexAttribivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetVertexAttribPointervNV(UInt32 index, OpenTK.Graphics.All pname, [Out] IntPtr pointer);
+ internal delegate void GetVertexAttribPointervNV(UInt32 index, OpenTK.Graphics.NvVertexProgram pname, [Out] IntPtr pointer);
internal static GetVertexAttribPointervNV glGetVertexAttribPointervNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate bool IsProgramNV(UInt32 id);
internal static IsProgramNV glIsProgramNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void LoadProgramNV(OpenTK.Graphics.All target, UInt32 id, Int32 len, Byte* program);
+ internal unsafe delegate void LoadProgramNV(OpenTK.Graphics.NvVertexProgram target, UInt32 id, Int32 len, Byte* program);
internal unsafe static LoadProgramNV glLoadProgramNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ProgramParameter4dNV(OpenTK.Graphics.All target, UInt32 index, Double x, Double y, Double z, Double w);
+ internal delegate void ProgramParameter4dNV(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Double x, Double y, Double z, Double w);
internal static ProgramParameter4dNV glProgramParameter4dNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramParameter4dvNV(OpenTK.Graphics.All target, UInt32 index, Double* v);
+ internal unsafe delegate void ProgramParameter4dvNV(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Double* v);
internal unsafe static ProgramParameter4dvNV glProgramParameter4dvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ProgramParameter4fNV(OpenTK.Graphics.All target, UInt32 index, Single x, Single y, Single z, Single w);
+ internal delegate void ProgramParameter4fNV(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Single x, Single y, Single z, Single w);
internal static ProgramParameter4fNV glProgramParameter4fNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramParameter4fvNV(OpenTK.Graphics.All target, UInt32 index, Single* v);
+ internal unsafe delegate void ProgramParameter4fvNV(OpenTK.Graphics.NvVertexProgram target, UInt32 index, Single* v);
internal unsafe static ProgramParameter4fvNV glProgramParameter4fvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramParameters4dvNV(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Double* v);
+ internal unsafe delegate void ProgramParameters4dvNV(OpenTK.Graphics.NvVertexProgram target, UInt32 index, UInt32 count, Double* v);
internal unsafe static ProgramParameters4dvNV glProgramParameters4dvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramParameters4fvNV(OpenTK.Graphics.All target, UInt32 index, UInt32 count, Single* v);
+ internal unsafe delegate void ProgramParameters4fvNV(OpenTK.Graphics.NvVertexProgram target, UInt32 index, UInt32 count, Single* v);
internal unsafe static ProgramParameters4fvNV glProgramParameters4fvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void RequestResidentProgramsNV(Int32 n, UInt32* programs);
internal unsafe static RequestResidentProgramsNV glRequestResidentProgramsNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void TrackMatrixNV(OpenTK.Graphics.All target, UInt32 address, OpenTK.Graphics.All matrix, OpenTK.Graphics.All transform);
+ internal delegate void TrackMatrixNV(OpenTK.Graphics.NvVertexProgram target, UInt32 address, OpenTK.Graphics.NvVertexProgram matrix, OpenTK.Graphics.NvVertexProgram transform);
internal static TrackMatrixNV glTrackMatrixNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexAttribPointerNV(UInt32 index, Int32 fsize, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer);
+ internal delegate void VertexAttribPointerNV(UInt32 index, Int32 fsize, OpenTK.Graphics.NvVertexProgram type, Int32 stride, IntPtr pointer);
internal static VertexAttribPointerNV glVertexAttribPointerNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void VertexAttrib1dNV(UInt32 index, Double x);
@@ -3584,16 +3887,16 @@ namespace OpenTK.Graphics
internal unsafe delegate void VertexAttribs4ubvNV(UInt32 index, Int32 count, Byte* v);
internal unsafe static VertexAttribs4ubvNV glVertexAttribs4ubvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void TexBumpParameterivATI(OpenTK.Graphics.All pname, Int32* param);
+ internal unsafe delegate void TexBumpParameterivATI(OpenTK.Graphics.AtiEnvmapBumpmap pname, Int32* param);
internal unsafe static TexBumpParameterivATI glTexBumpParameterivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void TexBumpParameterfvATI(OpenTK.Graphics.All pname, Single* param);
+ internal unsafe delegate void TexBumpParameterfvATI(OpenTK.Graphics.AtiEnvmapBumpmap pname, Single* param);
internal unsafe static TexBumpParameterfvATI glTexBumpParameterfvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetTexBumpParameterivATI(OpenTK.Graphics.All pname, [Out] Int32* param);
+ internal unsafe delegate void GetTexBumpParameterivATI(OpenTK.Graphics.AtiEnvmapBumpmap pname, [Out] Int32* param);
internal unsafe static GetTexBumpParameterivATI glGetTexBumpParameterivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetTexBumpParameterfvATI(OpenTK.Graphics.All pname, [Out] Single* param);
+ internal unsafe delegate void GetTexBumpParameterfvATI(OpenTK.Graphics.AtiEnvmapBumpmap pname, [Out] Single* param);
internal unsafe static GetTexBumpParameterfvATI glGetTexBumpParameterfvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate Int32 GenFragmentShadersATI(UInt32 range);
@@ -3611,73 +3914,73 @@ namespace OpenTK.Graphics
internal delegate void EndFragmentShaderATI();
internal static EndFragmentShaderATI glEndFragmentShaderATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PassTexCoordATI(UInt32 dst, UInt32 coord, OpenTK.Graphics.All swizzle);
+ internal delegate void PassTexCoordATI(UInt32 dst, UInt32 coord, OpenTK.Graphics.AtiFragmentShader swizzle);
internal static PassTexCoordATI glPassTexCoordATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SampleMapATI(UInt32 dst, UInt32 interp, OpenTK.Graphics.All swizzle);
+ internal delegate void SampleMapATI(UInt32 dst, UInt32 interp, OpenTK.Graphics.AtiFragmentShader swizzle);
internal static SampleMapATI glSampleMapATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ColorFragmentOp1ATI(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod);
+ internal delegate void ColorFragmentOp1ATI(OpenTK.Graphics.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod);
internal static ColorFragmentOp1ATI glColorFragmentOp1ATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ColorFragmentOp2ATI(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod);
+ internal delegate void ColorFragmentOp2ATI(OpenTK.Graphics.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod);
internal static ColorFragmentOp2ATI glColorFragmentOp2ATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ColorFragmentOp3ATI(OpenTK.Graphics.All 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);
+ internal delegate void ColorFragmentOp3ATI(OpenTK.Graphics.AtiFragmentShader 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);
internal static ColorFragmentOp3ATI glColorFragmentOp3ATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void AlphaFragmentOp1ATI(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod);
+ internal delegate void AlphaFragmentOp1ATI(OpenTK.Graphics.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod);
internal static AlphaFragmentOp1ATI glAlphaFragmentOp1ATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void AlphaFragmentOp2ATI(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod);
+ internal delegate void AlphaFragmentOp2ATI(OpenTK.Graphics.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod);
internal static AlphaFragmentOp2ATI glAlphaFragmentOp2ATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void AlphaFragmentOp3ATI(OpenTK.Graphics.All op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod);
+ internal delegate void AlphaFragmentOp3ATI(OpenTK.Graphics.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod, UInt32 arg3, UInt32 arg3Rep, UInt32 arg3Mod);
internal static AlphaFragmentOp3ATI glAlphaFragmentOp3ATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void SetFragmentShaderConstantATI(UInt32 dst, Single* value);
internal unsafe static SetFragmentShaderConstantATI glSetFragmentShaderConstantATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PNTrianglesiATI(OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void PNTrianglesiATI(OpenTK.Graphics.AtiPnTriangles pname, Int32 param);
internal static PNTrianglesiATI glPNTrianglesiATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PNTrianglesfATI(OpenTK.Graphics.All pname, Single param);
+ internal delegate void PNTrianglesfATI(OpenTK.Graphics.AtiPnTriangles pname, Single param);
internal static PNTrianglesfATI glPNTrianglesfATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate Int32 NewObjectBufferATI(Int32 size, IntPtr pointer, OpenTK.Graphics.All usage);
+ internal delegate Int32 NewObjectBufferATI(Int32 size, IntPtr pointer, OpenTK.Graphics.AtiVertexArrayObject usage);
internal static NewObjectBufferATI glNewObjectBufferATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate bool IsObjectBufferATI(UInt32 buffer);
internal static IsObjectBufferATI glIsObjectBufferATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void UpdateObjectBufferATI(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.All preserve);
+ internal delegate void UpdateObjectBufferATI(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.AtiVertexArrayObject preserve);
internal static UpdateObjectBufferATI glUpdateObjectBufferATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetObjectBufferfvATI(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetObjectBufferfvATI(UInt32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single* @params);
internal unsafe static GetObjectBufferfvATI glGetObjectBufferfvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetObjectBufferivATI(UInt32 buffer, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetObjectBufferivATI(UInt32 buffer, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32* @params);
internal unsafe static GetObjectBufferivATI glGetObjectBufferivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void FreeObjectBufferATI(UInt32 buffer);
internal static FreeObjectBufferATI glFreeObjectBufferATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ArrayObjectATI(OpenTK.Graphics.EnableCap array, Int32 size, OpenTK.Graphics.All type, Int32 stride, UInt32 buffer, UInt32 offset);
+ internal delegate void ArrayObjectATI(OpenTK.Graphics.EnableCap array, Int32 size, OpenTK.Graphics.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset);
internal static ArrayObjectATI glArrayObjectATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetArrayObjectfvATI(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetArrayObjectfvATI(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single* @params);
internal unsafe static GetArrayObjectfvATI glGetArrayObjectfvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetArrayObjectivATI(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetArrayObjectivATI(OpenTK.Graphics.EnableCap array, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32* @params);
internal unsafe static GetArrayObjectivATI glGetArrayObjectivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VariantArrayObjectATI(UInt32 id, OpenTK.Graphics.All type, Int32 stride, UInt32 buffer, UInt32 offset);
+ internal delegate void VariantArrayObjectATI(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset);
internal static VariantArrayObjectATI glVariantArrayObjectATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVariantArrayObjectfvATI(UInt32 id, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetVariantArrayObjectfvATI(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Single* @params);
internal unsafe static GetVariantArrayObjectfvATI glGetVariantArrayObjectfvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVariantArrayObjectivATI(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetVariantArrayObjectivATI(UInt32 id, OpenTK.Graphics.AtiVertexArrayObject pname, [Out] Int32* @params);
internal unsafe static GetVariantArrayObjectivATI glGetVariantArrayObjectivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void BeginVertexShaderEXT();
@@ -3695,19 +3998,19 @@ namespace OpenTK.Graphics
internal delegate void DeleteVertexShaderEXT(UInt32 id);
internal static DeleteVertexShaderEXT glDeleteVertexShaderEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ShaderOp1EXT(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1);
+ internal delegate void ShaderOp1EXT(OpenTK.Graphics.ExtVertexShader op, UInt32 res, UInt32 arg1);
internal static ShaderOp1EXT glShaderOp1EXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ShaderOp2EXT(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1, UInt32 arg2);
+ internal delegate void ShaderOp2EXT(OpenTK.Graphics.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2);
internal static ShaderOp2EXT glShaderOp2EXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ShaderOp3EXT(OpenTK.Graphics.All op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3);
+ internal delegate void ShaderOp3EXT(OpenTK.Graphics.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3);
internal static ShaderOp3EXT glShaderOp3EXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SwizzleEXT(UInt32 res, UInt32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW);
+ internal delegate void SwizzleEXT(UInt32 res, UInt32 @in, OpenTK.Graphics.ExtVertexShader outX, OpenTK.Graphics.ExtVertexShader outY, OpenTK.Graphics.ExtVertexShader outZ, OpenTK.Graphics.ExtVertexShader outW);
internal static SwizzleEXT glSwizzleEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void WriteMaskEXT(UInt32 res, UInt32 @in, OpenTK.Graphics.All outX, OpenTK.Graphics.All outY, OpenTK.Graphics.All outZ, OpenTK.Graphics.All outW);
+ internal delegate void WriteMaskEXT(UInt32 res, UInt32 @in, OpenTK.Graphics.ExtVertexShader outX, OpenTK.Graphics.ExtVertexShader outY, OpenTK.Graphics.ExtVertexShader outZ, OpenTK.Graphics.ExtVertexShader outW);
internal static WriteMaskEXT glWriteMaskEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void InsertComponentEXT(UInt32 res, UInt32 src, UInt32 num);
@@ -3716,13 +4019,13 @@ namespace OpenTK.Graphics
internal delegate void ExtractComponentEXT(UInt32 res, UInt32 src, UInt32 num);
internal static ExtractComponentEXT glExtractComponentEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate Int32 GenSymbolsEXT(OpenTK.Graphics.All datatype, OpenTK.Graphics.All storagetype, OpenTK.Graphics.All range, UInt32 components);
+ internal delegate Int32 GenSymbolsEXT(OpenTK.Graphics.ExtVertexShader datatype, OpenTK.Graphics.ExtVertexShader storagetype, OpenTK.Graphics.ExtVertexShader range, UInt32 components);
internal static GenSymbolsEXT glGenSymbolsEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SetInvariantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr);
+ internal delegate void SetInvariantEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader type, IntPtr addr);
internal static SetInvariantEXT glSetInvariantEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.All type, IntPtr addr);
+ internal delegate void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader type, IntPtr addr);
internal static SetLocalConstantEXT glSetLocalConstantEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void VariantbvEXT(UInt32 id, SByte* addr);
@@ -3749,7 +4052,7 @@ namespace OpenTK.Graphics
internal unsafe delegate void VariantuivEXT(UInt32 id, UInt32* addr);
internal unsafe static VariantuivEXT glVariantuivEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VariantPointerEXT(UInt32 id, OpenTK.Graphics.All type, UInt32 stride, IntPtr addr);
+ internal delegate void VariantPointerEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader type, UInt32 stride, IntPtr addr);
internal static VariantPointerEXT glVariantPointerEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void EnableVariantClientStateEXT(UInt32 id);
@@ -3767,181 +4070,181 @@ namespace OpenTK.Graphics
internal delegate Int32 BindTexGenParameterEXT(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter value);
internal static BindTexGenParameterEXT glBindTexGenParameterEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate Int32 BindTextureUnitParameterEXT(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.All value);
+ internal delegate Int32 BindTextureUnitParameterEXT(OpenTK.Graphics.TextureUnit unit, OpenTK.Graphics.ExtVertexShader value);
internal static BindTextureUnitParameterEXT glBindTextureUnitParameterEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate Int32 BindParameterEXT(OpenTK.Graphics.All value);
+ internal delegate Int32 BindParameterEXT(OpenTK.Graphics.ExtVertexShader value);
internal static BindParameterEXT glBindParameterEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate bool IsVariantEnabledEXT(UInt32 id, OpenTK.Graphics.All cap);
+ internal delegate bool IsVariantEnabledEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader cap);
internal static IsVariantEnabledEXT glIsVariantEnabledEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVariantBooleanvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data);
+ internal unsafe delegate void GetVariantBooleanvEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool* data);
internal unsafe static GetVariantBooleanvEXT glGetVariantBooleanvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVariantIntegervEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data);
+ internal unsafe delegate void GetVariantIntegervEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32* data);
internal unsafe static GetVariantIntegervEXT glGetVariantIntegervEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVariantFloatvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data);
+ internal unsafe delegate void GetVariantFloatvEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single* data);
internal unsafe static GetVariantFloatvEXT glGetVariantFloatvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void GetVariantPointervEXT(UInt32 id, OpenTK.Graphics.All value, [Out] IntPtr data);
+ internal delegate void GetVariantPointervEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] IntPtr data);
internal static GetVariantPointervEXT glGetVariantPointervEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetInvariantBooleanvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data);
+ internal unsafe delegate void GetInvariantBooleanvEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool* data);
internal unsafe static GetInvariantBooleanvEXT glGetInvariantBooleanvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetInvariantIntegervEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data);
+ internal unsafe delegate void GetInvariantIntegervEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32* data);
internal unsafe static GetInvariantIntegervEXT glGetInvariantIntegervEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetInvariantFloatvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data);
+ internal unsafe delegate void GetInvariantFloatvEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single* data);
internal unsafe static GetInvariantFloatvEXT glGetInvariantFloatvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetLocalConstantBooleanvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] bool* data);
+ internal unsafe delegate void GetLocalConstantBooleanvEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] bool* data);
internal unsafe static GetLocalConstantBooleanvEXT glGetLocalConstantBooleanvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetLocalConstantIntegervEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Int32* data);
+ internal unsafe delegate void GetLocalConstantIntegervEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Int32* data);
internal unsafe static GetLocalConstantIntegervEXT glGetLocalConstantIntegervEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetLocalConstantFloatvEXT(UInt32 id, OpenTK.Graphics.All value, [Out] Single* data);
+ internal unsafe delegate void GetLocalConstantFloatvEXT(UInt32 id, OpenTK.Graphics.ExtVertexShader value, [Out] Single* data);
internal unsafe static GetLocalConstantFloatvEXT glGetLocalConstantFloatvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream1sATI(OpenTK.Graphics.All stream, Int16 x);
+ internal delegate void VertexStream1sATI(OpenTK.Graphics.AtiVertexStreams stream, Int16 x);
internal static VertexStream1sATI glVertexStream1sATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream1svATI(OpenTK.Graphics.All stream, Int16* coords);
+ internal unsafe delegate void VertexStream1svATI(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords);
internal unsafe static VertexStream1svATI glVertexStream1svATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream1iATI(OpenTK.Graphics.All stream, Int32 x);
+ internal delegate void VertexStream1iATI(OpenTK.Graphics.AtiVertexStreams stream, Int32 x);
internal static VertexStream1iATI glVertexStream1iATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream1ivATI(OpenTK.Graphics.All stream, Int32* coords);
+ internal unsafe delegate void VertexStream1ivATI(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords);
internal unsafe static VertexStream1ivATI glVertexStream1ivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream1fATI(OpenTK.Graphics.All stream, Single x);
+ internal delegate void VertexStream1fATI(OpenTK.Graphics.AtiVertexStreams stream, Single x);
internal static VertexStream1fATI glVertexStream1fATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream1fvATI(OpenTK.Graphics.All stream, Single* coords);
+ internal unsafe delegate void VertexStream1fvATI(OpenTK.Graphics.AtiVertexStreams stream, Single* coords);
internal unsafe static VertexStream1fvATI glVertexStream1fvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream1dATI(OpenTK.Graphics.All stream, Double x);
+ internal delegate void VertexStream1dATI(OpenTK.Graphics.AtiVertexStreams stream, Double x);
internal static VertexStream1dATI glVertexStream1dATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream1dvATI(OpenTK.Graphics.All stream, Double* coords);
+ internal unsafe delegate void VertexStream1dvATI(OpenTK.Graphics.AtiVertexStreams stream, Double* coords);
internal unsafe static VertexStream1dvATI glVertexStream1dvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream2sATI(OpenTK.Graphics.All stream, Int16 x, Int16 y);
+ internal delegate void VertexStream2sATI(OpenTK.Graphics.AtiVertexStreams stream, Int16 x, Int16 y);
internal static VertexStream2sATI glVertexStream2sATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream2svATI(OpenTK.Graphics.All stream, Int16* coords);
+ internal unsafe delegate void VertexStream2svATI(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords);
internal unsafe static VertexStream2svATI glVertexStream2svATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream2iATI(OpenTK.Graphics.All stream, Int32 x, Int32 y);
+ internal delegate void VertexStream2iATI(OpenTK.Graphics.AtiVertexStreams stream, Int32 x, Int32 y);
internal static VertexStream2iATI glVertexStream2iATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream2ivATI(OpenTK.Graphics.All stream, Int32* coords);
+ internal unsafe delegate void VertexStream2ivATI(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords);
internal unsafe static VertexStream2ivATI glVertexStream2ivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream2fATI(OpenTK.Graphics.All stream, Single x, Single y);
+ internal delegate void VertexStream2fATI(OpenTK.Graphics.AtiVertexStreams stream, Single x, Single y);
internal static VertexStream2fATI glVertexStream2fATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream2fvATI(OpenTK.Graphics.All stream, Single* coords);
+ internal unsafe delegate void VertexStream2fvATI(OpenTK.Graphics.AtiVertexStreams stream, Single* coords);
internal unsafe static VertexStream2fvATI glVertexStream2fvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream2dATI(OpenTK.Graphics.All stream, Double x, Double y);
+ internal delegate void VertexStream2dATI(OpenTK.Graphics.AtiVertexStreams stream, Double x, Double y);
internal static VertexStream2dATI glVertexStream2dATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream2dvATI(OpenTK.Graphics.All stream, Double* coords);
+ internal unsafe delegate void VertexStream2dvATI(OpenTK.Graphics.AtiVertexStreams stream, Double* coords);
internal unsafe static VertexStream2dvATI glVertexStream2dvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream3sATI(OpenTK.Graphics.All stream, Int16 x, Int16 y, Int16 z);
+ internal delegate void VertexStream3sATI(OpenTK.Graphics.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z);
internal static VertexStream3sATI glVertexStream3sATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream3svATI(OpenTK.Graphics.All stream, Int16* coords);
+ internal unsafe delegate void VertexStream3svATI(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords);
internal unsafe static VertexStream3svATI glVertexStream3svATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream3iATI(OpenTK.Graphics.All stream, Int32 x, Int32 y, Int32 z);
+ internal delegate void VertexStream3iATI(OpenTK.Graphics.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z);
internal static VertexStream3iATI glVertexStream3iATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream3ivATI(OpenTK.Graphics.All stream, Int32* coords);
+ internal unsafe delegate void VertexStream3ivATI(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords);
internal unsafe static VertexStream3ivATI glVertexStream3ivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream3fATI(OpenTK.Graphics.All stream, Single x, Single y, Single z);
+ internal delegate void VertexStream3fATI(OpenTK.Graphics.AtiVertexStreams stream, Single x, Single y, Single z);
internal static VertexStream3fATI glVertexStream3fATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream3fvATI(OpenTK.Graphics.All stream, Single* coords);
+ internal unsafe delegate void VertexStream3fvATI(OpenTK.Graphics.AtiVertexStreams stream, Single* coords);
internal unsafe static VertexStream3fvATI glVertexStream3fvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream3dATI(OpenTK.Graphics.All stream, Double x, Double y, Double z);
+ internal delegate void VertexStream3dATI(OpenTK.Graphics.AtiVertexStreams stream, Double x, Double y, Double z);
internal static VertexStream3dATI glVertexStream3dATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream3dvATI(OpenTK.Graphics.All stream, Double* coords);
+ internal unsafe delegate void VertexStream3dvATI(OpenTK.Graphics.AtiVertexStreams stream, Double* coords);
internal unsafe static VertexStream3dvATI glVertexStream3dvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream4sATI(OpenTK.Graphics.All stream, Int16 x, Int16 y, Int16 z, Int16 w);
+ internal delegate void VertexStream4sATI(OpenTK.Graphics.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z, Int16 w);
internal static VertexStream4sATI glVertexStream4sATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream4svATI(OpenTK.Graphics.All stream, Int16* coords);
+ internal unsafe delegate void VertexStream4svATI(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords);
internal unsafe static VertexStream4svATI glVertexStream4svATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream4iATI(OpenTK.Graphics.All stream, Int32 x, Int32 y, Int32 z, Int32 w);
+ internal delegate void VertexStream4iATI(OpenTK.Graphics.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z, Int32 w);
internal static VertexStream4iATI glVertexStream4iATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream4ivATI(OpenTK.Graphics.All stream, Int32* coords);
+ internal unsafe delegate void VertexStream4ivATI(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords);
internal unsafe static VertexStream4ivATI glVertexStream4ivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream4fATI(OpenTK.Graphics.All stream, Single x, Single y, Single z, Single w);
+ internal delegate void VertexStream4fATI(OpenTK.Graphics.AtiVertexStreams stream, Single x, Single y, Single z, Single w);
internal static VertexStream4fATI glVertexStream4fATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream4fvATI(OpenTK.Graphics.All stream, Single* coords);
+ internal unsafe delegate void VertexStream4fvATI(OpenTK.Graphics.AtiVertexStreams stream, Single* coords);
internal unsafe static VertexStream4fvATI glVertexStream4fvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexStream4dATI(OpenTK.Graphics.All stream, Double x, Double y, Double z, Double w);
+ internal delegate void VertexStream4dATI(OpenTK.Graphics.AtiVertexStreams stream, Double x, Double y, Double z, Double w);
internal static VertexStream4dATI glVertexStream4dATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexStream4dvATI(OpenTK.Graphics.All stream, Double* coords);
+ internal unsafe delegate void VertexStream4dvATI(OpenTK.Graphics.AtiVertexStreams stream, Double* coords);
internal unsafe static VertexStream4dvATI glVertexStream4dvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void NormalStream3bATI(OpenTK.Graphics.All stream, SByte nx, SByte ny, SByte nz);
+ internal delegate void NormalStream3bATI(OpenTK.Graphics.AtiVertexStreams stream, SByte nx, SByte ny, SByte nz);
internal static NormalStream3bATI glNormalStream3bATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void NormalStream3bvATI(OpenTK.Graphics.All stream, SByte* coords);
+ internal unsafe delegate void NormalStream3bvATI(OpenTK.Graphics.AtiVertexStreams stream, SByte* coords);
internal unsafe static NormalStream3bvATI glNormalStream3bvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void NormalStream3sATI(OpenTK.Graphics.All stream, Int16 nx, Int16 ny, Int16 nz);
+ internal delegate void NormalStream3sATI(OpenTK.Graphics.AtiVertexStreams stream, Int16 nx, Int16 ny, Int16 nz);
internal static NormalStream3sATI glNormalStream3sATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void NormalStream3svATI(OpenTK.Graphics.All stream, Int16* coords);
+ internal unsafe delegate void NormalStream3svATI(OpenTK.Graphics.AtiVertexStreams stream, Int16* coords);
internal unsafe static NormalStream3svATI glNormalStream3svATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void NormalStream3iATI(OpenTK.Graphics.All stream, Int32 nx, Int32 ny, Int32 nz);
+ internal delegate void NormalStream3iATI(OpenTK.Graphics.AtiVertexStreams stream, Int32 nx, Int32 ny, Int32 nz);
internal static NormalStream3iATI glNormalStream3iATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void NormalStream3ivATI(OpenTK.Graphics.All stream, Int32* coords);
+ internal unsafe delegate void NormalStream3ivATI(OpenTK.Graphics.AtiVertexStreams stream, Int32* coords);
internal unsafe static NormalStream3ivATI glNormalStream3ivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void NormalStream3fATI(OpenTK.Graphics.All stream, Single nx, Single ny, Single nz);
+ internal delegate void NormalStream3fATI(OpenTK.Graphics.AtiVertexStreams stream, Single nx, Single ny, Single nz);
internal static NormalStream3fATI glNormalStream3fATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void NormalStream3fvATI(OpenTK.Graphics.All stream, Single* coords);
+ internal unsafe delegate void NormalStream3fvATI(OpenTK.Graphics.AtiVertexStreams stream, Single* coords);
internal unsafe static NormalStream3fvATI glNormalStream3fvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void NormalStream3dATI(OpenTK.Graphics.All stream, Double nx, Double ny, Double nz);
+ internal delegate void NormalStream3dATI(OpenTK.Graphics.AtiVertexStreams stream, Double nx, Double ny, Double nz);
internal static NormalStream3dATI glNormalStream3dATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void NormalStream3dvATI(OpenTK.Graphics.All stream, Double* coords);
+ internal unsafe delegate void NormalStream3dvATI(OpenTK.Graphics.AtiVertexStreams stream, Double* coords);
internal unsafe static NormalStream3dvATI glNormalStream3dvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ClientActiveVertexStreamATI(OpenTK.Graphics.All stream);
+ internal delegate void ClientActiveVertexStreamATI(OpenTK.Graphics.AtiVertexStreams stream);
internal static ClientActiveVertexStreamATI glClientActiveVertexStreamATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexBlendEnviATI(OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void VertexBlendEnviATI(OpenTK.Graphics.AtiVertexStreams pname, Int32 param);
internal static VertexBlendEnviATI glVertexBlendEnviATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexBlendEnvfATI(OpenTK.Graphics.All pname, Single param);
+ internal delegate void VertexBlendEnvfATI(OpenTK.Graphics.AtiVertexStreams pname, Single param);
internal static VertexBlendEnvfATI glVertexBlendEnvfATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ElementPointerATI(OpenTK.Graphics.All type, IntPtr pointer);
+ internal delegate void ElementPointerATI(OpenTK.Graphics.AtiElementArray type, IntPtr pointer);
internal static ElementPointerATI glElementPointerATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void DrawElementArrayATI(OpenTK.Graphics.BeginMode mode, Int32 count);
@@ -3968,22 +4271,22 @@ namespace OpenTK.Graphics
internal delegate void EndOcclusionQueryNV();
internal static EndOcclusionQueryNV glEndOcclusionQueryNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetOcclusionQueryivNV(UInt32 id, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetOcclusionQueryivNV(UInt32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] Int32* @params);
internal unsafe static GetOcclusionQueryivNV glGetOcclusionQueryivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetOcclusionQueryuivNV(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt32* @params);
+ internal unsafe delegate void GetOcclusionQueryuivNV(UInt32 id, OpenTK.Graphics.NvOcclusionQuery pname, [Out] UInt32* @params);
internal unsafe static GetOcclusionQueryuivNV glGetOcclusionQueryuivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PointParameteriNV(OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void PointParameteriNV(OpenTK.Graphics.NvPointSprite pname, Int32 param);
internal static PointParameteriNV glPointParameteriNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void PointParameterivNV(OpenTK.Graphics.All pname, Int32* @params);
+ internal unsafe delegate void PointParameterivNV(OpenTK.Graphics.NvPointSprite pname, Int32* @params);
internal unsafe static PointParameterivNV glPointParameterivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ActiveStencilFaceEXT(OpenTK.Graphics.All face);
+ internal delegate void ActiveStencilFaceEXT(OpenTK.Graphics.ExtStencilTwoSide face);
internal static ActiveStencilFaceEXT glActiveStencilFaceEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ElementPointerAPPLE(OpenTK.Graphics.All type, IntPtr pointer);
+ internal delegate void ElementPointerAPPLE(OpenTK.Graphics.AppleElementArray type, IntPtr pointer);
internal static ElementPointerAPPLE glElementPointerAPPLE;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void DrawElementArrayAPPLE(OpenTK.Graphics.BeginMode mode, Int32 first, Int32 count);
@@ -4016,10 +4319,10 @@ namespace OpenTK.Graphics
internal delegate void FinishFenceAPPLE(UInt32 fence);
internal static FinishFenceAPPLE glFinishFenceAPPLE;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate bool TestObjectAPPLE(OpenTK.Graphics.All @object, UInt32 name);
+ internal delegate bool TestObjectAPPLE(OpenTK.Graphics.AppleFence @object, UInt32 name);
internal static TestObjectAPPLE glTestObjectAPPLE;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FinishObjectAPPLE(OpenTK.Graphics.All @object, Int32 name);
+ internal delegate void FinishObjectAPPLE(OpenTK.Graphics.AppleFence @object, Int32 name);
internal static FinishObjectAPPLE glFinishObjectAPPLE;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void BindVertexArrayAPPLE(UInt32 array);
@@ -4040,10 +4343,10 @@ namespace OpenTK.Graphics
internal delegate void FlushVertexArrayRangeAPPLE(Int32 length, [Out] IntPtr pointer);
internal static FlushVertexArrayRangeAPPLE glFlushVertexArrayRangeAPPLE;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexArrayParameteriAPPLE(OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void VertexArrayParameteriAPPLE(OpenTK.Graphics.AppleVertexArrayRange pname, Int32 param);
internal static VertexArrayParameteriAPPLE glVertexArrayParameteriAPPLE;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void DrawBuffersATI(Int32 n, OpenTK.Graphics.All* bufs);
+ internal unsafe delegate void DrawBuffersATI(Int32 n, OpenTK.Graphics.AtiDrawBuffers* bufs);
internal unsafe static DrawBuffersATI glDrawBuffersATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void ProgramNamedParameter4fNV(UInt32 id, Int32 len, Byte* name, Single x, Single y, Single z, Single w);
@@ -4064,148 +4367,148 @@ namespace OpenTK.Graphics
internal unsafe delegate void GetProgramNamedParameterdvNV(UInt32 id, Int32 len, Byte* name, [Out] Double* @params);
internal unsafe static GetProgramNamedParameterdvNV glGetProgramNamedParameterdvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void Vertex2hNV(UInt16 x, UInt16 y);
+ internal delegate void Vertex2hNV(OpenTK.Math.Half x, OpenTK.Math.Half y);
internal static Vertex2hNV glVertex2hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void Vertex2hvNV(UInt16* v);
+ internal unsafe delegate void Vertex2hvNV(OpenTK.Math.Half* v);
internal unsafe static Vertex2hvNV glVertex2hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void Vertex3hNV(UInt16 x, UInt16 y, UInt16 z);
+ internal delegate void Vertex3hNV(OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z);
internal static Vertex3hNV glVertex3hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void Vertex3hvNV(UInt16* v);
+ internal unsafe delegate void Vertex3hvNV(OpenTK.Math.Half* v);
internal unsafe static Vertex3hvNV glVertex3hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void Vertex4hNV(UInt16 x, UInt16 y, UInt16 z, UInt16 w);
+ internal delegate void Vertex4hNV(OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w);
internal static Vertex4hNV glVertex4hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void Vertex4hvNV(UInt16* v);
+ internal unsafe delegate void Vertex4hvNV(OpenTK.Math.Half* v);
internal unsafe static Vertex4hvNV glVertex4hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void Normal3hNV(UInt16 nx, UInt16 ny, UInt16 nz);
+ internal delegate void Normal3hNV(OpenTK.Math.Half nx, OpenTK.Math.Half ny, OpenTK.Math.Half nz);
internal static Normal3hNV glNormal3hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void Normal3hvNV(UInt16* v);
+ internal unsafe delegate void Normal3hvNV(OpenTK.Math.Half* v);
internal unsafe static Normal3hvNV glNormal3hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void Color3hNV(UInt16 red, UInt16 green, UInt16 blue);
+ internal delegate void Color3hNV(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue);
internal static Color3hNV glColor3hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void Color3hvNV(UInt16* v);
+ internal unsafe delegate void Color3hvNV(OpenTK.Math.Half* v);
internal unsafe static Color3hvNV glColor3hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void Color4hNV(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha);
+ internal delegate void Color4hNV(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue, OpenTK.Math.Half alpha);
internal static Color4hNV glColor4hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void Color4hvNV(UInt16* v);
+ internal unsafe delegate void Color4hvNV(OpenTK.Math.Half* v);
internal unsafe static Color4hvNV glColor4hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void TexCoord1hNV(UInt16 s);
+ internal delegate void TexCoord1hNV(OpenTK.Math.Half s);
internal static TexCoord1hNV glTexCoord1hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void TexCoord1hvNV(UInt16* v);
+ internal unsafe delegate void TexCoord1hvNV(OpenTK.Math.Half* v);
internal unsafe static TexCoord1hvNV glTexCoord1hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void TexCoord2hNV(UInt16 s, UInt16 t);
+ internal delegate void TexCoord2hNV(OpenTK.Math.Half s, OpenTK.Math.Half t);
internal static TexCoord2hNV glTexCoord2hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void TexCoord2hvNV(UInt16* v);
+ internal unsafe delegate void TexCoord2hvNV(OpenTK.Math.Half* v);
internal unsafe static TexCoord2hvNV glTexCoord2hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void TexCoord3hNV(UInt16 s, UInt16 t, UInt16 r);
+ internal delegate void TexCoord3hNV(OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r);
internal static TexCoord3hNV glTexCoord3hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void TexCoord3hvNV(UInt16* v);
+ internal unsafe delegate void TexCoord3hvNV(OpenTK.Math.Half* v);
internal unsafe static TexCoord3hvNV glTexCoord3hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void TexCoord4hNV(UInt16 s, UInt16 t, UInt16 r, UInt16 q);
+ internal delegate void TexCoord4hNV(OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r, OpenTK.Math.Half q);
internal static TexCoord4hNV glTexCoord4hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void TexCoord4hvNV(UInt16* v);
+ internal unsafe delegate void TexCoord4hvNV(OpenTK.Math.Half* v);
internal unsafe static TexCoord4hvNV glTexCoord4hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void MultiTexCoord1hNV(OpenTK.Graphics.TextureUnit target, UInt16 s);
+ internal delegate void MultiTexCoord1hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s);
internal static MultiTexCoord1hNV glMultiTexCoord1hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void MultiTexCoord1hvNV(OpenTK.Graphics.TextureUnit target, UInt16* v);
+ internal unsafe delegate void MultiTexCoord1hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v);
internal unsafe static MultiTexCoord1hvNV glMultiTexCoord1hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void MultiTexCoord2hNV(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t);
+ internal delegate void MultiTexCoord2hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t);
internal static MultiTexCoord2hNV glMultiTexCoord2hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void MultiTexCoord2hvNV(OpenTK.Graphics.TextureUnit target, UInt16* v);
+ internal unsafe delegate void MultiTexCoord2hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v);
internal unsafe static MultiTexCoord2hvNV glMultiTexCoord2hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void MultiTexCoord3hNV(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t, UInt16 r);
+ internal delegate void MultiTexCoord3hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r);
internal static MultiTexCoord3hNV glMultiTexCoord3hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void MultiTexCoord3hvNV(OpenTK.Graphics.TextureUnit target, UInt16* v);
+ internal unsafe delegate void MultiTexCoord3hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v);
internal unsafe static MultiTexCoord3hvNV glMultiTexCoord3hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void MultiTexCoord4hNV(OpenTK.Graphics.TextureUnit target, UInt16 s, UInt16 t, UInt16 r, UInt16 q);
+ internal delegate void MultiTexCoord4hNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half s, OpenTK.Math.Half t, OpenTK.Math.Half r, OpenTK.Math.Half q);
internal static MultiTexCoord4hNV glMultiTexCoord4hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void MultiTexCoord4hvNV(OpenTK.Graphics.TextureUnit target, UInt16* v);
+ internal unsafe delegate void MultiTexCoord4hvNV(OpenTK.Graphics.TextureUnit target, OpenTK.Math.Half* v);
internal unsafe static MultiTexCoord4hvNV glMultiTexCoord4hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FogCoordhNV(UInt16 fog);
+ internal delegate void FogCoordhNV(OpenTK.Math.Half fog);
internal static FogCoordhNV glFogCoordhNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void FogCoordhvNV(UInt16* fog);
+ internal unsafe delegate void FogCoordhvNV(OpenTK.Math.Half* fog);
internal unsafe static FogCoordhvNV glFogCoordhvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void SecondaryColor3hNV(UInt16 red, UInt16 green, UInt16 blue);
+ internal delegate void SecondaryColor3hNV(OpenTK.Math.Half red, OpenTK.Math.Half green, OpenTK.Math.Half blue);
internal static SecondaryColor3hNV glSecondaryColor3hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void SecondaryColor3hvNV(UInt16* v);
+ internal unsafe delegate void SecondaryColor3hvNV(OpenTK.Math.Half* v);
internal unsafe static SecondaryColor3hvNV glSecondaryColor3hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexWeighthNV(UInt16 weight);
+ internal delegate void VertexWeighthNV(OpenTK.Math.Half weight);
internal static VertexWeighthNV glVertexWeighthNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexWeighthvNV(UInt16* weight);
+ internal unsafe delegate void VertexWeighthvNV(OpenTK.Math.Half* weight);
internal unsafe static VertexWeighthvNV glVertexWeighthvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexAttrib1hNV(UInt32 index, UInt16 x);
+ internal delegate void VertexAttrib1hNV(UInt32 index, OpenTK.Math.Half x);
internal static VertexAttrib1hNV glVertexAttrib1hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexAttrib1hvNV(UInt32 index, UInt16* v);
+ internal unsafe delegate void VertexAttrib1hvNV(UInt32 index, OpenTK.Math.Half* v);
internal unsafe static VertexAttrib1hvNV glVertexAttrib1hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexAttrib2hNV(UInt32 index, UInt16 x, UInt16 y);
+ internal delegate void VertexAttrib2hNV(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y);
internal static VertexAttrib2hNV glVertexAttrib2hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexAttrib2hvNV(UInt32 index, UInt16* v);
+ internal unsafe delegate void VertexAttrib2hvNV(UInt32 index, OpenTK.Math.Half* v);
internal unsafe static VertexAttrib2hvNV glVertexAttrib2hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexAttrib3hNV(UInt32 index, UInt16 x, UInt16 y, UInt16 z);
+ internal delegate void VertexAttrib3hNV(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z);
internal static VertexAttrib3hNV glVertexAttrib3hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexAttrib3hvNV(UInt32 index, UInt16* v);
+ internal unsafe delegate void VertexAttrib3hvNV(UInt32 index, OpenTK.Math.Half* v);
internal unsafe static VertexAttrib3hvNV glVertexAttrib3hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexAttrib4hNV(UInt32 index, UInt16 x, UInt16 y, UInt16 z, UInt16 w);
+ internal delegate void VertexAttrib4hNV(UInt32 index, OpenTK.Math.Half x, OpenTK.Math.Half y, OpenTK.Math.Half z, OpenTK.Math.Half w);
internal static VertexAttrib4hNV glVertexAttrib4hNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexAttrib4hvNV(UInt32 index, UInt16* v);
+ internal unsafe delegate void VertexAttrib4hvNV(UInt32 index, OpenTK.Math.Half* v);
internal unsafe static VertexAttrib4hvNV glVertexAttrib4hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexAttribs1hvNV(UInt32 index, Int32 n, UInt16* v);
+ internal unsafe delegate void VertexAttribs1hvNV(UInt32 index, Int32 n, OpenTK.Math.Half* v);
internal unsafe static VertexAttribs1hvNV glVertexAttribs1hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexAttribs2hvNV(UInt32 index, Int32 n, UInt16* v);
+ internal unsafe delegate void VertexAttribs2hvNV(UInt32 index, Int32 n, OpenTK.Math.Half* v);
internal unsafe static VertexAttribs2hvNV glVertexAttribs2hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexAttribs3hvNV(UInt32 index, Int32 n, UInt16* v);
+ internal unsafe delegate void VertexAttribs3hvNV(UInt32 index, Int32 n, OpenTK.Math.Half* v);
internal unsafe static VertexAttribs3hvNV glVertexAttribs3hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void VertexAttribs4hvNV(UInt32 index, Int32 n, UInt16* v);
+ internal unsafe delegate void VertexAttribs4hvNV(UInt32 index, Int32 n, OpenTK.Math.Half* v);
internal unsafe static VertexAttribs4hvNV glVertexAttribs4hvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void PixelDataRangeNV(OpenTK.Graphics.All target, Int32 length, [Out] IntPtr pointer);
+ internal delegate void PixelDataRangeNV(OpenTK.Graphics.NvPixelDataRange target, Int32 length, [Out] IntPtr pointer);
internal static PixelDataRangeNV glPixelDataRangeNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FlushPixelDataRangeNV(OpenTK.Graphics.All target);
+ internal delegate void FlushPixelDataRangeNV(OpenTK.Graphics.NvPixelDataRange target);
internal static FlushPixelDataRangeNV glFlushPixelDataRangeNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void PrimitiveRestartNV();
@@ -4220,25 +4523,25 @@ namespace OpenTK.Graphics
internal delegate void UnmapObjectBufferATI(UInt32 buffer);
internal static UnmapObjectBufferATI glUnmapObjectBufferATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void StencilOpSeparateATI(OpenTK.Graphics.All face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass);
+ internal delegate void StencilOpSeparateATI(OpenTK.Graphics.AtiSeparateStencil face, OpenTK.Graphics.StencilOp sfail, OpenTK.Graphics.StencilOp dpfail, OpenTK.Graphics.StencilOp dppass);
internal static StencilOpSeparateATI glStencilOpSeparateATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void StencilFuncSeparateATI(OpenTK.Graphics.StencilFunction frontfunc, OpenTK.Graphics.StencilFunction backfunc, Int32 @ref, UInt32 mask);
internal static StencilFuncSeparateATI glStencilFuncSeparateATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexAttribArrayObjectATI(UInt32 index, Int32 size, OpenTK.Graphics.All type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset);
+ internal delegate void VertexAttribArrayObjectATI(UInt32 index, Int32 size, OpenTK.Graphics.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset);
internal static VertexAttribArrayObjectATI glVertexAttribArrayObjectATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVertexAttribArrayObjectfvATI(UInt32 index, OpenTK.Graphics.All pname, [Out] Single* @params);
+ internal unsafe delegate void GetVertexAttribArrayObjectfvATI(UInt32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Single* @params);
internal unsafe static GetVertexAttribArrayObjectfvATI glGetVertexAttribArrayObjectfvATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVertexAttribArrayObjectivATI(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetVertexAttribArrayObjectivATI(UInt32 index, OpenTK.Graphics.AtiVertexAttribArrayObject pname, [Out] Int32* @params);
internal unsafe static GetVertexAttribArrayObjectivATI glGetVertexAttribArrayObjectivATI;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void DepthBoundsEXT(Double zmin, Double zmax);
internal static DepthBoundsEXT glDepthBoundsEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BlendEquationSeparateEXT(OpenTK.Graphics.All modeRGB, OpenTK.Graphics.All modeAlpha);
+ internal delegate void BlendEquationSeparateEXT(OpenTK.Graphics.ExtBlendEquationSeparate modeRGB, OpenTK.Graphics.ExtBlendEquationSeparate modeAlpha);
internal static BlendEquationSeparateEXT glBlendEquationSeparateEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate bool IsRenderbufferEXT(UInt32 renderbuffer);
@@ -4298,79 +4601,79 @@ namespace OpenTK.Graphics
internal delegate void StencilClearTagEXT(Int32 stencilTagBits, UInt32 stencilClearTag);
internal static StencilClearTagEXT glStencilClearTagEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BlitFramebufferEXT(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ClearBufferMask mask, OpenTK.Graphics.All filter);
+ internal delegate void BlitFramebufferEXT(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ClearBufferMask mask, OpenTK.Graphics.ExtFramebufferBlit filter);
internal static BlitFramebufferEXT glBlitFramebufferEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void RenderbufferStorageMultisampleEXT(OpenTK.Graphics.All target, Int32 samples, OpenTK.Graphics.All internalformat, Int32 width, Int32 height);
+ internal delegate void RenderbufferStorageMultisampleEXT(OpenTK.Graphics.ExtFramebufferMultisample target, Int32 samples, OpenTK.Graphics.ExtFramebufferMultisample internalformat, Int32 width, Int32 height);
internal static RenderbufferStorageMultisampleEXT glRenderbufferStorageMultisampleEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetQueryObjecti64vEXT(UInt32 id, OpenTK.Graphics.All pname, [Out] Int64* @params);
+ internal unsafe delegate void GetQueryObjecti64vEXT(UInt32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] Int64* @params);
internal unsafe static GetQueryObjecti64vEXT glGetQueryObjecti64vEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetQueryObjectui64vEXT(UInt32 id, OpenTK.Graphics.All pname, [Out] UInt64* @params);
+ internal unsafe delegate void GetQueryObjectui64vEXT(UInt32 id, OpenTK.Graphics.ExtTimerQuery pname, [Out] UInt64* @params);
internal unsafe static GetQueryObjectui64vEXT glGetQueryObjectui64vEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramEnvParameters4fvEXT(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single* @params);
+ internal unsafe delegate void ProgramEnvParameters4fvEXT(OpenTK.Graphics.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params);
internal unsafe static ProgramEnvParameters4fvEXT glProgramEnvParameters4fvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramLocalParameters4fvEXT(OpenTK.Graphics.All target, UInt32 index, Int32 count, Single* @params);
+ internal unsafe delegate void ProgramLocalParameters4fvEXT(OpenTK.Graphics.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params);
internal unsafe static ProgramLocalParameters4fvEXT glProgramLocalParameters4fvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BufferParameteriAPPLE(OpenTK.Graphics.All target, OpenTK.Graphics.All pname, Int32 param);
+ internal delegate void BufferParameteriAPPLE(OpenTK.Graphics.AppleFlushBufferRange target, OpenTK.Graphics.AppleFlushBufferRange pname, Int32 param);
internal static BufferParameteriAPPLE glBufferParameteriAPPLE;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void FlushMappedBufferRangeAPPLE(OpenTK.Graphics.All target, IntPtr offset, IntPtr size);
+ internal delegate void FlushMappedBufferRangeAPPLE(OpenTK.Graphics.AppleFlushBufferRange target, IntPtr offset, IntPtr size);
internal static FlushMappedBufferRangeAPPLE glFlushMappedBufferRangeAPPLE;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ProgramLocalParameterI4iNV(OpenTK.Graphics.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
+ internal delegate void ProgramLocalParameterI4iNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
internal static ProgramLocalParameterI4iNV glProgramLocalParameterI4iNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramLocalParameterI4ivNV(OpenTK.Graphics.All target, UInt32 index, Int32* @params);
+ internal unsafe delegate void ProgramLocalParameterI4ivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32* @params);
internal unsafe static ProgramLocalParameterI4ivNV glProgramLocalParameterI4ivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramLocalParametersI4ivNV(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32* @params);
+ internal unsafe delegate void ProgramLocalParametersI4ivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params);
internal unsafe static ProgramLocalParametersI4ivNV glProgramLocalParametersI4ivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ProgramLocalParameterI4uiNV(OpenTK.Graphics.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
+ internal delegate void ProgramLocalParameterI4uiNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
internal static ProgramLocalParameterI4uiNV glProgramLocalParameterI4uiNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramLocalParameterI4uivNV(OpenTK.Graphics.All target, UInt32 index, UInt32* @params);
+ internal unsafe delegate void ProgramLocalParameterI4uivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32* @params);
internal unsafe static ProgramLocalParameterI4uivNV glProgramLocalParameterI4uivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramLocalParametersI4uivNV(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32* @params);
+ internal unsafe delegate void ProgramLocalParametersI4uivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params);
internal unsafe static ProgramLocalParametersI4uivNV glProgramLocalParametersI4uivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ProgramEnvParameterI4iNV(OpenTK.Graphics.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
+ internal delegate void ProgramEnvParameterI4iNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
internal static ProgramEnvParameterI4iNV glProgramEnvParameterI4iNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramEnvParameterI4ivNV(OpenTK.Graphics.All target, UInt32 index, Int32* @params);
+ internal unsafe delegate void ProgramEnvParameterI4ivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32* @params);
internal unsafe static ProgramEnvParameterI4ivNV glProgramEnvParameterI4ivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramEnvParametersI4ivNV(OpenTK.Graphics.All target, UInt32 index, Int32 count, Int32* @params);
+ internal unsafe delegate void ProgramEnvParametersI4ivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params);
internal unsafe static ProgramEnvParametersI4ivNV glProgramEnvParametersI4ivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ProgramEnvParameterI4uiNV(OpenTK.Graphics.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
+ internal delegate void ProgramEnvParameterI4uiNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
internal static ProgramEnvParameterI4uiNV glProgramEnvParameterI4uiNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramEnvParameterI4uivNV(OpenTK.Graphics.All target, UInt32 index, UInt32* @params);
+ internal unsafe delegate void ProgramEnvParameterI4uivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, UInt32* @params);
internal unsafe static ProgramEnvParameterI4uivNV glProgramEnvParameterI4uivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramEnvParametersI4uivNV(OpenTK.Graphics.All target, UInt32 index, Int32 count, UInt32* @params);
+ internal unsafe delegate void ProgramEnvParametersI4uivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params);
internal unsafe static ProgramEnvParametersI4uivNV glProgramEnvParametersI4uivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetProgramLocalParameterIivNV(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* @params);
+ internal unsafe delegate void GetProgramLocalParameterIivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] Int32* @params);
internal unsafe static GetProgramLocalParameterIivNV glGetProgramLocalParameterIivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetProgramLocalParameterIuivNV(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32* @params);
+ internal unsafe delegate void GetProgramLocalParameterIuivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] UInt32* @params);
internal unsafe static GetProgramLocalParameterIuivNV glGetProgramLocalParameterIuivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetProgramEnvParameterIivNV(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* @params);
+ internal unsafe delegate void GetProgramEnvParameterIivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] Int32* @params);
internal unsafe static GetProgramEnvParameterIivNV glGetProgramEnvParameterIivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetProgramEnvParameterIuivNV(OpenTK.Graphics.All target, UInt32 index, [Out] UInt32* @params);
+ internal unsafe delegate void GetProgramEnvParameterIuivNV(OpenTK.Graphics.NvGpuProgram4 target, UInt32 index, [Out] UInt32* @params);
internal unsafe static GetProgramEnvParameterIuivNV glGetProgramEnvParameterIuivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ProgramVertexLimitNV(OpenTK.Graphics.All target, Int32 limit);
+ internal delegate void ProgramVertexLimitNV(OpenTK.Graphics.NvGeometryProgram4 target, Int32 limit);
internal static ProgramVertexLimitNV glProgramVertexLimitNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void FramebufferTextureEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level);
@@ -4382,7 +4685,7 @@ namespace OpenTK.Graphics
internal delegate void FramebufferTextureFaceEXT(OpenTK.Graphics.FramebufferTarget target, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.TextureTarget face);
internal static FramebufferTextureFaceEXT glFramebufferTextureFaceEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void ProgramParameteriEXT(UInt32 program, OpenTK.Graphics.All pname, Int32 value);
+ internal delegate void ProgramParameteriEXT(UInt32 program, OpenTK.Graphics.ExtGeometryShader4 pname, Int32 value);
internal static ProgramParameteriEXT glProgramParameteriEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void VertexAttribI1iEXT(UInt32 index, Int32 x);
@@ -4445,13 +4748,13 @@ namespace OpenTK.Graphics
internal unsafe delegate void VertexAttribI4usvEXT(UInt32 index, UInt16* v);
internal unsafe static VertexAttribI4usvEXT glVertexAttribI4usvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void VertexAttribIPointerEXT(UInt32 index, Int32 size, OpenTK.Graphics.All type, Int32 stride, IntPtr pointer);
+ internal delegate void VertexAttribIPointerEXT(UInt32 index, Int32 size, OpenTK.Graphics.NvVertexProgram4 type, Int32 stride, IntPtr pointer);
internal static VertexAttribIPointerEXT glVertexAttribIPointerEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVertexAttribIivEXT(UInt32 index, OpenTK.Graphics.All pname, [Out] Int32* @params);
+ internal unsafe delegate void GetVertexAttribIivEXT(UInt32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] Int32* @params);
internal unsafe static GetVertexAttribIivEXT glGetVertexAttribIivEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetVertexAttribIuivEXT(UInt32 index, OpenTK.Graphics.All pname, [Out] UInt32* @params);
+ internal unsafe delegate void GetVertexAttribIuivEXT(UInt32 index, OpenTK.Graphics.NvVertexProgram4 pname, [Out] UInt32* @params);
internal unsafe static GetVertexAttribIuivEXT glGetVertexAttribIuivEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void GetUniformuivEXT(UInt32 program, Int32 location, [Out] UInt32* @params);
@@ -4493,7 +4796,7 @@ namespace OpenTK.Graphics
internal delegate void DrawElementsInstancedEXT(OpenTK.Graphics.BeginMode mode, Int32 count, OpenTK.Graphics.DrawElementsType type, IntPtr indices, Int32 primcount);
internal static DrawElementsInstancedEXT glDrawElementsInstancedEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void TexBufferEXT(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.All internalformat, UInt32 buffer);
+ internal delegate void TexBufferEXT(OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ExtTextureBufferObject internalformat, UInt32 buffer);
internal static TexBufferEXT glTexBufferEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void DepthRangedNV(Double zNear, Double zFar);
@@ -4508,52 +4811,52 @@ namespace OpenTK.Graphics
internal delegate void RenderbufferStorageMultisampleCoverageNV(OpenTK.Graphics.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height);
internal static RenderbufferStorageMultisampleCoverageNV glRenderbufferStorageMultisampleCoverageNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramBufferParametersfvNV(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Single* @params);
+ internal unsafe delegate void ProgramBufferParametersfvNV(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Single* @params);
internal unsafe static ProgramBufferParametersfvNV glProgramBufferParametersfvNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramBufferParametersIivNV(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params);
+ internal unsafe delegate void ProgramBufferParametersIivNV(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params);
internal unsafe static ProgramBufferParametersIivNV glProgramBufferParametersIivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void ProgramBufferParametersIuivNV(OpenTK.Graphics.All target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params);
+ internal unsafe delegate void ProgramBufferParametersIuivNV(OpenTK.Graphics.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params);
internal unsafe static ProgramBufferParametersIuivNV glProgramBufferParametersIuivNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void ColorMaskIndexedEXT(UInt32 index, bool r, bool g, bool b, bool a);
internal static ColorMaskIndexedEXT glColorMaskIndexedEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetBooleanIndexedvEXT(OpenTK.Graphics.All target, UInt32 index, [Out] bool* data);
+ internal unsafe delegate void GetBooleanIndexedvEXT(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index, [Out] bool* data);
internal unsafe static GetBooleanIndexedvEXT glGetBooleanIndexedvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetIntegerIndexedvEXT(OpenTK.Graphics.All target, UInt32 index, [Out] Int32* data);
+ internal unsafe delegate void GetIntegerIndexedvEXT(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index, [Out] Int32* data);
internal unsafe static GetIntegerIndexedvEXT glGetIntegerIndexedvEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void EnableIndexedEXT(OpenTK.Graphics.All target, UInt32 index);
+ internal delegate void EnableIndexedEXT(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index);
internal static EnableIndexedEXT glEnableIndexedEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void DisableIndexedEXT(OpenTK.Graphics.All target, UInt32 index);
+ internal delegate void DisableIndexedEXT(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index);
internal static DisableIndexedEXT glDisableIndexedEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate bool IsEnabledIndexedEXT(OpenTK.Graphics.All target, UInt32 index);
+ internal delegate bool IsEnabledIndexedEXT(OpenTK.Graphics.ExtDrawBuffers2 target, UInt32 index);
internal static IsEnabledIndexedEXT glIsEnabledIndexedEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BeginTransformFeedbackNV(OpenTK.Graphics.All primitiveMode);
+ internal delegate void BeginTransformFeedbackNV(OpenTK.Graphics.NvTransformFeedback primitiveMode);
internal static BeginTransformFeedbackNV glBeginTransformFeedbackNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void EndTransformFeedbackNV();
internal static EndTransformFeedbackNV glEndTransformFeedbackNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void TransformFeedbackAttribsNV(UInt32 count, Int32* attribs, OpenTK.Graphics.All bufferMode);
+ internal unsafe delegate void TransformFeedbackAttribsNV(UInt32 count, Int32* attribs, OpenTK.Graphics.NvTransformFeedback bufferMode);
internal unsafe static TransformFeedbackAttribsNV glTransformFeedbackAttribsNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BindBufferRangeNV(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size);
+ internal delegate void BindBufferRangeNV(OpenTK.Graphics.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size);
internal static BindBufferRangeNV glBindBufferRangeNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BindBufferOffsetNV(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer, IntPtr offset);
+ internal delegate void BindBufferOffsetNV(OpenTK.Graphics.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset);
internal static BindBufferOffsetNV glBindBufferOffsetNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal delegate void BindBufferBaseNV(OpenTK.Graphics.All target, UInt32 index, UInt32 buffer);
+ internal delegate void BindBufferBaseNV(OpenTK.Graphics.NvTransformFeedback target, UInt32 index, UInt32 buffer);
internal static BindBufferBaseNV glBindBufferBaseNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void TransformFeedbackVaryingsNV(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.All bufferMode);
+ internal unsafe delegate void TransformFeedbackVaryingsNV(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.NvTransformFeedback bufferMode);
internal unsafe static TransformFeedbackVaryingsNV glTransformFeedbackVaryingsNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void ActiveVaryingNV(UInt32 program, System.String name);
@@ -4562,7 +4865,7 @@ namespace OpenTK.Graphics
internal delegate Int32 GetVaryingLocationNV(UInt32 program, System.String name);
internal static GetVaryingLocationNV glGetVaryingLocationNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
- internal unsafe delegate void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.All* type, [Out] System.Text.StringBuilder name);
+ internal unsafe delegate void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [Out] Int32* length, [Out] Int32* size, [Out] OpenTK.Graphics.NvTransformFeedback* type, [Out] System.Text.StringBuilder name);
internal unsafe static GetActiveVaryingNV glGetActiveVaryingNV;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void GetTransformFeedbackVaryingNV(UInt32 program, UInt32 index, [Out] Int32* location);
@@ -4594,6 +4897,624 @@ namespace OpenTK.Graphics
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void ClearColorIuiEXT(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha);
internal static ClearColorIuiEXT glClearColorIuiEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FrameTerminatorGREMEDY();
+ internal static FrameTerminatorGREMEDY glFrameTerminatorGREMEDY;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BeginConditionalRenderNV(UInt32 id, OpenTK.Graphics.NvConditionalRender mode);
+ internal static BeginConditionalRenderNV glBeginConditionalRenderNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void EndConditionalRenderNV();
+ internal static EndConditionalRenderNV glEndConditionalRenderNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BeginTransformFeedbackEXT(OpenTK.Graphics.ExtTransformFeedback primitiveMode);
+ internal static BeginTransformFeedbackEXT glBeginTransformFeedbackEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void EndTransformFeedbackEXT();
+ internal static EndTransformFeedbackEXT glEndTransformFeedbackEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindBufferRangeEXT(OpenTK.Graphics.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size);
+ internal static BindBufferRangeEXT glBindBufferRangeEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindBufferOffsetEXT(OpenTK.Graphics.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset);
+ internal static BindBufferOffsetEXT glBindBufferOffsetEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindBufferBaseEXT(OpenTK.Graphics.ExtTransformFeedback target, UInt32 index, UInt32 buffer);
+ internal static BindBufferBaseEXT glBindBufferBaseEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void TransformFeedbackVaryingsEXT(UInt32 program, Int32 count, Int32* locations, OpenTK.Graphics.ExtTransformFeedback bufferMode);
+ internal unsafe static TransformFeedbackVaryingsEXT glTransformFeedbackVaryingsEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTransformFeedbackVaryingEXT(UInt32 program, UInt32 index, [Out] Int32* location);
+ internal unsafe static GetTransformFeedbackVaryingEXT glGetTransformFeedbackVaryingEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ClientAttribDefaultEXT(OpenTK.Graphics.ClientAttribMask mask);
+ internal static ClientAttribDefaultEXT glClientAttribDefaultEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void PushClientAttribDefaultEXT(OpenTK.Graphics.ClientAttribMask mask);
+ internal static PushClientAttribDefaultEXT glPushClientAttribDefaultEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MatrixLoadfEXT(OpenTK.Graphics.MatrixMode mode, Single* m);
+ internal unsafe static MatrixLoadfEXT glMatrixLoadfEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MatrixLoaddEXT(OpenTK.Graphics.MatrixMode mode, Double* m);
+ internal unsafe static MatrixLoaddEXT glMatrixLoaddEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MatrixMultfEXT(OpenTK.Graphics.MatrixMode mode, Single* m);
+ internal unsafe static MatrixMultfEXT glMatrixMultfEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MatrixMultdEXT(OpenTK.Graphics.MatrixMode mode, Double* m);
+ internal unsafe static MatrixMultdEXT glMatrixMultdEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixLoadIdentityEXT(OpenTK.Graphics.MatrixMode mode);
+ internal static MatrixLoadIdentityEXT glMatrixLoadIdentityEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixRotatefEXT(OpenTK.Graphics.MatrixMode mode, Single angle, Single x, Single y, Single z);
+ internal static MatrixRotatefEXT glMatrixRotatefEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixRotatedEXT(OpenTK.Graphics.MatrixMode mode, Double angle, Double x, Double y, Double z);
+ internal static MatrixRotatedEXT glMatrixRotatedEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixScalefEXT(OpenTK.Graphics.MatrixMode mode, Single x, Single y, Single z);
+ internal static MatrixScalefEXT glMatrixScalefEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixScaledEXT(OpenTK.Graphics.MatrixMode mode, Double x, Double y, Double z);
+ internal static MatrixScaledEXT glMatrixScaledEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixTranslatefEXT(OpenTK.Graphics.MatrixMode mode, Single x, Single y, Single z);
+ internal static MatrixTranslatefEXT glMatrixTranslatefEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixTranslatedEXT(OpenTK.Graphics.MatrixMode mode, Double x, Double y, Double z);
+ internal static MatrixTranslatedEXT glMatrixTranslatedEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixFrustumEXT(OpenTK.Graphics.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar);
+ internal static MatrixFrustumEXT glMatrixFrustumEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixOrthoEXT(OpenTK.Graphics.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar);
+ internal static MatrixOrthoEXT glMatrixOrthoEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixPopEXT(OpenTK.Graphics.MatrixMode mode);
+ internal static MatrixPopEXT glMatrixPopEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MatrixPushEXT(OpenTK.Graphics.MatrixMode mode);
+ internal static MatrixPushEXT glMatrixPushEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MatrixLoadTransposefEXT(OpenTK.Graphics.MatrixMode mode, Single* m);
+ internal unsafe static MatrixLoadTransposefEXT glMatrixLoadTransposefEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MatrixLoadTransposedEXT(OpenTK.Graphics.MatrixMode mode, Double* m);
+ internal unsafe static MatrixLoadTransposedEXT glMatrixLoadTransposedEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MatrixMultTransposefEXT(OpenTK.Graphics.MatrixMode mode, Single* m);
+ internal unsafe static MatrixMultTransposefEXT glMatrixMultTransposefEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MatrixMultTransposedEXT(OpenTK.Graphics.MatrixMode mode, Double* m);
+ internal unsafe static MatrixMultTransposedEXT glMatrixMultTransposedEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureParameterfEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single param);
+ internal static TextureParameterfEXT glTextureParameterfEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void TextureParameterfvEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single* @params);
+ internal unsafe static TextureParameterfvEXT glTextureParameterfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureParameteriEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32 param);
+ internal static TextureParameteriEXT glTextureParameteriEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void TextureParameterivEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params);
+ internal unsafe static TextureParameterivEXT glTextureParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureImage1DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static TextureImage1DEXT glTextureImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureImage2DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static TextureImage2DEXT glTextureImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureSubImage1DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static TextureSubImage1DEXT glTextureSubImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureSubImage2DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static TextureSubImage2DEXT glTextureSubImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyTextureImage1DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border);
+ internal static CopyTextureImage1DEXT glCopyTextureImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyTextureImage2DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border);
+ internal static CopyTextureImage2DEXT glCopyTextureImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyTextureSubImage1DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width);
+ internal static CopyTextureSubImage1DEXT glCopyTextureSubImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyTextureSubImage2DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height);
+ internal static CopyTextureSubImage2DEXT glCopyTextureSubImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GetTextureImageEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels);
+ internal static GetTextureImageEXT glGetTextureImageEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTextureParameterfvEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params);
+ internal unsafe static GetTextureParameterfvEXT glGetTextureParameterfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTextureParameterivEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params);
+ internal unsafe static GetTextureParameterivEXT glGetTextureParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTextureLevelParameterfvEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params);
+ internal unsafe static GetTextureLevelParameterfvEXT glGetTextureLevelParameterfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTextureLevelParameterivEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params);
+ internal unsafe static GetTextureLevelParameterivEXT glGetTextureLevelParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureImage3DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static TextureImage3DEXT glTextureImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureSubImage3DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static TextureSubImage3DEXT glTextureSubImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyTextureSubImage3DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height);
+ internal static CopyTextureSubImage3DEXT glCopyTextureSubImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexParameterfEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single param);
+ internal static MultiTexParameterfEXT glMultiTexParameterfEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MultiTexParameterfvEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Single* @params);
+ internal unsafe static MultiTexParameterfvEXT glMultiTexParameterfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexParameteriEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32 param);
+ internal static MultiTexParameteriEXT glMultiTexParameteriEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MultiTexParameterivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params);
+ internal unsafe static MultiTexParameterivEXT glMultiTexParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexImage1DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static MultiTexImage1DEXT glMultiTexImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexImage2DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static MultiTexImage2DEXT glMultiTexImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexSubImage1DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static MultiTexSubImage1DEXT glMultiTexSubImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexSubImage2DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static MultiTexSubImage2DEXT glMultiTexSubImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyMultiTexImage1DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border);
+ internal static CopyMultiTexImage1DEXT glCopyMultiTexImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyMultiTexImage2DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border);
+ internal static CopyMultiTexImage2DEXT glCopyMultiTexImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyMultiTexSubImage1DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width);
+ internal static CopyMultiTexSubImage1DEXT glCopyMultiTexSubImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyMultiTexSubImage2DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height);
+ internal static CopyMultiTexSubImage2DEXT glCopyMultiTexSubImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GetMultiTexImageEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, [Out] IntPtr pixels);
+ internal static GetMultiTexImageEXT glGetMultiTexImageEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexParameterfvEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params);
+ internal unsafe static GetMultiTexParameterfvEXT glGetMultiTexParameterfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexParameterivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params);
+ internal unsafe static GetMultiTexParameterivEXT glGetMultiTexParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexLevelParameterfvEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Single* @params);
+ internal unsafe static GetMultiTexLevelParameterfvEXT glGetMultiTexLevelParameterfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexLevelParameterivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params);
+ internal unsafe static GetMultiTexLevelParameterivEXT glGetMultiTexLevelParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexImage3DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static MultiTexImage3DEXT glMultiTexImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexSubImage3DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, OpenTK.Graphics.PixelType type, IntPtr pixels);
+ internal static MultiTexSubImage3DEXT glMultiTexSubImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CopyMultiTexSubImage3DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height);
+ internal static CopyMultiTexSubImage3DEXT glCopyMultiTexSubImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindMultiTextureEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, UInt32 texture);
+ internal static BindMultiTextureEXT glBindMultiTextureEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void EnableClientStateIndexedEXT(OpenTK.Graphics.EnableCap array, UInt32 index);
+ internal static EnableClientStateIndexedEXT glEnableClientStateIndexedEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void DisableClientStateIndexedEXT(OpenTK.Graphics.EnableCap array, UInt32 index);
+ internal static DisableClientStateIndexedEXT glDisableClientStateIndexedEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexCoordPointerEXT(OpenTK.Graphics.TextureUnit texunit, Int32 size, OpenTK.Graphics.TexCoordPointerType type, Int32 stride, IntPtr pointer);
+ internal static MultiTexCoordPointerEXT glMultiTexCoordPointerEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexEnvfEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single param);
+ internal static MultiTexEnvfEXT glMultiTexEnvfEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MultiTexEnvfvEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Single* @params);
+ internal unsafe static MultiTexEnvfvEXT glMultiTexEnvfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexEnviEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32 param);
+ internal static MultiTexEnviEXT glMultiTexEnviEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MultiTexEnvivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, Int32* @params);
+ internal unsafe static MultiTexEnvivEXT glMultiTexEnvivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexGendEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double param);
+ internal static MultiTexGendEXT glMultiTexGendEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MultiTexGendvEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Double* @params);
+ internal unsafe static MultiTexGendvEXT glMultiTexGendvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexGenfEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single param);
+ internal static MultiTexGenfEXT glMultiTexGenfEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MultiTexGenfvEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Single* @params);
+ internal unsafe static MultiTexGenfvEXT glMultiTexGenfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexGeniEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32 param);
+ internal static MultiTexGeniEXT glMultiTexGeniEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MultiTexGenivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, Int32* @params);
+ internal unsafe static MultiTexGenivEXT glMultiTexGenivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexEnvfvEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Single* @params);
+ internal unsafe static GetMultiTexEnvfvEXT glGetMultiTexEnvfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexEnvivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureEnvTarget target, OpenTK.Graphics.TextureEnvParameter pname, [Out] Int32* @params);
+ internal unsafe static GetMultiTexEnvivEXT glGetMultiTexEnvivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexGendvEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Double* @params);
+ internal unsafe static GetMultiTexGendvEXT glGetMultiTexGendvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexGenfvEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Single* @params);
+ internal unsafe static GetMultiTexGenfvEXT glGetMultiTexGenfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexGenivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureCoordName coord, OpenTK.Graphics.TextureGenParameter pname, [Out] Int32* @params);
+ internal unsafe static GetMultiTexGenivEXT glGetMultiTexGenivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetFloatIndexedvEXT(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Single* data);
+ internal unsafe static GetFloatIndexedvEXT glGetFloatIndexedvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetDoubleIndexedvEXT(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Double* data);
+ internal unsafe static GetDoubleIndexedvEXT glGetDoubleIndexedvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GetPointerIndexedvEXT(OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] IntPtr data);
+ internal static GetPointerIndexedvEXT glGetPointerIndexedvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedTextureImage3DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr bits);
+ internal static CompressedTextureImage3DEXT glCompressedTextureImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedTextureImage2DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr bits);
+ internal static CompressedTextureImage2DEXT glCompressedTextureImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedTextureImage1DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr bits);
+ internal static CompressedTextureImage1DEXT glCompressedTextureImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedTextureSubImage3DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits);
+ internal static CompressedTextureSubImage3DEXT glCompressedTextureSubImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedTextureSubImage2DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits);
+ internal static CompressedTextureSubImage2DEXT glCompressedTextureSubImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedTextureSubImage1DEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits);
+ internal static CompressedTextureSubImage1DEXT glCompressedTextureSubImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GetCompressedTextureImageEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, Int32 lod, [Out] IntPtr img);
+ internal static GetCompressedTextureImageEXT glGetCompressedTextureImageEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedMultiTexImage3DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr bits);
+ internal static CompressedMultiTexImage3DEXT glCompressedMultiTexImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedMultiTexImage2DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr bits);
+ internal static CompressedMultiTexImage2DEXT glCompressedMultiTexImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedMultiTexImage1DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, OpenTK.Graphics.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr bits);
+ internal static CompressedMultiTexImage1DEXT glCompressedMultiTexImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedMultiTexSubImage3DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits);
+ internal static CompressedMultiTexSubImage3DEXT glCompressedMultiTexSubImage3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedMultiTexSubImage2DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits);
+ internal static CompressedMultiTexSubImage2DEXT glCompressedMultiTexSubImage2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void CompressedMultiTexSubImage1DEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.PixelFormat format, Int32 imageSize, IntPtr bits);
+ internal static CompressedMultiTexSubImage1DEXT glCompressedMultiTexSubImage1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GetCompressedMultiTexImageEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, Int32 lod, [Out] IntPtr img);
+ internal static GetCompressedMultiTexImageEXT glGetCompressedMultiTexImageEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedProgramStringEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess format, Int32 len, IntPtr @string);
+ internal static NamedProgramStringEXT glNamedProgramStringEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedProgramLocalParameter4dEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Double x, Double y, Double z, Double w);
+ internal static NamedProgramLocalParameter4dEXT glNamedProgramLocalParameter4dEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void NamedProgramLocalParameter4dvEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Double* @params);
+ internal unsafe static NamedProgramLocalParameter4dvEXT glNamedProgramLocalParameter4dvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedProgramLocalParameter4fEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Single x, Single y, Single z, Single w);
+ internal static NamedProgramLocalParameter4fEXT glNamedProgramLocalParameter4fEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void NamedProgramLocalParameter4fvEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Single* @params);
+ internal unsafe static NamedProgramLocalParameter4fvEXT glNamedProgramLocalParameter4fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetNamedProgramLocalParameterdvEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Double* @params);
+ internal unsafe static GetNamedProgramLocalParameterdvEXT glGetNamedProgramLocalParameterdvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetNamedProgramLocalParameterfvEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Single* @params);
+ internal unsafe static GetNamedProgramLocalParameterfvEXT glGetNamedProgramLocalParameterfvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetNamedProgramivEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params);
+ internal unsafe static GetNamedProgramivEXT glGetNamedProgramivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GetNamedProgramStringEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] IntPtr @string);
+ internal static GetNamedProgramStringEXT glGetNamedProgramStringEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void NamedProgramLocalParameters4fvEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, Single* @params);
+ internal unsafe static NamedProgramLocalParameters4fvEXT glNamedProgramLocalParameters4fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedProgramLocalParameterI4iEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
+ internal static NamedProgramLocalParameterI4iEXT glNamedProgramLocalParameterI4iEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void NamedProgramLocalParameterI4ivEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32* @params);
+ internal unsafe static NamedProgramLocalParameterI4ivEXT glNamedProgramLocalParameterI4ivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void NamedProgramLocalParametersI4ivEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, Int32* @params);
+ internal unsafe static NamedProgramLocalParametersI4ivEXT glNamedProgramLocalParametersI4ivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedProgramLocalParameterI4uiEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
+ internal static NamedProgramLocalParameterI4uiEXT glNamedProgramLocalParameterI4uiEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void NamedProgramLocalParameterI4uivEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, UInt32* @params);
+ internal unsafe static NamedProgramLocalParameterI4uivEXT glNamedProgramLocalParameterI4uivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void NamedProgramLocalParametersI4uivEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, Int32 count, UInt32* @params);
+ internal unsafe static NamedProgramLocalParametersI4uivEXT glNamedProgramLocalParametersI4uivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetNamedProgramLocalParameterIivEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] Int32* @params);
+ internal unsafe static GetNamedProgramLocalParameterIivEXT glGetNamedProgramLocalParameterIivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetNamedProgramLocalParameterIuivEXT(UInt32 program, OpenTK.Graphics.ExtDirectStateAccess target, UInt32 index, [Out] UInt32* @params);
+ internal unsafe static GetNamedProgramLocalParameterIuivEXT glGetNamedProgramLocalParameterIuivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void TextureParameterIivEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params);
+ internal unsafe static TextureParameterIivEXT glTextureParameterIivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void TextureParameterIuivEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params);
+ internal unsafe static TextureParameterIuivEXT glTextureParameterIuivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTextureParameterIivEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params);
+ internal unsafe static GetTextureParameterIivEXT glGetTextureParameterIivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetTextureParameterIuivEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params);
+ internal unsafe static GetTextureParameterIuivEXT glGetTextureParameterIuivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MultiTexParameterIivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, Int32* @params);
+ internal unsafe static MultiTexParameterIivEXT glMultiTexParameterIivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void MultiTexParameterIuivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.TextureParameterName pname, UInt32* @params);
+ internal unsafe static MultiTexParameterIuivEXT glMultiTexParameterIuivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexParameterIivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] Int32* @params);
+ internal unsafe static GetMultiTexParameterIivEXT glGetMultiTexParameterIivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultiTexParameterIuivEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.GetTextureParameter pname, [Out] UInt32* @params);
+ internal unsafe static GetMultiTexParameterIuivEXT glGetMultiTexParameterIuivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform1fEXT(UInt32 program, Int32 location, Single v0);
+ internal static ProgramUniform1fEXT glProgramUniform1fEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1);
+ internal static ProgramUniform2fEXT glProgramUniform2fEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2);
+ internal static ProgramUniform3fEXT glProgramUniform3fEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3);
+ internal static ProgramUniform4fEXT glProgramUniform4fEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0);
+ internal static ProgramUniform1iEXT glProgramUniform1iEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1);
+ internal static ProgramUniform2iEXT glProgramUniform2iEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2);
+ internal static ProgramUniform3iEXT glProgramUniform3iEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3);
+ internal static ProgramUniform4iEXT glProgramUniform4iEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, Single* value);
+ internal unsafe static ProgramUniform1fvEXT glProgramUniform1fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, Single* value);
+ internal unsafe static ProgramUniform2fvEXT glProgramUniform2fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, Single* value);
+ internal unsafe static ProgramUniform3fvEXT glProgramUniform3fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, Single* value);
+ internal unsafe static ProgramUniform4fvEXT glProgramUniform4fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, Int32* value);
+ internal unsafe static ProgramUniform1ivEXT glProgramUniform1ivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, Int32* value);
+ internal unsafe static ProgramUniform2ivEXT glProgramUniform2ivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, Int32* value);
+ internal unsafe static ProgramUniform3ivEXT glProgramUniform3ivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, Int32* value);
+ internal unsafe static ProgramUniform4ivEXT glProgramUniform4ivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
+ internal unsafe static ProgramUniformMatrix2fvEXT glProgramUniformMatrix2fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
+ internal unsafe static ProgramUniformMatrix3fvEXT glProgramUniformMatrix3fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
+ internal unsafe static ProgramUniformMatrix4fvEXT glProgramUniformMatrix4fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
+ internal unsafe static ProgramUniformMatrix2x3fvEXT glProgramUniformMatrix2x3fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
+ internal unsafe static ProgramUniformMatrix3x2fvEXT glProgramUniformMatrix3x2fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
+ internal unsafe static ProgramUniformMatrix2x4fvEXT glProgramUniformMatrix2x4fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
+ internal unsafe static ProgramUniformMatrix4x2fvEXT glProgramUniformMatrix4x2fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
+ internal unsafe static ProgramUniformMatrix3x4fvEXT glProgramUniformMatrix3x4fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
+ internal unsafe static ProgramUniformMatrix4x3fvEXT glProgramUniformMatrix4x3fvEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0);
+ internal static ProgramUniform1uiEXT glProgramUniform1uiEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1);
+ internal static ProgramUniform2uiEXT glProgramUniform2uiEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2);
+ internal static ProgramUniform3uiEXT glProgramUniform3uiEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3);
+ internal static ProgramUniform4uiEXT glProgramUniform4uiEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, UInt32* value);
+ internal unsafe static ProgramUniform1uivEXT glProgramUniform1uivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, UInt32* value);
+ internal unsafe static ProgramUniform2uivEXT glProgramUniform2uivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, UInt32* value);
+ internal unsafe static ProgramUniform3uivEXT glProgramUniform3uivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void ProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, UInt32* value);
+ internal unsafe static ProgramUniform4uivEXT glProgramUniform4uivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedBufferDataEXT(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.ExtDirectStateAccess usage);
+ internal static NamedBufferDataEXT glNamedBufferDataEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data);
+ internal static NamedBufferSubDataEXT glNamedBufferSubDataEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate IntPtr MapNamedBufferEXT(UInt32 buffer, OpenTK.Graphics.ExtDirectStateAccess access);
+ internal unsafe static MapNamedBufferEXT glMapNamedBufferEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate bool UnmapNamedBufferEXT(UInt32 buffer);
+ internal static UnmapNamedBufferEXT glUnmapNamedBufferEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetNamedBufferParameterivEXT(UInt32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params);
+ internal unsafe static GetNamedBufferParameterivEXT glGetNamedBufferParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GetNamedBufferPointervEXT(UInt32 buffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] IntPtr @params);
+ internal static GetNamedBufferPointervEXT glGetNamedBufferPointervEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GetNamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, [Out] IntPtr data);
+ internal static GetNamedBufferSubDataEXT glGetNamedBufferSubDataEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureBufferEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ExtDirectStateAccess internalformat, UInt32 buffer);
+ internal static TextureBufferEXT glTextureBufferEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexBufferEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, OpenTK.Graphics.ExtDirectStateAccess internalformat, UInt32 buffer);
+ internal static MultiTexBufferEXT glMultiTexBufferEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedRenderbufferStorageEXT(UInt32 renderbuffer, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height);
+ internal static NamedRenderbufferStorageEXT glNamedRenderbufferStorageEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetNamedRenderbufferParameterivEXT(UInt32 renderbuffer, OpenTK.Graphics.RenderbufferParameterName pname, [Out] Int32* @params);
+ internal unsafe static GetNamedRenderbufferParameterivEXT glGetNamedRenderbufferParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate OpenTK.Graphics.ExtDirectStateAccess CheckNamedFramebufferStatusEXT(UInt32 framebuffer, OpenTK.Graphics.FramebufferTarget target);
+ internal static CheckNamedFramebufferStatusEXT glCheckNamedFramebufferStatusEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedFramebufferTexture1DEXT(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level);
+ internal static NamedFramebufferTexture1DEXT glNamedFramebufferTexture1DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedFramebufferTexture2DEXT(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level);
+ internal static NamedFramebufferTexture2DEXT glNamedFramebufferTexture2DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedFramebufferTexture3DEXT(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset);
+ internal static NamedFramebufferTexture3DEXT glNamedFramebufferTexture3DEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedFramebufferRenderbufferEXT(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer);
+ internal static NamedFramebufferRenderbufferEXT glNamedFramebufferRenderbufferEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetNamedFramebufferAttachmentParameterivEXT(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params);
+ internal unsafe static GetNamedFramebufferAttachmentParameterivEXT glGetNamedFramebufferAttachmentParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GenerateTextureMipmapEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target);
+ internal static GenerateTextureMipmapEXT glGenerateTextureMipmapEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void GenerateMultiTexMipmapEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target);
+ internal static GenerateMultiTexMipmapEXT glGenerateMultiTexMipmapEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferDrawBufferEXT(UInt32 framebuffer, OpenTK.Graphics.DrawBufferMode mode);
+ internal static FramebufferDrawBufferEXT glFramebufferDrawBufferEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void FramebufferDrawBuffersEXT(UInt32 framebuffer, Int32 n, OpenTK.Graphics.DrawBufferMode* bufs);
+ internal unsafe static FramebufferDrawBuffersEXT glFramebufferDrawBuffersEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void FramebufferReadBufferEXT(UInt32 framebuffer, OpenTK.Graphics.ReadBufferMode mode);
+ internal static FramebufferReadBufferEXT glFramebufferReadBufferEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetFramebufferParameterivEXT(UInt32 framebuffer, OpenTK.Graphics.ExtDirectStateAccess pname, [Out] Int32* @params);
+ internal unsafe static GetFramebufferParameterivEXT glGetFramebufferParameterivEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedRenderbufferStorageMultisampleEXT(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height);
+ internal static NamedRenderbufferStorageMultisampleEXT glNamedRenderbufferStorageMultisampleEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedRenderbufferStorageMultisampleCoverageEXT(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.PixelInternalFormat internalformat, Int32 width, Int32 height);
+ internal static NamedRenderbufferStorageMultisampleCoverageEXT glNamedRenderbufferStorageMultisampleCoverageEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedFramebufferTextureEXT(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level);
+ internal static NamedFramebufferTextureEXT glNamedFramebufferTextureEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedFramebufferTextureLayerEXT(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer);
+ internal static NamedFramebufferTextureLayerEXT glNamedFramebufferTextureLayerEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void NamedFramebufferTextureFaceEXT(UInt32 framebuffer, OpenTK.Graphics.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.TextureTarget face);
+ internal static NamedFramebufferTextureFaceEXT glNamedFramebufferTextureFaceEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TextureRenderbufferEXT(UInt32 texture, OpenTK.Graphics.TextureTarget target, UInt32 renderbuffer);
+ internal static TextureRenderbufferEXT glTextureRenderbufferEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void MultiTexRenderbufferEXT(OpenTK.Graphics.TextureUnit texunit, OpenTK.Graphics.TextureTarget target, UInt32 renderbuffer);
+ internal static MultiTexRenderbufferEXT glMultiTexRenderbufferEXT;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GetMultisamplefvNV(OpenTK.Graphics.NvExplicitMultisample pname, UInt32 index, [Out] Single* val);
+ internal unsafe static GetMultisamplefvNV glGetMultisamplefvNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void SampleMaskIndexedNV(UInt32 index, UInt32 mask);
+ internal static SampleMaskIndexedNV glSampleMaskIndexedNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void TexRenderbufferNV(OpenTK.Graphics.TextureTarget target, UInt32 renderbuffer);
+ internal static TexRenderbufferNV glTexRenderbufferNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void BindTransformFeedbackNV(OpenTK.Graphics.NvTransformFeedback2 target, UInt32 id);
+ internal static BindTransformFeedbackNV glBindTransformFeedbackNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void DeleteTransformFeedbacksNV(Int32 n, UInt32* ids);
+ internal unsafe static DeleteTransformFeedbacksNV glDeleteTransformFeedbacksNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal unsafe delegate void GenTransformFeedbacksNV(Int32 n, [Out] UInt32* ids);
+ internal unsafe static GenTransformFeedbacksNV glGenTransformFeedbacksNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate bool IsTransformFeedbackNV(UInt32 id);
+ internal static IsTransformFeedbackNV glIsTransformFeedbackNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void PauseTransformFeedbackNV();
+ internal static PauseTransformFeedbackNV glPauseTransformFeedbackNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void ResumeTransformFeedbackNV();
+ internal static ResumeTransformFeedbackNV glResumeTransformFeedbackNV;
+ [System.Security.SuppressUnmanagedCodeSecurity()]
+ internal delegate void DrawTransformFeedbackNV(OpenTK.Graphics.NvTransformFeedback2 mode, UInt32 id);
+ internal static DrawTransformFeedbackNV glDrawTransformFeedbackNV;
}
}
}
diff --git a/Source/OpenTK/Graphics/GL/GLEnums.cs b/Source/OpenTK/Graphics/GL/GLEnums.cs
index acb05e80..f1028631 100644
--- a/Source/OpenTK/Graphics/GL/GLEnums.cs
+++ b/Source/OpenTK/Graphics/GL/GLEnums.cs
@@ -1,3 +1,30 @@
+#region License
+//
+// The Open Toolkit Library License
+//
+// Copyright (c) 2006 - 2008 the Open Toolkit library, except where noted.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights to
+// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+// the Software, and to permit persons to whom the Software is furnished to do
+// so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in all
+// copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+//
+#endregion
+
namespace OpenTK.Graphics
{
#pragma warning disable 1591
@@ -5,174 +32,172 @@ namespace OpenTK.Graphics
public enum StencilFace
{
Front = ((int)0X0404),
- FrontAndBack = ((int)0X0408),
Back = ((int)0X0405),
+ FrontAndBack = ((int)0X0408),
}
public enum DrawElementsType
{
UnsignedByte = ((int)0X1401),
- UnsignedInt = ((int)0X1405),
UnsignedShort = ((int)0X1403),
+ UnsignedInt = ((int)0X1405),
}
public enum AttribMask
{
- ListBit = ((int)0X00020000),
- LightingBit = ((int)0X00000040),
- PointBit = ((int)0X00000002),
- AccumBufferBit = ((int)0X00000200),
- TransformBit = ((int)0X00001000),
- TextureBit = ((int)0X00040000),
- PixelModeBit = ((int)0X00000020),
- MultisampleBit = ((int)0X20000000),
- FogBit = ((int)0X00000080),
- EnableBit = ((int)0X00002000),
- LineBit = ((int)0X00000004),
- AllAttribBits = unchecked((int)0Xffffffff),
- ViewportBit = ((int)0X00000800),
- HintBit = ((int)0X00008000),
- StencilBufferBit = ((int)0X00000400),
CurrentBit = ((int)0X00000001),
- ScissorBit = ((int)0X00080000),
+ PointBit = ((int)0X00000002),
+ LineBit = ((int)0X00000004),
PolygonBit = ((int)0X00000008),
PolygonStippleBit = ((int)0X00000010),
- ColorBufferBit = ((int)0X00004000),
- EvalBit = ((int)0X00010000),
+ PixelModeBit = ((int)0X00000020),
+ LightingBit = ((int)0X00000040),
+ FogBit = ((int)0X00000080),
DepthBufferBit = ((int)0X00000100),
+ AccumBufferBit = ((int)0X00000200),
+ StencilBufferBit = ((int)0X00000400),
+ ViewportBit = ((int)0X00000800),
+ TransformBit = ((int)0X00001000),
+ EnableBit = ((int)0X00002000),
+ ColorBufferBit = ((int)0X00004000),
+ HintBit = ((int)0X00008000),
+ EvalBit = ((int)0X00010000),
+ ListBit = ((int)0X00020000),
+ TextureBit = ((int)0X00040000),
+ ScissorBit = ((int)0X00080000),
+ MultisampleBit = ((int)0X20000000),
+ AllAttribBits = unchecked((int)0Xffffffff),
}
public enum ClearBufferMask
{
- StencilBufferBit = ((int)0X00000400),
- AccumBufferBit = ((int)0X00000200),
- ColorBufferBit = ((int)0X00004000),
DepthBufferBit = ((int)0X00000100),
+ AccumBufferBit = ((int)0X00000200),
+ StencilBufferBit = ((int)0X00000400),
+ ColorBufferBit = ((int)0X00004000),
}
public enum ClientAttribMask
{
ClientPixelStoreBit = ((int)0X00000001),
- ClientAllAttribBits = unchecked((int)0Xffffffff),
ClientVertexArrayBit = ((int)0X00000002),
+ ClientAllAttribBits = unchecked((int)0Xffffffff),
}
public enum Boolean
{
- True = ((int)1),
False = ((int)0),
+ True = ((int)1),
}
public enum BeginMode
{
+ Points = ((int)0X0000),
+ Lines = ((int)0X0001),
+ LineLoop = ((int)0X0002),
+ LineStrip = ((int)0X0003),
+ Triangles = ((int)0X0004),
+ TriangleStrip = ((int)0X0005),
+ TriangleFan = ((int)0X0006),
Quads = ((int)0X0007),
QuadStrip = ((int)0X0008),
Polygon = ((int)0X0009),
- Triangles = ((int)0X0004),
- Points = ((int)0X0000),
- LineLoop = ((int)0X0002),
- LineStrip = ((int)0X0003),
- TriangleFan = ((int)0X0006),
- TriangleStrip = ((int)0X0005),
- Lines = ((int)0X0001),
}
public enum AccumOp
{
- Load = ((int)0X0101),
- Mult = ((int)0X0103),
- Return = ((int)0X0102),
Accum = ((int)0X0100),
+ Load = ((int)0X0101),
+ Return = ((int)0X0102),
+ Mult = ((int)0X0103),
Add = ((int)0X0104),
}
public enum AlphaFunction
{
Never = ((int)0X0200),
- Equal = ((int)0X0202),
- Always = ((int)0X0207),
Less = ((int)0X0201),
- Gequal = ((int)0X0206),
+ Equal = ((int)0X0202),
Lequal = ((int)0X0203),
- Notequal = ((int)0X0205),
Greater = ((int)0X0204),
+ Notequal = ((int)0X0205),
+ Gequal = ((int)0X0206),
+ Always = ((int)0X0207),
}
public enum BlendingFactorDest
{
- ConstantColorExt = ((int)0X8001),
- OneMinusSrcAlpha = ((int)0X0303),
- One = ((int)1),
- OneMinusDstAlpha = ((int)0X0305),
- OneMinusConstantColorExt = ((int)0X8002),
+ Zero = ((int)0),
SrcColor = ((int)0X0300),
OneMinusSrcColor = ((int)0X0301),
- OneMinusDstColor = ((int)0X0307),
- ConstantAlphaExt = ((int)0X8003),
SrcAlpha = ((int)0X0302),
- DstColor = ((int)0X0306),
- Zero = ((int)0),
+ OneMinusSrcAlpha = ((int)0X0303),
DstAlpha = ((int)0X0304),
+ OneMinusDstAlpha = ((int)0X0305),
+ DstColor = ((int)0X0306),
+ OneMinusDstColor = ((int)0X0307),
+ ConstantColorExt = ((int)0X8001),
+ OneMinusConstantColorExt = ((int)0X8002),
+ ConstantAlphaExt = ((int)0X8003),
OneMinusConstantAlphaExt = ((int)0X8004),
+ One = ((int)1),
}
public enum BlendingFactorSrc
{
- ConstantColorExt = ((int)0X8001),
- OneMinusSrcAlpha = ((int)0X0303),
- One = ((int)1),
- OneMinusDstAlpha = ((int)0X0305),
- OneMinusConstantColorExt = ((int)0X8002),
- SrcColor = ((int)0X0300),
- SrcAlphaSaturate = ((int)0X0308),
- OneMinusSrcColor = ((int)0X0301),
- OneMinusDstColor = ((int)0X0307),
- ConstantAlphaExt = ((int)0X8003),
- SrcAlpha = ((int)0X0302),
- DstColor = ((int)0X0306),
Zero = ((int)0),
+ SrcAlpha = ((int)0X0302),
+ OneMinusSrcAlpha = ((int)0X0303),
DstAlpha = ((int)0X0304),
+ OneMinusDstAlpha = ((int)0X0305),
+ DstColor = ((int)0X0306),
+ OneMinusDstColor = ((int)0X0307),
+ SrcAlphaSaturate = ((int)0X0308),
+ ConstantColorExt = ((int)0X8001),
+ OneMinusConstantColorExt = ((int)0X8002),
+ ConstantAlphaExt = ((int)0X8003),
OneMinusConstantAlphaExt = ((int)0X8004),
+ One = ((int)1),
}
public enum BlendEquationModeExt
{
- FuncSubtractExt = ((int)0X800a),
- FuncAddExt = ((int)0X8006),
- MaxExt = ((int)0X8008),
- AlphaMinSgix = ((int)0X8320),
- FuncReverseSubtractExt = ((int)0X800b),
- AlphaMaxSgix = ((int)0X8321),
- MinExt = ((int)0X8007),
LogicOp = ((int)0X0bf1),
+ FuncAddExt = ((int)0X8006),
+ MinExt = ((int)0X8007),
+ MaxExt = ((int)0X8008),
+ FuncSubtractExt = ((int)0X800a),
+ FuncReverseSubtractExt = ((int)0X800b),
+ AlphaMinSgix = ((int)0X8320),
+ AlphaMaxSgix = ((int)0X8321),
}
public enum ColorMaterialFace
{
Front = ((int)0X0404),
- FrontAndBack = ((int)0X0408),
Back = ((int)0X0405),
+ FrontAndBack = ((int)0X0408),
}
public enum ColorMaterialParameter
{
- Emission = ((int)0X1600),
- Specular = ((int)0X1202),
- AmbientAndDiffuse = ((int)0X1602),
- Diffuse = ((int)0X1201),
Ambient = ((int)0X1200),
+ Diffuse = ((int)0X1201),
+ Specular = ((int)0X1202),
+ Emission = ((int)0X1600),
+ AmbientAndDiffuse = ((int)0X1602),
}
public enum ColorPointerType
{
- UnsignedByte = ((int)0X1401),
Byte = ((int)0X1400),
- UnsignedInt = ((int)0X1405),
+ UnsignedByte = ((int)0X1401),
Short = ((int)0X1402),
+ UnsignedShort = ((int)0X1403),
Int = ((int)0X1404),
+ UnsignedInt = ((int)0X1405),
Float = ((int)0X1406),
Double = ((int)0X140a),
- UnsignedShort = ((int)0X1403),
}
public enum ColorTableParameterPNameSgi
@@ -183,14 +208,14 @@ namespace OpenTK.Graphics
public enum ColorTableTargetSgi
{
- ProxyTextureColorTableSgi = ((int)0X80bd),
- PostColorMatrixColorTableSgi = ((int)0X80D2),
- ProxyPostConvolutionColorTableSgi = ((int)0X80D4),
TextureColorTableSgi = ((int)0X80bc),
- PostConvolutionColorTableSgi = ((int)0X80D1),
- ProxyPostColorMatrixColorTableSgi = ((int)0X80D5),
- ProxyColorTableSgi = ((int)0X80D3),
+ ProxyTextureColorTableSgi = ((int)0X80bd),
ColorTableSgi = ((int)0X80D0),
+ PostConvolutionColorTableSgi = ((int)0X80D1),
+ PostColorMatrixColorTableSgi = ((int)0X80D2),
+ ProxyColorTableSgi = ((int)0X80D3),
+ ProxyPostConvolutionColorTableSgi = ((int)0X80D4),
+ ProxyPostColorMatrixColorTableSgi = ((int)0X80D5),
}
public enum ConvolutionBorderModeExt
@@ -200,930 +225,954 @@ namespace OpenTK.Graphics
public enum ConvolutionParameterExt
{
- ConvolutionFilterBiasExt = ((int)0X8015),
- ConvolutionFilterScaleExt = ((int)0X8014),
ConvolutionBorderModeExt = ((int)0X8013),
+ ConvolutionFilterScaleExt = ((int)0X8014),
+ ConvolutionFilterBiasExt = ((int)0X8015),
}
public enum ConvolutionTargetExt
{
- Convolution2DExt = ((int)0X8011),
Convolution1DExt = ((int)0X8010),
+ Convolution2DExt = ((int)0X8011),
}
public enum CullFaceMode
{
Front = ((int)0X0404),
- FrontAndBack = ((int)0X0408),
Back = ((int)0X0405),
+ FrontAndBack = ((int)0X0408),
}
public enum DepthFunction
{
Never = ((int)0X0200),
- Equal = ((int)0X0202),
- Always = ((int)0X0207),
Less = ((int)0X0201),
- Gequal = ((int)0X0206),
+ Equal = ((int)0X0202),
Lequal = ((int)0X0203),
- Notequal = ((int)0X0205),
Greater = ((int)0X0204),
+ Notequal = ((int)0X0205),
+ Gequal = ((int)0X0206),
+ Always = ((int)0X0207),
}
public enum DrawBufferMode
{
+ None = ((int)0),
+ FrontLeft = ((int)0X0400),
FrontRight = ((int)0X0401),
- Right = ((int)0X0407),
BackLeft = ((int)0X0402),
BackRight = ((int)0X0403),
- Left = ((int)0X0406),
- Aux0 = ((int)0X0409),
- FrontAndBack = ((int)0X0408),
- Back = ((int)0X0405),
- Aux3 = ((int)0X040c),
- Aux1 = ((int)0X040a),
- FrontLeft = ((int)0X0400),
- None = ((int)0),
- Aux2 = ((int)0X040b),
Front = ((int)0X0404),
+ Back = ((int)0X0405),
+ Left = ((int)0X0406),
+ Right = ((int)0X0407),
+ FrontAndBack = ((int)0X0408),
+ Aux0 = ((int)0X0409),
+ Aux1 = ((int)0X040a),
+ Aux2 = ((int)0X040b),
+ Aux3 = ((int)0X040c),
}
public enum EnableCap
{
- Light1 = ((int)0X4001),
- SampleAlphaToOneSgis = ((int)0X809f),
- FragmentLight6Sgix = ((int)0X8412),
- ColorMaterial = ((int)0X0b57),
- RescaleNormal = ((int)0X803a),
- PolygonOffsetFill = ((int)0X8037),
- Texture3DExt = ((int)0X806f),
- FragmentLight7Sgix = ((int)0X8413),
- Lighting = ((int)0X0b50),
- FragmentLight3Sgix = ((int)0X840f),
- FragmentLightingSgix = ((int)0X8400),
- PolygonStipple = ((int)0X0b42),
- CullFace = ((int)0X0b44),
- PostConvolutionColorTableSgi = ((int)0X80D1),
- Map1Normal = ((int)0X0D92),
- Multisample = ((int)0X809d),
- SampleMaskSgis = ((int)0X80a0),
- FragmentLight0Sgix = ((int)0X840c),
- FogOffsetSgix = ((int)0X8198),
- SampleAlphaToCoverage = ((int)0X809e),
- FogCoordArray = ((int)0X8457),
- Map2Normal = ((int)0X0Db2),
- Fog = ((int)0X0b60),
- PolygonOffsetPoint = ((int)0X2a01),
- TextureGenT = ((int)0X0c61),
- NormalArray = ((int)0X8075),
- Convolution2DExt = ((int)0X8011),
- ClipPlane3 = ((int)0X3003),
- AsyncHistogramSgix = ((int)0X832c),
- Light5 = ((int)0X4005),
- Light0 = ((int)0X4000),
- StencilTest = ((int)0X0b90),
- ClipPlane0 = ((int)0X3000),
- SampleAlphaToOne = ((int)0X809f),
- SampleAlphaToMaskSgis = ((int)0X809e),
- Map1TextureCoord4 = ((int)0X0D96),
- Map1TextureCoord2 = ((int)0X0D94),
- Map1TextureCoord3 = ((int)0X0D95),
- Map1TextureCoord1 = ((int)0X0D93),
- Map2TextureCoord4 = ((int)0X0Db6),
- Map2TextureCoord2 = ((int)0X0Db4),
- Map2TextureCoord3 = ((int)0X0Db5),
- ScissorTest = ((int)0X0c11),
- Map2TextureCoord1 = ((int)0X0Db3),
- RescaleNormalExt = ((int)0X803a),
- ColorTableSgi = ((int)0X80D0),
- FragmentColorMaterialSgix = ((int)0X8401),
- Map2Vertex4 = ((int)0X0Db8),
- HistogramExt = ((int)0X8024),
- Map2Vertex3 = ((int)0X0Db7),
- TextureCoordArray = ((int)0X8078),
- DepthTest = ((int)0X0b71),
- VertexProgramTwoSide = ((int)0X8643),
- IndexArray = ((int)0X8077),
- ReferencePlaneSgix = ((int)0X817D),
- PixelTexGenSgix = ((int)0X8139),
- PixelTextureSgis = ((int)0X8353),
- IrInstrument1Sgix = ((int)0X817f),
- IndexLogicOp = ((int)0X0bf1),
- Map1Vertex4 = ((int)0X0D98),
- PointSprite = ((int)0X8861),
- Map1Vertex3 = ((int)0X0D97),
- AutoNormal = ((int)0X0D80),
- Dither = ((int)0X0bd0),
- SpriteSgix = ((int)0X8148),
- Light3 = ((int)0X4003),
- AsyncReadPixelsSgix = ((int)0X835e),
- ClipPlane1 = ((int)0X3001),
- ColorSum = ((int)0X8458),
- TextureCubeMap = ((int)0X8513),
- EdgeFlagArray = ((int)0X8079),
- SharedTexturePaletteExt = ((int)0X81fb),
+ PointSmooth = ((int)0X0b10),
+ LineSmooth = ((int)0X0b20),
LineStipple = ((int)0X0b24),
PolygonSmooth = ((int)0X0b41),
- Map2Color4 = ((int)0X0Db0),
- ColorLogicOp = ((int)0X0bf2),
- Map2Index = ((int)0X0Db1),
- Convolution1DExt = ((int)0X8010),
- LineSmooth = ((int)0X0b20),
- Texture1D = ((int)0X0De0),
- FragmentLight4Sgix = ((int)0X8410),
- AsyncDrawPixelsSgix = ((int)0X835D),
- VertexProgramPointSize = ((int)0X8642),
- PointSmooth = ((int)0X0b10),
- VertexArray = ((int)0X8074),
- Light4 = ((int)0X4004),
- TextureGenR = ((int)0X0c62),
- TextureGenQ = ((int)0X0c63),
- Map1Index = ((int)0X0D91),
- Light7 = ((int)0X4007),
- FragmentLight5Sgix = ((int)0X8411),
- Light2 = ((int)0X4002),
- ClipPlane2 = ((int)0X3002),
- TextureColorTableSgi = ((int)0X80bc),
- ClipPlane5 = ((int)0X3005),
- ClipPlane4 = ((int)0X3004),
- FragmentLight2Sgix = ((int)0X840e),
- Separable2DExt = ((int)0X8012),
- Map1Color4 = ((int)0X0D90),
- Texture2D = ((int)0X0De1),
- InterlaceSgix = ((int)0X8094),
- SampleCoverage = ((int)0X80a0),
+ PolygonStipple = ((int)0X0b42),
+ CullFace = ((int)0X0b44),
+ Lighting = ((int)0X0b50),
+ ColorMaterial = ((int)0X0b57),
+ Fog = ((int)0X0b60),
+ DepthTest = ((int)0X0b71),
+ StencilTest = ((int)0X0b90),
Normalize = ((int)0X0ba1),
AlphaTest = ((int)0X0bc0),
- MinmaxExt = ((int)0X802e),
+ Dither = ((int)0X0bd0),
Blend = ((int)0X0be2),
- ColorArray = ((int)0X8076),
+ IndexLogicOp = ((int)0X0bf1),
+ ColorLogicOp = ((int)0X0bf2),
+ ScissorTest = ((int)0X0c11),
TextureGenS = ((int)0X0c60),
- FragmentLight1Sgix = ((int)0X840D),
- PostColorMatrixColorTableSgi = ((int)0X80D2),
- CalligraphicFragmentSgix = ((int)0X8183),
- Light6 = ((int)0X4006),
- SecondaryColorArray = ((int)0X845e),
+ TextureGenT = ((int)0X0c61),
+ TextureGenR = ((int)0X0c62),
+ TextureGenQ = ((int)0X0c63),
+ AutoNormal = ((int)0X0D80),
+ Map1Color4 = ((int)0X0D90),
+ Map1Index = ((int)0X0D91),
+ Map1Normal = ((int)0X0D92),
+ Map1TextureCoord1 = ((int)0X0D93),
+ Map1TextureCoord2 = ((int)0X0D94),
+ Map1TextureCoord3 = ((int)0X0D95),
+ Map1TextureCoord4 = ((int)0X0D96),
+ Map1Vertex3 = ((int)0X0D97),
+ Map1Vertex4 = ((int)0X0D98),
+ Map2Color4 = ((int)0X0Db0),
+ Map2Index = ((int)0X0Db1),
+ Map2Normal = ((int)0X0Db2),
+ Map2TextureCoord1 = ((int)0X0Db3),
+ Map2TextureCoord2 = ((int)0X0Db4),
+ Map2TextureCoord3 = ((int)0X0Db5),
+ Map2TextureCoord4 = ((int)0X0Db6),
+ Map2Vertex3 = ((int)0X0Db7),
+ Map2Vertex4 = ((int)0X0Db8),
+ Texture1D = ((int)0X0De0),
+ Texture2D = ((int)0X0De1),
+ PolygonOffsetPoint = ((int)0X2a01),
PolygonOffsetLine = ((int)0X2a02),
- AsyncTexImageSgix = ((int)0X835c),
- FramezoomSgix = ((int)0X818b),
+ ClipPlane0 = ((int)0X3000),
+ ClipPlane1 = ((int)0X3001),
+ ClipPlane2 = ((int)0X3002),
+ ClipPlane3 = ((int)0X3003),
+ ClipPlane4 = ((int)0X3004),
+ ClipPlane5 = ((int)0X3005),
+ Light0 = ((int)0X4000),
+ Light1 = ((int)0X4001),
+ Light2 = ((int)0X4002),
+ Light3 = ((int)0X4003),
+ Light4 = ((int)0X4004),
+ Light5 = ((int)0X4005),
+ Light6 = ((int)0X4006),
+ Light7 = ((int)0X4007),
+ Convolution1DExt = ((int)0X8010),
+ Convolution2DExt = ((int)0X8011),
+ Separable2DExt = ((int)0X8012),
+ HistogramExt = ((int)0X8024),
+ MinmaxExt = ((int)0X802e),
+ PolygonOffsetFill = ((int)0X8037),
+ RescaleNormal = ((int)0X803a),
+ RescaleNormalExt = ((int)0X803a),
+ Texture3DExt = ((int)0X806f),
+ VertexArray = ((int)0X8074),
+ NormalArray = ((int)0X8075),
+ ColorArray = ((int)0X8076),
+ IndexArray = ((int)0X8077),
+ TextureCoordArray = ((int)0X8078),
+ EdgeFlagArray = ((int)0X8079),
+ InterlaceSgix = ((int)0X8094),
+ Multisample = ((int)0X809d),
+ SampleAlphaToCoverage = ((int)0X809e),
+ SampleAlphaToMaskSgis = ((int)0X809e),
+ SampleAlphaToOne = ((int)0X809f),
+ SampleAlphaToOneSgis = ((int)0X809f),
+ SampleCoverage = ((int)0X80a0),
+ SampleMaskSgis = ((int)0X80a0),
+ TextureColorTableSgi = ((int)0X80bc),
+ ColorTableSgi = ((int)0X80D0),
+ PostConvolutionColorTableSgi = ((int)0X80D1),
+ PostColorMatrixColorTableSgi = ((int)0X80D2),
Texture4DSgis = ((int)0X8134),
+ PixelTexGenSgix = ((int)0X8139),
+ SpriteSgix = ((int)0X8148),
+ ReferencePlaneSgix = ((int)0X817D),
+ IrInstrument1Sgix = ((int)0X817f),
+ CalligraphicFragmentSgix = ((int)0X8183),
+ FramezoomSgix = ((int)0X818b),
+ FogOffsetSgix = ((int)0X8198),
+ SharedTexturePaletteExt = ((int)0X81fb),
+ AsyncHistogramSgix = ((int)0X832c),
+ PixelTextureSgis = ((int)0X8353),
+ AsyncTexImageSgix = ((int)0X835c),
+ AsyncDrawPixelsSgix = ((int)0X835D),
+ AsyncReadPixelsSgix = ((int)0X835e),
+ FragmentLightingSgix = ((int)0X8400),
+ FragmentColorMaterialSgix = ((int)0X8401),
+ FragmentLight0Sgix = ((int)0X840c),
+ FragmentLight1Sgix = ((int)0X840D),
+ FragmentLight2Sgix = ((int)0X840e),
+ FragmentLight3Sgix = ((int)0X840f),
+ FragmentLight4Sgix = ((int)0X8410),
+ FragmentLight5Sgix = ((int)0X8411),
+ FragmentLight6Sgix = ((int)0X8412),
+ FragmentLight7Sgix = ((int)0X8413),
+ FogCoordArray = ((int)0X8457),
+ ColorSum = ((int)0X8458),
+ SecondaryColorArray = ((int)0X845e),
+ TextureCubeMap = ((int)0X8513),
+ VertexProgramPointSize = ((int)0X8642),
+ VertexProgramTwoSide = ((int)0X8643),
+ PointSprite = ((int)0X8861),
}
public enum ErrorCode
{
- InvalidEnum = ((int)0X0500),
NoError = ((int)0),
+ InvalidEnum = ((int)0X0500),
+ InvalidValue = ((int)0X0501),
InvalidOperation = ((int)0X0502),
+ StackOverflow = ((int)0X0503),
+ StackUnderflow = ((int)0X0504),
+ OutOfMemory = ((int)0X0505),
+ InvalidFramebufferOperation = ((int)0X0506),
InvalidFramebufferOperationExt = ((int)0X0506),
TableTooLargeExt = ((int)0X8031),
- StackOverflow = ((int)0X0503),
- OutOfMemory = ((int)0X0505),
- StackUnderflow = ((int)0X0504),
TextureTooLargeExt = ((int)0X8065),
- InvalidValue = ((int)0X0501),
}
public enum FeedbackType
{
- Gl3DColorTexture = ((int)0X0603),
- Gl3D = ((int)0X0601),
Gl2D = ((int)0X0600),
+ Gl3D = ((int)0X0601),
Gl3DColor = ((int)0X0602),
+ Gl3DColorTexture = ((int)0X0603),
Gl4DColorTexture = ((int)0X0604),
}
public enum FeedBackToken
{
- DrawPixelToken = ((int)0X0705),
- BitmapToken = ((int)0X0704),
- CopyPixelToken = ((int)0X0706),
+ PassThroughToken = ((int)0X0700),
PointToken = ((int)0X0701),
LineToken = ((int)0X0702),
- LineResetToken = ((int)0X0707),
PolygonToken = ((int)0X0703),
- PassThroughToken = ((int)0X0700),
+ BitmapToken = ((int)0X0704),
+ DrawPixelToken = ((int)0X0705),
+ CopyPixelToken = ((int)0X0706),
+ LineResetToken = ((int)0X0707),
}
public enum FfdMaskSgix
{
- GeometryDeformationBitSgix = ((int)0X00000002),
TextureDeformationBitSgix = ((int)0X00000001),
+ GeometryDeformationBitSgix = ((int)0X00000002),
}
public enum FfdTargetSgix
{
- TextureDeformationSgix = ((int)0X8195),
GeometryDeformationSgix = ((int)0X8194),
+ TextureDeformationSgix = ((int)0X8195),
}
public enum FogMode
{
- Exp2 = ((int)0X0801),
- FogFuncSgis = ((int)0X812a),
Exp = ((int)0X0800),
+ Exp2 = ((int)0X0801),
+ Linear = ((int)0X2601),
+ FogFuncSgis = ((int)0X812a),
FogCoord = ((int)0X8451),
FragmentDepth = ((int)0X8452),
- Linear = ((int)0X2601),
}
public enum FogParameter
{
- FogColor = ((int)0X0b66),
- FogEnd = ((int)0X0b64),
- FogStart = ((int)0X0b63),
- FogDensity = ((int)0X0b62),
FogIndex = ((int)0X0b61),
- FogOffsetValueSgix = ((int)0X8199),
+ FogDensity = ((int)0X0b62),
+ FogStart = ((int)0X0b63),
+ FogEnd = ((int)0X0b64),
FogMode = ((int)0X0b65),
+ FogColor = ((int)0X0b66),
+ FogOffsetValueSgix = ((int)0X8199),
FogCoordSrc = ((int)0X8450),
}
public enum FragmentLightModelParameterSgix
{
- FragmentLightModelAmbientSgix = ((int)0X840a),
FragmentLightModelLocalViewerSgix = ((int)0X8408),
FragmentLightModelTwoSideSgix = ((int)0X8409),
+ FragmentLightModelAmbientSgix = ((int)0X840a),
FragmentLightModelNormalInterpolationSgix = ((int)0X840b),
}
public enum FrontFaceDirection
{
- Ccw = ((int)0X0901),
Cw = ((int)0X0900),
+ Ccw = ((int)0X0901),
}
public enum GetColorTableParameterPNameSgi
{
- ColorTableBiasSgi = ((int)0X80D7),
- ColorTableIntensitySizeSgi = ((int)0X80Df),
- ColorTableLuminanceSizeSgi = ((int)0X80De),
- ColorTableAlphaSizeSgi = ((int)0X80Dd),
- ColorTableBlueSizeSgi = ((int)0X80Dc),
ColorTableScaleSgi = ((int)0X80D6),
- ColorTableWidthSgi = ((int)0X80D9),
+ ColorTableBiasSgi = ((int)0X80D7),
ColorTableFormatSgi = ((int)0X80D8),
+ ColorTableWidthSgi = ((int)0X80D9),
ColorTableRedSizeSgi = ((int)0X80Da),
ColorTableGreenSizeSgi = ((int)0X80Db),
+ ColorTableBlueSizeSgi = ((int)0X80Dc),
+ ColorTableAlphaSizeSgi = ((int)0X80Dd),
+ ColorTableLuminanceSizeSgi = ((int)0X80De),
+ ColorTableIntensitySizeSgi = ((int)0X80Df),
}
public enum GetConvolutionParameter
{
- MaxConvolutionWidthExt = ((int)0X801a),
- ConvolutionHeightExt = ((int)0X8019),
- ConvolutionFormatExt = ((int)0X8017),
- MaxConvolutionHeightExt = ((int)0X801b),
ConvolutionBorderModeExt = ((int)0X8013),
- ConvolutionWidthExt = ((int)0X8018),
ConvolutionFilterScaleExt = ((int)0X8014),
ConvolutionFilterBiasExt = ((int)0X8015),
+ ConvolutionFormatExt = ((int)0X8017),
+ ConvolutionWidthExt = ((int)0X8018),
+ ConvolutionHeightExt = ((int)0X8019),
+ MaxConvolutionWidthExt = ((int)0X801a),
+ MaxConvolutionHeightExt = ((int)0X801b),
}
public enum GetHistogramParameterPNameExt
{
+ HistogramWidthExt = ((int)0X8026),
+ HistogramFormatExt = ((int)0X8027),
+ HistogramRedSizeExt = ((int)0X8028),
+ HistogramGreenSizeExt = ((int)0X8029),
+ HistogramBlueSizeExt = ((int)0X802a),
HistogramAlphaSizeExt = ((int)0X802b),
HistogramLuminanceSizeExt = ((int)0X802c),
- HistogramFormatExt = ((int)0X8027),
- HistogramGreenSizeExt = ((int)0X8029),
HistogramSinkExt = ((int)0X802D),
- HistogramWidthExt = ((int)0X8026),
- HistogramBlueSizeExt = ((int)0X802a),
- HistogramRedSizeExt = ((int)0X8028),
}
public enum GetMapQuery
{
Coeff = ((int)0X0a00),
- Domain = ((int)0X0a02),
Order = ((int)0X0a01),
+ Domain = ((int)0X0a02),
}
public enum GetMinmaxParameterPNameExt
{
- MinmaxSinkExt = ((int)0X8030),
MinmaxFormatExt = ((int)0X802f),
+ MinmaxSinkExt = ((int)0X8030),
}
public enum GetPixelMap
{
PixelMapIToI = ((int)0X0c70),
- PixelMapIToA = ((int)0X0c75),
- PixelMapIToB = ((int)0X0c74),
- PixelMapIToR = ((int)0X0c72),
- PixelMapBToB = ((int)0X0c78),
- PixelMapRToR = ((int)0X0c76),
- PixelMapIToG = ((int)0X0c73),
- PixelMapGToG = ((int)0X0c77),
- PixelMapAToA = ((int)0X0c79),
PixelMapSToS = ((int)0X0c71),
+ PixelMapIToR = ((int)0X0c72),
+ PixelMapIToG = ((int)0X0c73),
+ PixelMapIToB = ((int)0X0c74),
+ PixelMapIToA = ((int)0X0c75),
+ PixelMapRToR = ((int)0X0c76),
+ PixelMapGToG = ((int)0X0c77),
+ PixelMapBToB = ((int)0X0c78),
+ PixelMapAToA = ((int)0X0c79),
}
public enum GetPointervPName
{
- SecondaryColorArrayPointer = ((int)0X845d),
+ FeedbackBufferPointer = ((int)0X0df0),
+ SelectionBufferPointer = ((int)0X0df3),
+ VertexArrayPointer = ((int)0X808e),
+ NormalArrayPointer = ((int)0X808f),
+ ColorArrayPointer = ((int)0X8090),
+ IndexArrayPointer = ((int)0X8091),
+ TextureCoordArrayPointer = ((int)0X8092),
EdgeFlagArrayPointer = ((int)0X8093),
InstrumentBufferPointerSgix = ((int)0X8180),
FogCoordArrayPointer = ((int)0X8456),
- FeedbackBufferPointer = ((int)0X0df0),
- VertexArrayPointer = ((int)0X808e),
- SelectionBufferPointer = ((int)0X0df3),
- ColorArrayPointer = ((int)0X8090),
- NormalArrayPointer = ((int)0X808f),
- TextureCoordArrayPointer = ((int)0X8092),
- IndexArrayPointer = ((int)0X8091),
+ SecondaryColorArrayPointer = ((int)0X845d),
}
public enum GetPName
{
- AliasedLineWidthRange = ((int)0X846e),
- Map1TextureCoord4 = ((int)0X0d96),
- StencilBackPassDepthFail = ((int)0X8802),
- PolygonSmoothHint = ((int)0X0c53),
- DepthWritemask = ((int)0X0b72),
- PostConvolutionBlueScaleExt = ((int)0X801e),
- MaxFragmentUniformComponents = ((int)0X8b49),
- PixelMapSToSSize = ((int)0X0cb1),
- ColorArray = ((int)0X8076),
- MaxLights = ((int)0X0d31),
- DrawBuffer10 = ((int)0X882f),
- StencilValueMask = ((int)0X0b93),
- LightModelLocalViewer = ((int)0X0b51),
- IndexArrayType = ((int)0X8085),
- ClipPlane3 = ((int)0X3003),
- PixelTileGridHeightSgix = ((int)0X8143),
- MaxDrawBuffers = ((int)0X8824),
- PerspectiveCorrectionHint = ((int)0X0c50),
- SampleAlphaToCoverage = ((int)0X809e),
- PixelPackBufferBinding = ((int)0X88ed),
- Map2GridSegments = ((int)0X0dd3),
- ColorMaterialParameter = ((int)0X0b56),
- SpriteTranslationSgix = ((int)0X814b),
- Map2Normal = ((int)0X0db2),
- UnpackImageDepthSgis = ((int)0X8133),
- AsyncReadPixelsSgix = ((int)0X835e),
- PackResampleSgix = ((int)0X842c),
- DrawBuffer13 = ((int)0X8832),
- PackSkipRows = ((int)0X0d03),
- MaxTextureStackDepth = ((int)0X0d39),
- SampleMaskValueSgis = ((int)0X80aa),
- InstrumentMeasurementsSgix = ((int)0X8181),
- PointSizeMin = ((int)0X8126),
- PixelTextureSgis = ((int)0X8353),
- PointSmooth = ((int)0X0b10),
- TextureStackDepth = ((int)0X0ba5),
- MaxVaryingFloats = ((int)0X8b4b),
- Texture3DExt = ((int)0X806f),
- ModelviewStackDepth = ((int)0X0ba3),
- IndexArrayStride = ((int)0X8086),
- PostConvolutionGreenScaleExt = ((int)0X801D),
- MaxAsyncTexImageSgix = ((int)0X835f),
- UnpackSwapBytes = ((int)0X0cf0),
- PixelMapAToASize = ((int)0X0cb9),
- PostColorMatrixRedBiasSgi = ((int)0X80b8),
- MaxTextureLodBias = ((int)0X84fd),
- PackSkipVolumesSgis = ((int)0X8130),
- LineSmooth = ((int)0X0b20),
- AsyncHistogramSgix = ((int)0X832c),
- DepthBits = ((int)0X0d56),
- FragmentLightModelNormalInterpolationSgix = ((int)0X840b),
- LineSmoothHint = ((int)0X0c52),
- ShadeModel = ((int)0X0b54),
- PixelTileBestAlignmentSgix = ((int)0X813e),
- MaxClipmapVirtualDepthSgix = ((int)0X8178),
- PixelTileHeightSgix = ((int)0X8141),
- CurrentSecondaryColor = ((int)0X8459),
- MaxAsyncReadPixelsSgix = ((int)0X8361),
- Texture1D = ((int)0X0de0),
- ColorClearValue = ((int)0X0c22),
- MaxProjectionStackDepth = ((int)0X0d38),
- AlphaTestRef = ((int)0X0bc2),
- ListIndex = ((int)0X0b33),
- Light1 = ((int)0X4001),
- PackSkipImagesExt = ((int)0X806b),
- PostConvolutionColorTableSgi = ((int)0X80D1),
- DepthBias = ((int)0X0d1f),
- VertexAttribArrayBufferBinding = ((int)0X889f),
- PackSkipPixels = ((int)0X0d04),
- MaxModelviewStackDepth = ((int)0X0d36),
- Max3DTextureSize = ((int)0X8073),
- PixelMapIToISize = ((int)0X0cb0),
- NormalArrayStride = ((int)0X807f),
- MaxElementsVertices = ((int)0X80e8),
- MaxColorAttachmentsExt = ((int)0X8cdf),
- FragmentLightModelTwoSideSgix = ((int)0X8409),
- EdgeFlagArrayCountExt = ((int)0X808D),
- CullFace = ((int)0X0b44),
- LightModelTwoSide = ((int)0X0b52),
- UnpackImageHeightExt = ((int)0X806e),
- SampleBuffers = ((int)0X80a8),
- FogIndex = ((int)0X0b61),
- FragmentColorMaterialParameterSgix = ((int)0X8403),
- ZoomY = ((int)0X0d17),
- Samples = ((int)0X80a9),
- DepthTest = ((int)0X0b71),
- LogicOpMode = ((int)0X0bf0),
- AsyncTexImageSgix = ((int)0X835c),
- SmoothPointSizeRange = ((int)0X0b12),
- Light4 = ((int)0X4004),
- RedScale = ((int)0X0d14),
- StencilBits = ((int)0X0d57),
- UnpackCmykHintExt = ((int)0X800f),
- SampleCoverageValue = ((int)0X80aa),
- DrawBuffer8 = ((int)0X882d),
- DrawBuffer9 = ((int)0X882e),
- ElementArrayBufferBinding = ((int)0X8895),
- DrawBuffer5 = ((int)0X882a),
- PostConvolutionRedBiasExt = ((int)0X8020),
- DrawBuffer1 = ((int)0X8826),
- BlueScale = ((int)0X0d1a),
- MaxVertexUniformComponents = ((int)0X8b4a),
- FramebufferBindingExt = ((int)0X8ca6),
- BlueBias = ((int)0X0d1b),
- SampleMaskSgis = ((int)0X80a0),
- Texture4DBindingSgis = ((int)0X814f),
- MaxPixelMapTable = ((int)0X0d34),
- SpriteSgix = ((int)0X8148),
- SmoothLineWidthGranularity = ((int)0X0b23),
- UnpackSkipVolumesSgis = ((int)0X8132),
- MaxTextureCoords = ((int)0X8871),
- AccumAlphaBits = ((int)0X0d5b),
- Separable2DExt = ((int)0X8012),
- DrawBuffer6 = ((int)0X882b),
- DrawBuffer7 = ((int)0X882c),
- DrawBuffer4 = ((int)0X8829),
- ClientAttribStackDepth = ((int)0X0bb1),
- DrawBuffer2 = ((int)0X8827),
- DrawBuffer3 = ((int)0X8828),
- DrawBuffer0 = ((int)0X8825),
- PixelMapIToASize = ((int)0X0cb5),
- PixelTileCacheSizeSgix = ((int)0X8145),
- IndexWritemask = ((int)0X0c21),
- Blend = ((int)0X0be2),
- ListBase = ((int)0X0b32),
- MaxAttribStackDepth = ((int)0X0d35),
- ColorArrayStride = ((int)0X8083),
- DepthScale = ((int)0X0d1e),
- PointSprite = ((int)0X8861),
- PixelTileCacheIncrementSgix = ((int)0X813f),
- ConvolutionHintSgix = ((int)0X8316),
- DepthClearValue = ((int)0X0b73),
- NormalArrayBufferBinding = ((int)0X8897),
- AccumRedBits = ((int)0X0d58),
- PostColorMatrixRedScaleSgi = ((int)0X80b4),
- ClipPlane1 = ((int)0X3001),
- PolygonOffsetBiasExt = ((int)0X8039),
- ArrayBufferBinding = ((int)0X8894),
- PackCmykHintExt = ((int)0X800e),
- TextureMatrix = ((int)0X0ba8),
- ActiveTexture = ((int)0X84e0),
- UnpackAlignment = ((int)0X0cf5),
- Texture2D = ((int)0X0de1),
- ColorMaterial = ((int)0X0b57),
- PointSizeMax = ((int)0X8127),
- AsyncDrawPixelsSgix = ((int)0X835D),
- UnpackLsbFirst = ((int)0X0cf1),
- MaxClipPlanes = ((int)0X0d32),
- Light6 = ((int)0X4006),
- GenerateMipmapHintSgis = ((int)0X8192),
- Map1GridDomain = ((int)0X0dd0),
- ProjectionStackDepth = ((int)0X0ba4),
- PixelMapGToGSize = ((int)0X0cb7),
- CurrentRasterTextureCoords = ((int)0X0b06),
- TextureCoordArray = ((int)0X8078),
- TextureColorTableSgi = ((int)0X80bc),
- IndexBits = ((int)0X0d51),
- Max4DTextureSizeSgis = ((int)0X8138),
- BlendColorExt = ((int)0X8005),
- SpriteAxisSgix = ((int)0X814a),
- RgbaMode = ((int)0X0c31),
- FogDensity = ((int)0X0b62),
- PostConvolutionRedScaleExt = ((int)0X801c),
- StencilBackFunc = ((int)0X8800),
- Map2Vertex4 = ((int)0X0db8),
- ColorWritemask = ((int)0X0c23),
- Map2Vertex3 = ((int)0X0db7),
- MultisampleSgis = ((int)0X809D),
- PostConvolutionAlphaScaleExt = ((int)0X801f),
- MatrixMode = ((int)0X0ba0),
- BlendSrcRgb = ((int)0X80c9),
- SharedTexturePaletteExt = ((int)0X81fb),
- IndexLogicOp = ((int)0X0bf1),
- Convolution2DExt = ((int)0X8011),
- Max3DTextureSizeExt = ((int)0X8073),
- PackAlignment = ((int)0X0d05),
- LineStippleRepeat = ((int)0X0b26),
- RenderbufferBindingExt = ((int)0X8ca7),
- MaxVertexTextureImageUnits = ((int)0X8b4c),
- ClipPlane4 = ((int)0X3004),
- PolygonSmooth = ((int)0X0b41),
- IndexShift = ((int)0X0d12),
- FogColor = ((int)0X0b66),
- FragmentLight0Sgix = ((int)0X840c),
- PostConvolutionAlphaBiasExt = ((int)0X8023),
- LineWidth = ((int)0X0b21),
- DrawBuffer12 = ((int)0X8831),
- ReferencePlaneSgix = ((int)0X817D),
- SampleAlphaToOneSgis = ((int)0X809f),
- MaxElementsIndices = ((int)0X80e9),
- LineStipple = ((int)0X0b24),
- CalligraphicFragmentSgix = ((int)0X8183),
- PackRowLength = ((int)0X0d02),
- Light3 = ((int)0X4003),
- SpriteModeSgix = ((int)0X8149),
- PixelTileGridWidthSgix = ((int)0X8142),
- PolygonOffsetFactor = ((int)0X8038),
- PixelTileGridDepthSgix = ((int)0X8144),
- PixelTexGenModeSgix = ((int)0X832b),
- BlueBits = ((int)0X0d54),
- DrawBuffer14 = ((int)0X8833),
- BlendDstRgb = ((int)0X80c8),
- SelectionBufferSize = ((int)0X0df4),
- TextureCoordArrayBufferBinding = ((int)0X889a),
- Convolution1DExt = ((int)0X8010),
- VertexArraySize = ((int)0X807a),
- BlendEquationExt = ((int)0X8009),
- Map2GridDomain = ((int)0X0dd2),
- CurrentRasterSecondaryColor = ((int)0X845f),
- MapStencil = ((int)0X0d11),
- PostColorMatrixBlueBiasSgi = ((int)0X80ba),
- LightEnvModeSgix = ((int)0X8407),
- PixelMapIToBSize = ((int)0X0cb4),
- Map1Color4 = ((int)0X0d90),
- UnpackResampleSgix = ((int)0X842D),
- DistanceAttenuationSgis = ((int)0X8129),
- ProjectionMatrix = ((int)0X0ba7),
- Normalize = ((int)0X0ba1),
- IrInstrument1Sgix = ((int)0X817f),
- VertexArray = ((int)0X8074),
- StencilClearValue = ((int)0X0b91),
- IndexArrayBufferBinding = ((int)0X8899),
- MaxAsyncDrawPixelsSgix = ((int)0X8360),
- CurrentIndex = ((int)0X0b01),
- SampleBuffersSgis = ((int)0X80a8),
- RedBits = ((int)0X0d52),
- SecondaryColorArrayType = ((int)0X845b),
- SamplePatternSgis = ((int)0X80ac),
- StencilTest = ((int)0X0b90),
- StencilBackWritemask = ((int)0X8ca5),
- PointSizeRange = ((int)0X0b12),
- AccumBlueBits = ((int)0X0d5a),
- Stereo = ((int)0X0c33),
- UnpackSubsampleRateSgix = ((int)0X85a1),
- TextureCompressionHint = ((int)0X84ef),
- PointSize = ((int)0X0b11),
- ColorArrayType = ((int)0X8082),
- MapColor = ((int)0X0d10),
- Map1Index = ((int)0X0d91),
- UnpackSkipImagesExt = ((int)0X806D),
- AlphaTest = ((int)0X0bc0),
- PointFadeThresholdSize = ((int)0X8128),
- AlphaBias = ((int)0X0d1d),
- CurrentRasterPosition = ((int)0X0b07),
- SampleMaskInvertSgis = ((int)0X80ab),
- VertexPreclipHintSgix = ((int)0X83ef),
- AlphaScale = ((int)0X0d1c),
- VertexArrayStride = ((int)0X807c),
- PackLsbFirst = ((int)0X0d01),
- SampleCoverageInvert = ((int)0X80ab),
- FragmentColorMaterialFaceSgix = ((int)0X8402),
- BlendEquationRgb = ((int)0X8009),
- Map1GridSegments = ((int)0X0dd1),
- MaxFragmentLightsSgix = ((int)0X8404),
- FogOffsetSgix = ((int)0X8198),
- Map2Index = ((int)0X0db1),
- MaxAsyncHistogramSgix = ((int)0X832D),
- Light5 = ((int)0X4005),
- PolygonOffsetPoint = ((int)0X2a01),
- Light0 = ((int)0X4000),
- CompressedTextureFormats = ((int)0X86a3),
- AttribStackDepth = ((int)0X0bb0),
- AlphaBits = ((int)0X0d55),
- BlendEquationAlpha = ((int)0X883d),
- BlendDstAlpha = ((int)0X80ca),
- FramezoomSgix = ((int)0X818b),
- MaxFogFuncPointsSgis = ((int)0X812c),
- MaxTextureImageUnits = ((int)0X8872),
- MaxColorMatrixStackDepthSgi = ((int)0X80b3),
- PointSizeGranularity = ((int)0X0b13),
- PostConvolutionGreenBiasExt = ((int)0X8021),
- StencilBackRef = ((int)0X8ca3),
- FogFuncPointsSgis = ((int)0X812b),
- MaxViewportDims = ((int)0X0d3a),
- StencilBackPassDepthPass = ((int)0X8803),
- FogCoordArrayStride = ((int)0X8455),
- PointSizeMaxSgis = ((int)0X8127),
- EdgeFlagArray = ((int)0X8079),
- BlendDst = ((int)0X0be0),
- FragmentLightModelLocalViewerSgix = ((int)0X8408),
- PackSubsampleRateSgix = ((int)0X85a0),
- ModelviewMatrix = ((int)0X0ba6),
- MaxCombinedTextureImageUnits = ((int)0X8b4d),
- PackImageDepthSgis = ((int)0X8131),
- FogMode = ((int)0X0b65),
- IndexMode = ((int)0X0c30),
- AccumClearValue = ((int)0X0b80),
- DrawBuffer = ((int)0X0c01),
- Map1Normal = ((int)0X0d92),
- PointDistanceAttenuation = ((int)0X8129),
- FogHint = ((int)0X0c54),
- RescaleNormalExt = ((int)0X803a),
- LightModelColorControl = ((int)0X81f8),
- SubpixelBits = ((int)0X0d50),
- NormalArray = ((int)0X8075),
- PostTextureFilterBiasRangeSgix = ((int)0X817b),
- MaxEvalOrder = ((int)0X0d30),
- PixelTexGenSgix = ((int)0X8139),
- MaxClientAttribStackDepth = ((int)0X0d3b),
- BlendSrc = ((int)0X0be1),
- CullFaceMode = ((int)0X0b45),
- FragmentColorMaterialSgix = ((int)0X8401),
- PostColorMatrixBlueScaleSgi = ((int)0X80b6),
- Map1Vertex4 = ((int)0X0d98),
- FragmentShaderDerivativeHint = ((int)0X8b8b),
- Map1Vertex3 = ((int)0X0d97),
- ZoomX = ((int)0X0d16),
- CurrentRasterDistance = ((int)0X0b09),
- GenerateMipmapHint = ((int)0X8192),
- ClipPlane2 = ((int)0X3002),
- LogicOp = ((int)0X0bf1),
- MaxCubeMapTextureSize = ((int)0X851c),
- SecondaryColorArrayBufferBinding = ((int)0X889c),
- RedBias = ((int)0X0d15),
- WeightArrayBufferBinding = ((int)0X889e),
- SamplesSgis = ((int)0X80a9),
- FeedbackBufferType = ((int)0X0df2),
- ColorArrayCountExt = ((int)0X8084),
- ScissorTest = ((int)0X0c11),
- PointFadeThresholdSizeSgis = ((int)0X8128),
- StencilPassDepthPass = ((int)0X0b96),
- BlendSrcAlpha = ((int)0X80cb),
- Viewport = ((int)0X0ba2),
- AsyncMarkerSgix = ((int)0X8329),
- TextureCoordArrayStride = ((int)0X808a),
- StencilFunc = ((int)0X0b92),
- PixelMapIToGSize = ((int)0X0cb3),
CurrentColor = ((int)0X0b00),
- StencilBackValueMask = ((int)0X8ca4),
- UnpackSkipPixels = ((int)0X0cf4),
- ColorMatrixStackDepthSgi = ((int)0X80b2),
- NormalArrayType = ((int)0X807e),
- AlphaTestFunc = ((int)0X0bc1),
- UnpackRowLength = ((int)0X0cf2),
- MaxClipmapDepthSgix = ((int)0X8177),
- ColorSum = ((int)0X8458),
- EdgeFlag = ((int)0X0b43),
- Texture4DSgis = ((int)0X8134),
- LineWidthRange = ((int)0X0b22),
- PackSwapBytes = ((int)0X0d00),
- ColorLogicOp = ((int)0X0bf2),
- SmoothLineWidthRange = ((int)0X0b22),
- TransposeModelviewMatrix = ((int)0X84e3),
- TextureBinding1D = ((int)0X8068),
- EdgeFlagArrayStride = ((int)0X808c),
- TextureBinding3D = ((int)0X806a),
- TextureBinding2D = ((int)0X8069),
- VertexPreclipSgix = ((int)0X83ee),
- PolygonOffsetFill = ((int)0X8037),
- DrawBuffer15 = ((int)0X8834),
- PixelMapBToBSize = ((int)0X0cb8),
- StencilWritemask = ((int)0X0b98),
- TransposeTextureMatrix = ((int)0X84e5),
- PostColorMatrixAlphaBiasSgi = ((int)0X80bb),
+ CurrentIndex = ((int)0X0b01),
CurrentNormal = ((int)0X0b02),
- LightModelAmbient = ((int)0X0b53),
- MaxNameStackDepth = ((int)0X0d37),
- SmoothPointSizeGranularity = ((int)0X0b13),
- SampleAlphaToMaskSgis = ((int)0X809e),
- AliasedPointSizeRange = ((int)0X846d),
- ListMode = ((int)0X0b30),
- ColorTableSgi = ((int)0X80D0),
- ColorArrayBufferBinding = ((int)0X8898),
- ClipPlane5 = ((int)0X3005),
- IndexArrayCountExt = ((int)0X8087),
- FrontFace = ((int)0X0b46),
- PackImageHeightExt = ((int)0X806c),
- TextureCoordArraySize = ((int)0X8088),
- FogStart = ((int)0X0b63),
- FragmentLightingSgix = ((int)0X8400),
- NameStackDepth = ((int)0X0d70),
- Light2 = ((int)0X4002),
- FogCoordArrayType = ((int)0X8454),
- MaxRenderbufferSizeExt = ((int)0X84e8),
- PixelTileWidthSgix = ((int)0X8140),
- FogOffsetValueSgix = ((int)0X8199),
- InterlaceSgix = ((int)0X8094),
- GreenScale = ((int)0X0d18),
- IndexOffset = ((int)0X0d13),
- PixelUnpackBufferBinding = ((int)0X88ef),
- AccumGreenBits = ((int)0X0d59),
- HistogramExt = ((int)0X8024),
- PixelMapIToRSize = ((int)0X0cb2),
CurrentTextureCoords = ((int)0X0b03),
- ReadBuffer = ((int)0X0c02),
- MaxListNesting = ((int)0X0b31),
- TextureCoordArrayType = ((int)0X8089),
- DrawBuffer11 = ((int)0X8830),
- MaxVertexAttribs = ((int)0X8869),
- ColorMaterialFace = ((int)0X0b55),
- PostColorMatrixColorTableSgi = ((int)0X80D2),
- SampleCoverage = ((int)0X80a0),
- DetailTexture2DBindingSgis = ((int)0X8096),
- AutoNormal = ((int)0X0d80),
- CurrentRasterIndex = ((int)0X0b05),
- Multisample = ((int)0X809d),
- AuxBuffers = ((int)0X0c00),
- StencilRef = ((int)0X0b97),
- FramezoomFactorSgix = ((int)0X818c),
- DepthRange = ((int)0X0b70),
- DeformationsMaskSgix = ((int)0X8196),
- PostConvolutionBlueBiasExt = ((int)0X8022),
- MaxFramezoomFactorSgix = ((int)0X818D),
- Map2Color4 = ((int)0X0db0),
- CurrentProgram = ((int)0X8b8d),
- MinmaxExt = ((int)0X802e),
- ColorMatrixSgi = ((int)0X80b1),
- CurrentFogCoord = ((int)0X8453),
- EdgeFlagArrayBufferBinding = ((int)0X889b),
- TextureBindingCubeMap = ((int)0X8514),
- TextureCubeMap = ((int)0X8513),
- LineWidthGranularity = ((int)0X0b23),
- LineStipplePattern = ((int)0X0b25),
- FogCoordArrayBufferBinding = ((int)0X889d),
- FeedbackBufferSize = ((int)0X0df1),
- FogEnd = ((int)0X0b64),
- TransposeColorMatrix = ((int)0X84e6),
- CurrentRasterPositionValid = ((int)0X0b08),
- Fog = ((int)0X0b60),
- UnpackSkipRows = ((int)0X0cf3),
- DepthFunc = ((int)0X0b74),
- IndexClearValue = ((int)0X0c20),
- Doublebuffer = ((int)0X0c32),
CurrentRasterColor = ((int)0X0b04),
- NormalArrayCountExt = ((int)0X8080),
+ CurrentRasterIndex = ((int)0X0b05),
+ CurrentRasterTextureCoords = ((int)0X0b06),
+ CurrentRasterPosition = ((int)0X0b07),
+ CurrentRasterPositionValid = ((int)0X0b08),
+ CurrentRasterDistance = ((int)0X0b09),
+ PointSmooth = ((int)0X0b10),
+ PointSize = ((int)0X0b11),
+ PointSizeRange = ((int)0X0b12),
+ SmoothPointSizeRange = ((int)0X0b12),
+ PointSizeGranularity = ((int)0X0b13),
+ SmoothPointSizeGranularity = ((int)0X0b13),
+ LineSmooth = ((int)0X0b20),
+ LineWidth = ((int)0X0b21),
+ LineWidthRange = ((int)0X0b22),
+ SmoothLineWidthRange = ((int)0X0b22),
+ LineWidthGranularity = ((int)0X0b23),
+ SmoothLineWidthGranularity = ((int)0X0b23),
+ LineStipple = ((int)0X0b24),
+ LineStipplePattern = ((int)0X0b25),
+ LineStippleRepeat = ((int)0X0b26),
+ ListMode = ((int)0X0b30),
+ MaxListNesting = ((int)0X0b31),
+ ListBase = ((int)0X0b32),
+ ListIndex = ((int)0X0b33),
+ PolygonMode = ((int)0X0b40),
+ PolygonSmooth = ((int)0X0b41),
+ PolygonStipple = ((int)0X0b42),
+ EdgeFlag = ((int)0X0b43),
+ CullFace = ((int)0X0b44),
+ CullFaceMode = ((int)0X0b45),
+ FrontFace = ((int)0X0b46),
+ Lighting = ((int)0X0b50),
+ LightModelLocalViewer = ((int)0X0b51),
+ LightModelTwoSide = ((int)0X0b52),
+ LightModelAmbient = ((int)0X0b53),
+ ShadeModel = ((int)0X0b54),
+ ColorMaterialFace = ((int)0X0b55),
+ ColorMaterialParameter = ((int)0X0b56),
+ ColorMaterial = ((int)0X0b57),
+ Fog = ((int)0X0b60),
+ FogIndex = ((int)0X0b61),
+ FogDensity = ((int)0X0b62),
+ FogStart = ((int)0X0b63),
+ FogEnd = ((int)0X0b64),
+ FogMode = ((int)0X0b65),
+ FogColor = ((int)0X0b66),
+ DepthRange = ((int)0X0b70),
+ DepthTest = ((int)0X0b71),
+ DepthWritemask = ((int)0X0b72),
+ DepthClearValue = ((int)0X0b73),
+ DepthFunc = ((int)0X0b74),
+ AccumClearValue = ((int)0X0b80),
+ StencilTest = ((int)0X0b90),
+ StencilClearValue = ((int)0X0b91),
+ StencilFunc = ((int)0X0b92),
+ StencilValueMask = ((int)0X0b93),
+ StencilFail = ((int)0X0b94),
+ StencilPassDepthFail = ((int)0X0b95),
+ StencilPassDepthPass = ((int)0X0b96),
+ StencilRef = ((int)0X0b97),
+ StencilWritemask = ((int)0X0b98),
+ MatrixMode = ((int)0X0ba0),
+ Normalize = ((int)0X0ba1),
+ Viewport = ((int)0X0ba2),
+ ModelviewStackDepth = ((int)0X0ba3),
+ ProjectionStackDepth = ((int)0X0ba4),
+ TextureStackDepth = ((int)0X0ba5),
+ ModelviewMatrix = ((int)0X0ba6),
+ ProjectionMatrix = ((int)0X0ba7),
+ TextureMatrix = ((int)0X0ba8),
+ AttribStackDepth = ((int)0X0bb0),
+ ClientAttribStackDepth = ((int)0X0bb1),
+ AlphaTest = ((int)0X0bc0),
+ AlphaTestFunc = ((int)0X0bc1),
+ AlphaTestRef = ((int)0X0bc2),
+ Dither = ((int)0X0bd0),
+ BlendDst = ((int)0X0be0),
+ BlendSrc = ((int)0X0be1),
+ Blend = ((int)0X0be2),
+ LogicOpMode = ((int)0X0bf0),
+ IndexLogicOp = ((int)0X0bf1),
+ LogicOp = ((int)0X0bf1),
+ ColorLogicOp = ((int)0X0bf2),
+ AuxBuffers = ((int)0X0c00),
+ DrawBuffer = ((int)0X0c01),
+ ReadBuffer = ((int)0X0c02),
+ ScissorBox = ((int)0X0c10),
+ ScissorTest = ((int)0X0c11),
+ IndexClearValue = ((int)0X0c20),
+ IndexWritemask = ((int)0X0c21),
+ ColorClearValue = ((int)0X0c22),
+ ColorWritemask = ((int)0X0c23),
+ IndexMode = ((int)0X0c30),
+ RgbaMode = ((int)0X0c31),
+ Doublebuffer = ((int)0X0c32),
+ Stereo = ((int)0X0c33),
+ RenderMode = ((int)0X0c40),
+ PerspectiveCorrectionHint = ((int)0X0c50),
+ PointSmoothHint = ((int)0X0c51),
+ LineSmoothHint = ((int)0X0c52),
+ PolygonSmoothHint = ((int)0X0c53),
+ FogHint = ((int)0X0c54),
TextureGenS = ((int)0X0c60),
+ TextureGenT = ((int)0X0c61),
TextureGenR = ((int)0X0c62),
TextureGenQ = ((int)0X0c63),
- ColorArraySize = ((int)0X8081),
- GreenBits = ((int)0X0d53),
- TextureGenT = ((int)0X0c61),
- SecondaryColorArraySize = ((int)0X845a),
- NumCompressedTextureFormats = ((int)0X86a2),
- Light7 = ((int)0X4007),
- VertexArrayCountExt = ((int)0X807D),
- Map2TextureCoord1 = ((int)0X0db3),
- MaxTextureUnits = ((int)0X84e2),
- MaxActiveLightsSgix = ((int)0X8405),
- VertexArrayType = ((int)0X807b),
+ PixelMapIToISize = ((int)0X0cb0),
+ PixelMapSToSSize = ((int)0X0cb1),
+ PixelMapIToRSize = ((int)0X0cb2),
+ PixelMapIToGSize = ((int)0X0cb3),
+ PixelMapIToBSize = ((int)0X0cb4),
+ PixelMapIToASize = ((int)0X0cb5),
+ PixelMapRToRSize = ((int)0X0cb6),
+ PixelMapGToGSize = ((int)0X0cb7),
+ PixelMapBToBSize = ((int)0X0cb8),
+ PixelMapAToASize = ((int)0X0cb9),
+ UnpackSwapBytes = ((int)0X0cf0),
+ UnpackLsbFirst = ((int)0X0cf1),
+ UnpackRowLength = ((int)0X0cf2),
+ UnpackSkipRows = ((int)0X0cf3),
+ UnpackSkipPixels = ((int)0X0cf4),
+ UnpackAlignment = ((int)0X0cf5),
+ PackSwapBytes = ((int)0X0d00),
+ PackLsbFirst = ((int)0X0d01),
+ PackRowLength = ((int)0X0d02),
+ PackSkipRows = ((int)0X0d03),
+ PackSkipPixels = ((int)0X0d04),
+ PackAlignment = ((int)0X0d05),
+ MapColor = ((int)0X0d10),
+ MapStencil = ((int)0X0d11),
+ IndexShift = ((int)0X0d12),
+ IndexOffset = ((int)0X0d13),
+ RedScale = ((int)0X0d14),
+ RedBias = ((int)0X0d15),
+ ZoomX = ((int)0X0d16),
+ ZoomY = ((int)0X0d17),
+ GreenScale = ((int)0X0d18),
+ GreenBias = ((int)0X0d19),
+ BlueScale = ((int)0X0d1a),
+ BlueBias = ((int)0X0d1b),
+ AlphaScale = ((int)0X0d1c),
+ AlphaBias = ((int)0X0d1d),
+ DepthScale = ((int)0X0d1e),
+ DepthBias = ((int)0X0d1f),
+ MaxEvalOrder = ((int)0X0d30),
+ MaxLights = ((int)0X0d31),
+ MaxClipPlanes = ((int)0X0d32),
MaxTextureSize = ((int)0X0d33),
- Dither = ((int)0X0bd0),
- FragmentLightModelAmbientSgix = ((int)0X840a),
+ MaxPixelMapTable = ((int)0X0d34),
+ MaxAttribStackDepth = ((int)0X0d35),
+ MaxModelviewStackDepth = ((int)0X0d36),
+ MaxNameStackDepth = ((int)0X0d37),
+ MaxProjectionStackDepth = ((int)0X0d38),
+ MaxTextureStackDepth = ((int)0X0d39),
+ MaxViewportDims = ((int)0X0d3a),
+ MaxClientAttribStackDepth = ((int)0X0d3b),
+ SubpixelBits = ((int)0X0d50),
+ IndexBits = ((int)0X0d51),
+ RedBits = ((int)0X0d52),
+ GreenBits = ((int)0X0d53),
+ BlueBits = ((int)0X0d54),
+ AlphaBits = ((int)0X0d55),
+ DepthBits = ((int)0X0d56),
+ StencilBits = ((int)0X0d57),
+ AccumRedBits = ((int)0X0d58),
+ AccumGreenBits = ((int)0X0d59),
+ AccumBlueBits = ((int)0X0d5a),
+ AccumAlphaBits = ((int)0X0d5b),
+ NameStackDepth = ((int)0X0d70),
+ AutoNormal = ((int)0X0d80),
+ Map1Color4 = ((int)0X0d90),
+ Map1Index = ((int)0X0d91),
+ Map1Normal = ((int)0X0d92),
+ Map1TextureCoord1 = ((int)0X0d93),
Map1TextureCoord2 = ((int)0X0d94),
Map1TextureCoord3 = ((int)0X0d95),
- SampleAlphaToOne = ((int)0X809f),
- Map1TextureCoord1 = ((int)0X0d93),
- PostColorMatrixAlphaScaleSgi = ((int)0X80b7),
- IndexArray = ((int)0X8077),
- PostColorMatrixGreenScaleSgi = ((int)0X80b5),
- ClipPlane0 = ((int)0X3000),
- PixelMapRToRSize = ((int)0X0cb6),
- ClientActiveTexture = ((int)0X84e1),
- Map2TextureCoord4 = ((int)0X0db6),
- TransposeProjectionMatrix = ((int)0X84e4),
- PolygonOffsetLine = ((int)0X2a02),
- Lighting = ((int)0X0b50),
- PointSmoothHint = ((int)0X0c51),
- PostTextureFilterScaleRangeSgix = ((int)0X817c),
- ScissorBox = ((int)0X0c10),
- RenderMode = ((int)0X0c40),
- StencilBackFail = ((int)0X8801),
- PolygonStipple = ((int)0X0b42),
- PostColorMatrixGreenBiasSgi = ((int)0X80b9),
- GreenBias = ((int)0X0d19),
- TextureCoordArrayCountExt = ((int)0X808b),
- PointSizeMinSgis = ((int)0X8126),
+ Map1TextureCoord4 = ((int)0X0d96),
+ Map1Vertex3 = ((int)0X0d97),
+ Map1Vertex4 = ((int)0X0d98),
+ Map2Color4 = ((int)0X0db0),
+ Map2Index = ((int)0X0db1),
+ Map2Normal = ((int)0X0db2),
+ Map2TextureCoord1 = ((int)0X0db3),
Map2TextureCoord2 = ((int)0X0db4),
Map2TextureCoord3 = ((int)0X0db5),
- PolygonMode = ((int)0X0b40),
- Texture3DBindingExt = ((int)0X806a),
- SecondaryColorArrayStride = ((int)0X845c),
+ Map2TextureCoord4 = ((int)0X0db6),
+ Map2Vertex3 = ((int)0X0db7),
+ Map2Vertex4 = ((int)0X0db8),
+ Map1GridDomain = ((int)0X0dd0),
+ Map1GridSegments = ((int)0X0dd1),
+ Map2GridDomain = ((int)0X0dd2),
+ Map2GridSegments = ((int)0X0dd3),
+ Texture1D = ((int)0X0de0),
+ Texture2D = ((int)0X0de1),
+ FeedbackBufferSize = ((int)0X0df1),
+ FeedbackBufferType = ((int)0X0df2),
+ SelectionBufferSize = ((int)0X0df4),
PolygonOffsetUnits = ((int)0X2a00),
- StencilFail = ((int)0X0b94),
- VertexArrayBufferBinding = ((int)0X8896),
+ PolygonOffsetPoint = ((int)0X2a01),
+ PolygonOffsetLine = ((int)0X2a02),
+ ClipPlane0 = ((int)0X3000),
+ ClipPlane1 = ((int)0X3001),
+ ClipPlane2 = ((int)0X3002),
+ ClipPlane3 = ((int)0X3003),
+ ClipPlane4 = ((int)0X3004),
+ ClipPlane5 = ((int)0X3005),
+ Light0 = ((int)0X4000),
+ Light1 = ((int)0X4001),
+ Light2 = ((int)0X4002),
+ Light3 = ((int)0X4003),
+ Light4 = ((int)0X4004),
+ Light5 = ((int)0X4005),
+ Light6 = ((int)0X4006),
+ Light7 = ((int)0X4007),
+ BlendColorExt = ((int)0X8005),
+ BlendEquationExt = ((int)0X8009),
+ BlendEquationRgb = ((int)0X8009),
+ PackCmykHintExt = ((int)0X800e),
+ UnpackCmykHintExt = ((int)0X800f),
+ Convolution1DExt = ((int)0X8010),
+ Convolution2DExt = ((int)0X8011),
+ Separable2DExt = ((int)0X8012),
+ PostConvolutionRedScaleExt = ((int)0X801c),
+ PostConvolutionGreenScaleExt = ((int)0X801D),
+ PostConvolutionBlueScaleExt = ((int)0X801e),
+ PostConvolutionAlphaScaleExt = ((int)0X801f),
+ PostConvolutionRedBiasExt = ((int)0X8020),
+ PostConvolutionGreenBiasExt = ((int)0X8021),
+ PostConvolutionBlueBiasExt = ((int)0X8022),
+ PostConvolutionAlphaBiasExt = ((int)0X8023),
+ HistogramExt = ((int)0X8024),
+ MinmaxExt = ((int)0X802e),
+ PolygonOffsetFill = ((int)0X8037),
+ PolygonOffsetFactor = ((int)0X8038),
+ PolygonOffsetBiasExt = ((int)0X8039),
+ RescaleNormalExt = ((int)0X803a),
+ TextureBinding1D = ((int)0X8068),
+ TextureBinding2D = ((int)0X8069),
+ Texture3DBindingExt = ((int)0X806a),
+ TextureBinding3D = ((int)0X806a),
+ PackSkipImagesExt = ((int)0X806b),
+ PackImageHeightExt = ((int)0X806c),
+ UnpackSkipImagesExt = ((int)0X806D),
+ UnpackImageHeightExt = ((int)0X806e),
+ Texture3DExt = ((int)0X806f),
+ Max3DTextureSize = ((int)0X8073),
+ Max3DTextureSizeExt = ((int)0X8073),
+ VertexArray = ((int)0X8074),
+ NormalArray = ((int)0X8075),
+ ColorArray = ((int)0X8076),
+ IndexArray = ((int)0X8077),
+ TextureCoordArray = ((int)0X8078),
+ EdgeFlagArray = ((int)0X8079),
+ VertexArraySize = ((int)0X807a),
+ VertexArrayType = ((int)0X807b),
+ VertexArrayStride = ((int)0X807c),
+ VertexArrayCountExt = ((int)0X807D),
+ NormalArrayType = ((int)0X807e),
+ NormalArrayStride = ((int)0X807f),
+ NormalArrayCountExt = ((int)0X8080),
+ ColorArraySize = ((int)0X8081),
+ ColorArrayType = ((int)0X8082),
+ ColorArrayStride = ((int)0X8083),
+ ColorArrayCountExt = ((int)0X8084),
+ IndexArrayType = ((int)0X8085),
+ IndexArrayStride = ((int)0X8086),
+ IndexArrayCountExt = ((int)0X8087),
+ TextureCoordArraySize = ((int)0X8088),
+ TextureCoordArrayType = ((int)0X8089),
+ TextureCoordArrayStride = ((int)0X808a),
+ TextureCoordArrayCountExt = ((int)0X808b),
+ EdgeFlagArrayStride = ((int)0X808c),
+ EdgeFlagArrayCountExt = ((int)0X808D),
+ InterlaceSgix = ((int)0X8094),
+ DetailTexture2DBindingSgis = ((int)0X8096),
+ Multisample = ((int)0X809d),
+ MultisampleSgis = ((int)0X809D),
+ SampleAlphaToCoverage = ((int)0X809e),
+ SampleAlphaToMaskSgis = ((int)0X809e),
+ SampleAlphaToOne = ((int)0X809f),
+ SampleAlphaToOneSgis = ((int)0X809f),
+ SampleCoverage = ((int)0X80a0),
+ SampleMaskSgis = ((int)0X80a0),
+ SampleBuffers = ((int)0X80a8),
+ SampleBuffersSgis = ((int)0X80a8),
+ Samples = ((int)0X80a9),
+ SamplesSgis = ((int)0X80a9),
+ SampleCoverageValue = ((int)0X80aa),
+ SampleMaskValueSgis = ((int)0X80aa),
+ SampleCoverageInvert = ((int)0X80ab),
+ SampleMaskInvertSgis = ((int)0X80ab),
+ SamplePatternSgis = ((int)0X80ac),
+ ColorMatrixSgi = ((int)0X80b1),
+ ColorMatrixStackDepthSgi = ((int)0X80b2),
+ MaxColorMatrixStackDepthSgi = ((int)0X80b3),
+ PostColorMatrixRedScaleSgi = ((int)0X80b4),
+ PostColorMatrixGreenScaleSgi = ((int)0X80b5),
+ PostColorMatrixBlueScaleSgi = ((int)0X80b6),
+ PostColorMatrixAlphaScaleSgi = ((int)0X80b7),
+ PostColorMatrixRedBiasSgi = ((int)0X80b8),
+ PostColorMatrixGreenBiasSgi = ((int)0X80b9),
+ PostColorMatrixBlueBiasSgi = ((int)0X80ba),
+ PostColorMatrixAlphaBiasSgi = ((int)0X80bb),
+ TextureColorTableSgi = ((int)0X80bc),
+ BlendDstRgb = ((int)0X80c8),
+ BlendSrcRgb = ((int)0X80c9),
+ BlendDstAlpha = ((int)0X80ca),
+ BlendSrcAlpha = ((int)0X80cb),
+ ColorTableSgi = ((int)0X80D0),
+ PostConvolutionColorTableSgi = ((int)0X80D1),
+ PostColorMatrixColorTableSgi = ((int)0X80D2),
+ MaxElementsVertices = ((int)0X80e8),
+ MaxElementsIndices = ((int)0X80e9),
+ PointSizeMin = ((int)0X8126),
+ PointSizeMinSgis = ((int)0X8126),
+ PointSizeMax = ((int)0X8127),
+ PointSizeMaxSgis = ((int)0X8127),
+ PointFadeThresholdSize = ((int)0X8128),
+ PointFadeThresholdSizeSgis = ((int)0X8128),
+ DistanceAttenuationSgis = ((int)0X8129),
+ PointDistanceAttenuation = ((int)0X8129),
+ FogFuncPointsSgis = ((int)0X812b),
+ MaxFogFuncPointsSgis = ((int)0X812c),
+ PackSkipVolumesSgis = ((int)0X8130),
+ PackImageDepthSgis = ((int)0X8131),
+ UnpackSkipVolumesSgis = ((int)0X8132),
+ UnpackImageDepthSgis = ((int)0X8133),
+ Texture4DSgis = ((int)0X8134),
+ Max4DTextureSizeSgis = ((int)0X8138),
+ PixelTexGenSgix = ((int)0X8139),
+ PixelTileBestAlignmentSgix = ((int)0X813e),
+ PixelTileCacheIncrementSgix = ((int)0X813f),
+ PixelTileWidthSgix = ((int)0X8140),
+ PixelTileHeightSgix = ((int)0X8141),
+ PixelTileGridWidthSgix = ((int)0X8142),
+ PixelTileGridHeightSgix = ((int)0X8143),
+ PixelTileGridDepthSgix = ((int)0X8144),
+ PixelTileCacheSizeSgix = ((int)0X8145),
+ SpriteSgix = ((int)0X8148),
+ SpriteModeSgix = ((int)0X8149),
+ SpriteAxisSgix = ((int)0X814a),
+ SpriteTranslationSgix = ((int)0X814b),
+ Texture4DBindingSgis = ((int)0X814f),
+ MaxClipmapDepthSgix = ((int)0X8177),
+ MaxClipmapVirtualDepthSgix = ((int)0X8178),
+ PostTextureFilterBiasRangeSgix = ((int)0X817b),
+ PostTextureFilterScaleRangeSgix = ((int)0X817c),
+ ReferencePlaneSgix = ((int)0X817D),
ReferencePlaneEquationSgix = ((int)0X817e),
- StencilPassDepthFail = ((int)0X0b95),
+ IrInstrument1Sgix = ((int)0X817f),
+ InstrumentMeasurementsSgix = ((int)0X8181),
+ CalligraphicFragmentSgix = ((int)0X8183),
+ FramezoomSgix = ((int)0X818b),
+ FramezoomFactorSgix = ((int)0X818c),
+ MaxFramezoomFactorSgix = ((int)0X818D),
+ GenerateMipmapHint = ((int)0X8192),
+ GenerateMipmapHintSgis = ((int)0X8192),
+ DeformationsMaskSgix = ((int)0X8196),
+ FogOffsetSgix = ((int)0X8198),
+ FogOffsetValueSgix = ((int)0X8199),
+ LightModelColorControl = ((int)0X81f8),
+ SharedTexturePaletteExt = ((int)0X81fb),
+ ConvolutionHintSgix = ((int)0X8316),
+ AsyncMarkerSgix = ((int)0X8329),
+ PixelTexGenModeSgix = ((int)0X832b),
+ AsyncHistogramSgix = ((int)0X832c),
+ MaxAsyncHistogramSgix = ((int)0X832D),
+ PixelTextureSgis = ((int)0X8353),
+ AsyncTexImageSgix = ((int)0X835c),
+ AsyncDrawPixelsSgix = ((int)0X835D),
+ AsyncReadPixelsSgix = ((int)0X835e),
+ MaxAsyncTexImageSgix = ((int)0X835f),
+ MaxAsyncDrawPixelsSgix = ((int)0X8360),
+ MaxAsyncReadPixelsSgix = ((int)0X8361),
+ VertexPreclipSgix = ((int)0X83ee),
+ VertexPreclipHintSgix = ((int)0X83ef),
+ FragmentLightingSgix = ((int)0X8400),
+ FragmentColorMaterialSgix = ((int)0X8401),
+ FragmentColorMaterialFaceSgix = ((int)0X8402),
+ FragmentColorMaterialParameterSgix = ((int)0X8403),
+ MaxFragmentLightsSgix = ((int)0X8404),
+ MaxActiveLightsSgix = ((int)0X8405),
+ LightEnvModeSgix = ((int)0X8407),
+ FragmentLightModelLocalViewerSgix = ((int)0X8408),
+ FragmentLightModelTwoSideSgix = ((int)0X8409),
+ FragmentLightModelAmbientSgix = ((int)0X840a),
+ FragmentLightModelNormalInterpolationSgix = ((int)0X840b),
+ FragmentLight0Sgix = ((int)0X840c),
+ PackResampleSgix = ((int)0X842c),
+ UnpackResampleSgix = ((int)0X842D),
+ CurrentFogCoord = ((int)0X8453),
+ FogCoordArrayType = ((int)0X8454),
+ FogCoordArrayStride = ((int)0X8455),
+ ColorSum = ((int)0X8458),
+ CurrentSecondaryColor = ((int)0X8459),
+ SecondaryColorArraySize = ((int)0X845a),
+ SecondaryColorArrayType = ((int)0X845b),
+ SecondaryColorArrayStride = ((int)0X845c),
+ CurrentRasterSecondaryColor = ((int)0X845f),
+ AliasedPointSizeRange = ((int)0X846d),
+ AliasedLineWidthRange = ((int)0X846e),
+ ActiveTexture = ((int)0X84e0),
+ ClientActiveTexture = ((int)0X84e1),
+ MaxTextureUnits = ((int)0X84e2),
+ TransposeModelviewMatrix = ((int)0X84e3),
+ TransposeProjectionMatrix = ((int)0X84e4),
+ TransposeTextureMatrix = ((int)0X84e5),
+ TransposeColorMatrix = ((int)0X84e6),
+ MaxRenderbufferSize = ((int)0X84e8),
+ MaxRenderbufferSizeExt = ((int)0X84e8),
+ TextureCompressionHint = ((int)0X84ef),
+ MaxTextureLodBias = ((int)0X84fd),
+ TextureCubeMap = ((int)0X8513),
+ TextureBindingCubeMap = ((int)0X8514),
+ MaxCubeMapTextureSize = ((int)0X851c),
+ PackSubsampleRateSgix = ((int)0X85a0),
+ UnpackSubsampleRateSgix = ((int)0X85a1),
+ NumCompressedTextureFormats = ((int)0X86a2),
+ CompressedTextureFormats = ((int)0X86a3),
+ StencilBackFunc = ((int)0X8800),
+ StencilBackFail = ((int)0X8801),
+ StencilBackPassDepthFail = ((int)0X8802),
+ StencilBackPassDepthPass = ((int)0X8803),
+ RgbaFloatMode = ((int)0X8820),
+ MaxDrawBuffers = ((int)0X8824),
+ DrawBuffer0 = ((int)0X8825),
+ DrawBuffer1 = ((int)0X8826),
+ DrawBuffer2 = ((int)0X8827),
+ DrawBuffer3 = ((int)0X8828),
+ DrawBuffer4 = ((int)0X8829),
+ DrawBuffer5 = ((int)0X882a),
+ DrawBuffer6 = ((int)0X882b),
+ DrawBuffer7 = ((int)0X882c),
+ DrawBuffer8 = ((int)0X882d),
+ DrawBuffer9 = ((int)0X882e),
+ DrawBuffer10 = ((int)0X882f),
+ DrawBuffer11 = ((int)0X8830),
+ DrawBuffer12 = ((int)0X8831),
+ DrawBuffer13 = ((int)0X8832),
+ DrawBuffer14 = ((int)0X8833),
+ DrawBuffer15 = ((int)0X8834),
+ BlendEquationAlpha = ((int)0X883d),
+ PointSprite = ((int)0X8861),
+ MaxVertexAttribs = ((int)0X8869),
+ MaxTextureCoords = ((int)0X8871),
+ MaxTextureImageUnits = ((int)0X8872),
+ ArrayBufferBinding = ((int)0X8894),
+ ElementArrayBufferBinding = ((int)0X8895),
+ VertexArrayBufferBinding = ((int)0X8896),
+ NormalArrayBufferBinding = ((int)0X8897),
+ ColorArrayBufferBinding = ((int)0X8898),
+ IndexArrayBufferBinding = ((int)0X8899),
+ TextureCoordArrayBufferBinding = ((int)0X889a),
+ EdgeFlagArrayBufferBinding = ((int)0X889b),
+ SecondaryColorArrayBufferBinding = ((int)0X889c),
+ FogCoordArrayBufferBinding = ((int)0X889d),
+ WeightArrayBufferBinding = ((int)0X889e),
+ VertexAttribArrayBufferBinding = ((int)0X889f),
+ PixelPackBufferBinding = ((int)0X88ed),
+ PixelUnpackBufferBinding = ((int)0X88ef),
+ MaxArrayTextureLayers = ((int)0X88ff),
+ ClampVertexColor = ((int)0X891a),
+ ClampFragmentColor = ((int)0X891b),
+ ClampReadColor = ((int)0X891c),
+ MaxFragmentUniformComponents = ((int)0X8b49),
+ MaxVertexUniformComponents = ((int)0X8b4a),
+ MaxVaryingFloats = ((int)0X8b4b),
+ MaxVertexTextureImageUnits = ((int)0X8b4c),
+ MaxCombinedTextureImageUnits = ((int)0X8b4d),
+ FragmentShaderDerivativeHint = ((int)0X8b8b),
+ CurrentProgram = ((int)0X8b8d),
+ TextureBinding1DArray = ((int)0X8c1c),
+ TextureBinding2DArray = ((int)0X8c1d),
+ StencilBackRef = ((int)0X8ca3),
+ StencilBackValueMask = ((int)0X8ca4),
+ StencilBackWritemask = ((int)0X8ca5),
+ DrawFramebufferBinding = ((int)0X8ca6),
+ FramebufferBinding = ((int)0X8ca6),
+ FramebufferBindingExt = ((int)0X8ca6),
+ RenderbufferBinding = ((int)0X8ca7),
+ RenderbufferBindingExt = ((int)0X8ca7),
+ ReadFramebufferBinding = ((int)0X8caa),
+ MaxColorAttachments = ((int)0X8cdf),
+ MaxColorAttachmentsExt = ((int)0X8cdf),
+ MaxSamples = ((int)0X8D57),
}
public enum GetTextureParameter
{
- TextureCompareMode = ((int)0X884c),
+ TextureWidth = ((int)0X1000),
TextureHeight = ((int)0X1001),
- QuadTextureSelectSgis = ((int)0X8125),
- DetailTextureLevelSgis = ((int)0X809a),
- TextureGreenSize = ((int)0X805d),
- TextureCompressedImageSize = ((int)0X86a0),
- TextureCompressed = ((int)0X86a1),
- TextureMaxClampRSgix = ((int)0X836b),
- TexturePriority = ((int)0X8066),
- TextureLequalRSgix = ((int)0X819c),
- TextureMinLod = ((int)0X813a),
- TextureLodBiasTSgix = ((int)0X818f),
- TextureBaseLevelSgis = ((int)0X813c),
- TextureClipmapCenterSgix = ((int)0X8171),
- TextureRedSize = ((int)0X805c),
TextureComponents = ((int)0X1003),
- TextureDepthSize = ((int)0X884a),
- TextureMaxClampTSgix = ((int)0X836a),
- TextureMaxLevelSgis = ((int)0X813D),
- TextureLodBiasRSgix = ((int)0X8190),
- TextureBaseLevel = ((int)0X813c),
- TextureLodBiasSSgix = ((int)0X818e),
- TextureLuminanceSize = ((int)0X8060),
- DepthTextureMode = ((int)0X884b),
- TextureClipmapOffsetSgix = ((int)0X8173),
- TextureWrapQSgis = ((int)0X8137),
- TextureMinLodSgis = ((int)0X813a),
- TextureClipmapFrameSgix = ((int)0X8172),
- TextureGequalRSgix = ((int)0X819D),
- SharpenTextureFuncPointsSgis = ((int)0X80b0),
- TextureWrapS = ((int)0X2802),
+ TextureInternalFormat = ((int)0X1003),
+ TextureBorderColor = ((int)0X1004),
+ TextureBorder = ((int)0X1005),
+ TextureMagFilter = ((int)0X2800),
TextureMinFilter = ((int)0X2801),
- TextureClipmapDepthSgix = ((int)0X8176),
- TextureFilter4SizeSgis = ((int)0X8147),
- TextureWrapRExt = ((int)0X8072),
+ TextureWrapS = ((int)0X2802),
+ TextureWrapT = ((int)0X2803),
+ TextureRedSize = ((int)0X805c),
+ TextureGreenSize = ((int)0X805d),
+ TextureBlueSize = ((int)0X805e),
+ TextureAlphaSize = ((int)0X805f),
+ TextureLuminanceSize = ((int)0X8060),
+ TextureIntensitySize = ((int)0X8061),
+ TexturePriority = ((int)0X8066),
+ TextureResident = ((int)0X8067),
+ TextureDepth = ((int)0X8071),
+ TextureDepthExt = ((int)0X8071),
TextureWrapR = ((int)0X8072),
- TextureCompareSgix = ((int)0X819a),
- TextureMaxClampSSgix = ((int)0X8369),
+ TextureWrapRExt = ((int)0X8072),
+ DetailTextureLevelSgis = ((int)0X809a),
DetailTextureModeSgis = ((int)0X809b),
DetailTextureFuncPointsSgis = ((int)0X809c),
- DualTextureSelectSgis = ((int)0X8124),
- TextureClipmapLodOffsetSgix = ((int)0X8175),
- TextureDepthExt = ((int)0X8071),
- Texture4DsizeSgis = ((int)0X8136),
- TextureInternalFormat = ((int)0X1003),
- PostTextureFilterBiasSgix = ((int)0X8179),
- TextureIntensitySize = ((int)0X8061),
- TextureCompareOperatorSgix = ((int)0X819b),
- TextureMaxLodSgis = ((int)0X813b),
- TextureMaxLod = ((int)0X813b),
- TextureBlueSize = ((int)0X805e),
- GenerateMipmapSgis = ((int)0X8191),
- TextureDepth = ((int)0X8071),
- TextureWidth = ((int)0X1000),
- GenerateMipmap = ((int)0X8191),
- TextureAlphaSize = ((int)0X805f),
+ SharpenTextureFuncPointsSgis = ((int)0X80b0),
ShadowAmbientSgix = ((int)0X80bf),
- PostTextureFilterScaleSgix = ((int)0X817a),
- TextureBorderColor = ((int)0X1004),
- TextureResident = ((int)0X8067),
- TextureCompareFunc = ((int)0X884d),
- TextureBorder = ((int)0X1005),
- TextureClipmapVirtualDepthSgix = ((int)0X8174),
- TextureMagFilter = ((int)0X2800),
- TextureWrapT = ((int)0X2803),
+ DualTextureSelectSgis = ((int)0X8124),
+ QuadTextureSelectSgis = ((int)0X8125),
+ Texture4DsizeSgis = ((int)0X8136),
+ TextureWrapQSgis = ((int)0X8137),
+ TextureMinLod = ((int)0X813a),
+ TextureMinLodSgis = ((int)0X813a),
+ TextureMaxLod = ((int)0X813b),
+ TextureMaxLodSgis = ((int)0X813b),
+ TextureBaseLevel = ((int)0X813c),
+ TextureBaseLevelSgis = ((int)0X813c),
TextureMaxLevel = ((int)0X813d),
+ TextureMaxLevelSgis = ((int)0X813D),
+ TextureFilter4SizeSgis = ((int)0X8147),
+ TextureClipmapCenterSgix = ((int)0X8171),
+ TextureClipmapFrameSgix = ((int)0X8172),
+ TextureClipmapOffsetSgix = ((int)0X8173),
+ TextureClipmapVirtualDepthSgix = ((int)0X8174),
+ TextureClipmapLodOffsetSgix = ((int)0X8175),
+ TextureClipmapDepthSgix = ((int)0X8176),
+ PostTextureFilterBiasSgix = ((int)0X8179),
+ PostTextureFilterScaleSgix = ((int)0X817a),
+ TextureLodBiasSSgix = ((int)0X818e),
+ TextureLodBiasTSgix = ((int)0X818f),
+ TextureLodBiasRSgix = ((int)0X8190),
+ GenerateMipmap = ((int)0X8191),
+ GenerateMipmapSgis = ((int)0X8191),
+ TextureCompareSgix = ((int)0X819a),
+ TextureCompareOperatorSgix = ((int)0X819b),
+ TextureLequalRSgix = ((int)0X819c),
+ TextureGequalRSgix = ((int)0X819D),
+ TextureMaxClampSSgix = ((int)0X8369),
+ TextureMaxClampTSgix = ((int)0X836a),
+ TextureMaxClampRSgix = ((int)0X836b),
+ TextureCompressedImageSize = ((int)0X86a0),
+ TextureCompressed = ((int)0X86a1),
+ TextureDepthSize = ((int)0X884a),
+ DepthTextureMode = ((int)0X884b),
+ TextureCompareMode = ((int)0X884c),
+ TextureCompareFunc = ((int)0X884d),
+ TextureStencilSize = ((int)0X88f1),
+ TextureRedType = ((int)0X8c10),
+ TextureGreenType = ((int)0X8c11),
+ TextureBlueType = ((int)0X8c12),
+ TextureAlphaType = ((int)0X8c13),
+ TextureLuminanceType = ((int)0X8c14),
+ TextureIntensityType = ((int)0X8c15),
+ TextureDepthType = ((int)0X8c16),
+ TextureSharedSize = ((int)0X8c3f),
}
public enum HintMode
{
- Nicest = ((int)0X1102),
- Fastest = ((int)0X1101),
DontCare = ((int)0X1100),
+ Fastest = ((int)0X1101),
+ Nicest = ((int)0X1102),
}
public enum HintTarget
{
PerspectiveCorrectionHint = ((int)0X0c50),
- VertexPreclipHintSgix = ((int)0X83ef),
- LineSmoothHint = ((int)0X0c52),
- UnpackCmykHintExt = ((int)0X800f),
- PolygonSmoothHint = ((int)0X0c53),
- ConvolutionHintSgix = ((int)0X8316),
- PackCmykHintExt = ((int)0X800e),
- TextureCompressionHint = ((int)0X84ef),
PointSmoothHint = ((int)0X0c51),
- GenerateMipmapHint = ((int)0X8192),
+ LineSmoothHint = ((int)0X0c52),
+ PolygonSmoothHint = ((int)0X0c53),
FogHint = ((int)0X0c54),
- GenerateMipmapHintSgis = ((int)0X8192),
+ PackCmykHintExt = ((int)0X800e),
+ UnpackCmykHintExt = ((int)0X800f),
TextureMultiBufferHintSgix = ((int)0X812e),
+ GenerateMipmapHint = ((int)0X8192),
+ GenerateMipmapHintSgis = ((int)0X8192),
+ ConvolutionHintSgix = ((int)0X8316),
+ VertexPreclipHintSgix = ((int)0X83ef),
+ TextureCompressionHint = ((int)0X84ef),
}
public enum HistogramTargetExt
{
- ProxyHistogramExt = ((int)0X8025),
HistogramExt = ((int)0X8024),
+ ProxyHistogramExt = ((int)0X8025),
}
public enum IndexPointerType
{
Short = ((int)0X1402),
+ Int = ((int)0X1404),
Float = ((int)0X1406),
Double = ((int)0X140a),
- Int = ((int)0X1404),
}
public enum LightEnvModeSgix
{
- Replace = ((int)0X1e01),
Add = ((int)0X0104),
+ Replace = ((int)0X1e01),
Modulate = ((int)0X2100),
}
@@ -1140,60 +1189,60 @@ namespace OpenTK.Graphics
public enum LightModelParameter
{
- LightModelColorControl = ((int)0X81f8),
+ LightModelLocalViewer = ((int)0X0b51),
LightModelTwoSide = ((int)0X0b52),
LightModelAmbient = ((int)0X0b53),
- LightModelLocalViewer = ((int)0X0b51),
+ LightModelColorControl = ((int)0X81f8),
}
public enum LightParameter
{
- Specular = ((int)0X1202),
- ConstantAttenuation = ((int)0X1207),
- SpotExponent = ((int)0X1205),
- LinearAttenuation = ((int)0X1208),
- Position = ((int)0X1203),
Ambient = ((int)0X1200),
Diffuse = ((int)0X1201),
- SpotCutoff = ((int)0X1206),
+ Specular = ((int)0X1202),
+ Position = ((int)0X1203),
SpotDirection = ((int)0X1204),
+ SpotExponent = ((int)0X1205),
+ SpotCutoff = ((int)0X1206),
+ ConstantAttenuation = ((int)0X1207),
+ LinearAttenuation = ((int)0X1208),
QuadraticAttenuation = ((int)0X1209),
}
public enum ListMode
{
- CompileAndExecute = ((int)0X1301),
Compile = ((int)0X1300),
+ CompileAndExecute = ((int)0X1301),
}
public enum DataType
{
- UnsignedByte = ((int)0X1401),
Byte = ((int)0X1400),
- Double = ((int)0X140a),
- UnsignedInt = ((int)0X1405),
- DoubleExt = ((int)0X140a),
+ UnsignedByte = ((int)0X1401),
Short = ((int)0X1402),
- Int = ((int)0X1404),
- Float = ((int)0X1406),
- Gl4Bytes = ((int)0X1409),
- Gl3Bytes = ((int)0X1408),
- Gl2Bytes = ((int)0X1407),
UnsignedShort = ((int)0X1403),
+ Int = ((int)0X1404),
+ UnsignedInt = ((int)0X1405),
+ Float = ((int)0X1406),
+ Gl2Bytes = ((int)0X1407),
+ Gl3Bytes = ((int)0X1408),
+ Gl4Bytes = ((int)0X1409),
+ Double = ((int)0X140a),
+ DoubleExt = ((int)0X140a),
}
public enum ListNameType
{
- UnsignedByte = ((int)0X1401),
Byte = ((int)0X1400),
- UnsignedInt = ((int)0X1405),
+ UnsignedByte = ((int)0X1401),
Short = ((int)0X1402),
- Int = ((int)0X1404),
- Float = ((int)0X1406),
- Gl4Bytes = ((int)0X1409),
- Gl3Bytes = ((int)0X1408),
- Gl2Bytes = ((int)0X1407),
UnsignedShort = ((int)0X1403),
+ Int = ((int)0X1404),
+ UnsignedInt = ((int)0X1405),
+ Float = ((int)0X1406),
+ Gl2Bytes = ((int)0X1407),
+ Gl3Bytes = ((int)0X1408),
+ Gl4Bytes = ((int)0X1409),
}
public enum ListParameterName
@@ -1203,84 +1252,84 @@ namespace OpenTK.Graphics
public enum LogicOp
{
- Nor = ((int)0X1508),
- AndInverted = ((int)0X1504),
- CopyInverted = ((int)0X150c),
- Noop = ((int)0X1505),
- OrReverse = ((int)0X150b),
+ Clear = ((int)0X1500),
+ And = ((int)0X1501),
AndReverse = ((int)0X1502),
+ Copy = ((int)0X1503),
+ AndInverted = ((int)0X1504),
+ Noop = ((int)0X1505),
+ Xor = ((int)0X1506),
+ Or = ((int)0X1507),
+ Nor = ((int)0X1508),
+ Equiv = ((int)0X1509),
+ Invert = ((int)0X150a),
+ OrReverse = ((int)0X150b),
+ CopyInverted = ((int)0X150c),
+ OrInverted = ((int)0X150d),
Nand = ((int)0X150e),
Set = ((int)0X150f),
- Equiv = ((int)0X1509),
- Copy = ((int)0X1503),
- Or = ((int)0X1507),
- And = ((int)0X1501),
- Xor = ((int)0X1506),
- Clear = ((int)0X1500),
- OrInverted = ((int)0X150d),
- Invert = ((int)0X150a),
}
public enum MapTarget
{
- GeometryDeformationSgix = ((int)0X8194),
Map1Color4 = ((int)0X0D90),
Map1Index = ((int)0X0D91),
- Map2Index = ((int)0X0Db1),
- Map1Vertex4 = ((int)0X0D98),
- TextureDeformationSgix = ((int)0X8195),
- Map1Vertex3 = ((int)0X0D97),
Map1Normal = ((int)0X0D92),
- Map2Vertex4 = ((int)0X0Db8),
- Map2Color4 = ((int)0X0Db0),
- Map2Vertex3 = ((int)0X0Db7),
- Map2Normal = ((int)0X0Db2),
- Map1TextureCoord4 = ((int)0X0D96),
+ Map1TextureCoord1 = ((int)0X0D93),
Map1TextureCoord2 = ((int)0X0D94),
Map1TextureCoord3 = ((int)0X0D95),
+ Map1TextureCoord4 = ((int)0X0D96),
+ Map1Vertex3 = ((int)0X0D97),
+ Map1Vertex4 = ((int)0X0D98),
+ Map2Color4 = ((int)0X0Db0),
+ Map2Index = ((int)0X0Db1),
+ Map2Normal = ((int)0X0Db2),
+ Map2TextureCoord1 = ((int)0X0Db3),
Map2TextureCoord2 = ((int)0X0Db4),
Map2TextureCoord3 = ((int)0X0Db5),
- Map2TextureCoord1 = ((int)0X0Db3),
- Map1TextureCoord1 = ((int)0X0D93),
Map2TextureCoord4 = ((int)0X0Db6),
+ Map2Vertex3 = ((int)0X0Db7),
+ Map2Vertex4 = ((int)0X0Db8),
+ GeometryDeformationSgix = ((int)0X8194),
+ TextureDeformationSgix = ((int)0X8195),
}
public enum MaterialFace
{
Front = ((int)0X0404),
- FrontAndBack = ((int)0X0408),
Back = ((int)0X0405),
+ FrontAndBack = ((int)0X0408),
}
public enum MaterialParameter
{
- Emission = ((int)0X1600),
- ColorIndexes = ((int)0X1603),
- AmbientAndDiffuse = ((int)0X1602),
- Diffuse = ((int)0X1201),
Ambient = ((int)0X1200),
+ Diffuse = ((int)0X1201),
Specular = ((int)0X1202),
+ Emission = ((int)0X1600),
Shininess = ((int)0X1601),
+ AmbientAndDiffuse = ((int)0X1602),
+ ColorIndexes = ((int)0X1603),
}
public enum MatrixMode
{
- Color = ((int)0X1800),
Modelview = ((int)0X1700),
Projection = ((int)0X1701),
Texture = ((int)0X1702),
+ Color = ((int)0X1800),
}
public enum MeshMode1
{
- Line = ((int)0X1b01),
Point = ((int)0X1b00),
+ Line = ((int)0X1b01),
}
public enum MeshMode2
{
- Line = ((int)0X1b01),
Point = ((int)0X1b00),
+ Line = ((int)0X1b01),
Fill = ((int)0X1b02),
}
@@ -1291,124 +1340,135 @@ namespace OpenTK.Graphics
public enum NormalPointerType
{
+ Byte = ((int)0X1400),
Short = ((int)0X1402),
+ Int = ((int)0X1404),
Float = ((int)0X1406),
Double = ((int)0X140a),
- Byte = ((int)0X1400),
- Int = ((int)0X1404),
}
public enum PixelCopyType
{
Color = ((int)0X1800),
- Stencil = ((int)0X1802),
Depth = ((int)0X1801),
+ Stencil = ((int)0X1802),
}
public enum PixelFormat
{
- CmykExt = ((int)0X800c),
- Rgb = ((int)0X1907),
- R5G6B5IccSgix = ((int)0X8466),
- R5G6B5A8IccSgix = ((int)0X8467),
+ ColorIndex = ((int)0X1900),
+ StencilIndex = ((int)0X1901),
+ DepthComponent = ((int)0X1902),
+ Red = ((int)0X1903),
Green = ((int)0X1904),
Blue = ((int)0X1905),
- Alpha16IccSgix = ((int)0X8468),
- Ycrcb444Sgix = ((int)0X81bc),
- Ycrcb422Sgix = ((int)0X81bb),
- Luminance = ((int)0X1909),
- Rgba = ((int)0X1908),
- StencilIndex = ((int)0X1901),
- Red = ((int)0X1903),
- DepthComponent = ((int)0X1902),
- Luminance16IccSgix = ((int)0X8469),
- Luminance16Alpha8IccSgix = ((int)0X846b),
- Bgra = ((int)0X80e1),
Alpha = ((int)0X1906),
- ColorIndex = ((int)0X1900),
- CmykaExt = ((int)0X800D),
- Bgr = ((int)0X80e0),
+ Rgb = ((int)0X1907),
+ Rgba = ((int)0X1908),
+ Luminance = ((int)0X1909),
LuminanceAlpha = ((int)0X190a),
AbgrExt = ((int)0X8000),
+ CmykExt = ((int)0X800c),
+ CmykaExt = ((int)0X800D),
+ Bgr = ((int)0X80e0),
+ Bgra = ((int)0X80e1),
+ Ycrcb422Sgix = ((int)0X81bb),
+ Ycrcb444Sgix = ((int)0X81bc),
+ Rg = ((int)0X8227),
+ RgInteger = ((int)0X8228),
+ R5G6B5IccSgix = ((int)0X8466),
+ R5G6B5A8IccSgix = ((int)0X8467),
+ Alpha16IccSgix = ((int)0X8468),
+ Luminance16IccSgix = ((int)0X8469),
+ Luminance16Alpha8IccSgix = ((int)0X846b),
+ DepthStencil = ((int)0X84f9),
+ RedInteger = ((int)0X8d94),
+ GreenInteger = ((int)0X8d95),
+ BlueInteger = ((int)0X8d96),
+ AlphaInteger = ((int)0X8d97),
+ RgbInteger = ((int)0X8d98),
+ RgbaInteger = ((int)0X8d99),
+ BgrInteger = ((int)0X8d9a),
+ BgraInteger = ((int)0X8d9b),
}
public enum PixelMap
{
PixelMapIToI = ((int)0X0c70),
- PixelMapIToA = ((int)0X0c75),
- PixelMapIToB = ((int)0X0c74),
- PixelMapIToR = ((int)0X0c72),
- PixelMapBToB = ((int)0X0c78),
- PixelMapRToR = ((int)0X0c76),
- PixelMapIToG = ((int)0X0c73),
- PixelMapGToG = ((int)0X0c77),
- PixelMapAToA = ((int)0X0c79),
PixelMapSToS = ((int)0X0c71),
+ PixelMapIToR = ((int)0X0c72),
+ PixelMapIToG = ((int)0X0c73),
+ PixelMapIToB = ((int)0X0c74),
+ PixelMapIToA = ((int)0X0c75),
+ PixelMapRToR = ((int)0X0c76),
+ PixelMapGToG = ((int)0X0c77),
+ PixelMapBToB = ((int)0X0c78),
+ PixelMapAToA = ((int)0X0c79),
}
public enum PixelStoreParameter
{
- UnpackSkipImagesExt = ((int)0X806D),
- PackImageHeight = ((int)0X806c),
- PackSkipImages = ((int)0X806b),
- PackSkipVolumesSgis = ((int)0X8130),
- PixelTileGridHeightSgix = ((int)0X8143),
- PackSkipPixels = ((int)0X0D04),
- UnpackImageHeight = ((int)0X806e),
- UnpackSkipVolumesSgis = ((int)0X8132),
- PackImageDepthSgis = ((int)0X8131),
- UnpackImageHeightExt = ((int)0X806e),
- PackImageHeightExt = ((int)0X806c),
- PackSkipImagesExt = ((int)0X806b),
- PixelTileCacheSizeSgix = ((int)0X8145),
- PixelTileGridDepthSgix = ((int)0X8144),
- PackSwapBytes = ((int)0X0D00),
- UnpackSkipPixels = ((int)0X0cf4),
- UnpackLsbFirst = ((int)0X0cf1),
- PixelTileHeightSgix = ((int)0X8141),
- PixelTileGridWidthSgix = ((int)0X8142),
- PackAlignment = ((int)0X0D05),
- UnpackResampleSgix = ((int)0X842D),
- UnpackAlignment = ((int)0X0cf5),
- UnpackRowLength = ((int)0X0cf2),
UnpackSwapBytes = ((int)0X0cf0),
- PackSubsampleRateSgix = ((int)0X85a0),
- PackResampleSgix = ((int)0X842c),
+ UnpackLsbFirst = ((int)0X0cf1),
+ UnpackRowLength = ((int)0X0cf2),
UnpackSkipRows = ((int)0X0cf3),
- UnpackImageDepthSgis = ((int)0X8133),
+ UnpackSkipPixels = ((int)0X0cf4),
+ UnpackAlignment = ((int)0X0cf5),
+ PackSwapBytes = ((int)0X0D00),
PackLsbFirst = ((int)0X0D01),
- UnpackSubsampleRateSgix = ((int)0X85a1),
- UnpackSkipImages = ((int)0X806d),
PackRowLength = ((int)0X0D02),
PackSkipRows = ((int)0X0D03),
+ PackSkipPixels = ((int)0X0D04),
+ PackAlignment = ((int)0X0D05),
+ PackSkipImages = ((int)0X806b),
+ PackSkipImagesExt = ((int)0X806b),
+ PackImageHeight = ((int)0X806c),
+ PackImageHeightExt = ((int)0X806c),
+ UnpackSkipImages = ((int)0X806d),
+ UnpackSkipImagesExt = ((int)0X806D),
+ UnpackImageHeight = ((int)0X806e),
+ UnpackImageHeightExt = ((int)0X806e),
+ PackSkipVolumesSgis = ((int)0X8130),
+ PackImageDepthSgis = ((int)0X8131),
+ UnpackSkipVolumesSgis = ((int)0X8132),
+ UnpackImageDepthSgis = ((int)0X8133),
PixelTileWidthSgix = ((int)0X8140),
+ PixelTileHeightSgix = ((int)0X8141),
+ PixelTileGridWidthSgix = ((int)0X8142),
+ PixelTileGridHeightSgix = ((int)0X8143),
+ PixelTileGridDepthSgix = ((int)0X8144),
+ PixelTileCacheSizeSgix = ((int)0X8145),
+ PackResampleSgix = ((int)0X842c),
+ UnpackResampleSgix = ((int)0X842D),
+ PackSubsampleRateSgix = ((int)0X85a0),
+ UnpackSubsampleRateSgix = ((int)0X85a1),
}
public enum PixelStoreResampleMode
{
+ ResampleReplicateSgix = ((int)0X842e),
ResampleZeroFillSgix = ((int)0X842f),
ResampleDecimateSgix = ((int)0X8430),
- ResampleReplicateSgix = ((int)0X842e),
}
public enum PixelStoreSubsampleRate
{
- PixelSubsample2424Sgix = ((int)0X85a3),
PixelSubsample4444Sgix = ((int)0X85a2),
+ PixelSubsample2424Sgix = ((int)0X85a3),
PixelSubsample4242Sgix = ((int)0X85a4),
}
public enum PixelTexGenMode
{
- LuminanceAlpha = ((int)0X190a),
- PixelTexGenAlphaMsSgix = ((int)0X818a),
+ None = ((int)0),
+ Rgb = ((int)0X1907),
Rgba = ((int)0X1908),
+ Luminance = ((int)0X1909),
+ LuminanceAlpha = ((int)0X190a),
PixelTexGenAlphaReplaceSgix = ((int)0X8187),
PixelTexGenAlphaNoReplaceSgix = ((int)0X8188),
PixelTexGenAlphaLsSgix = ((int)0X8189),
- None = ((int)0),
- Luminance = ((int)0X1909),
- Rgb = ((int)0X1907),
+ PixelTexGenAlphaMsSgix = ((int)0X818a),
}
public enum PixelTexGenParameterNameSgis
@@ -1419,97 +1479,98 @@ namespace OpenTK.Graphics
public enum PixelTransferParameter
{
- PostConvolutionAlphaBiasExt = ((int)0X8023),
- PostColorMatrixGreenBiasSgi = ((int)0X80b9),
- PostColorMatrixAlphaScaleSgi = ((int)0X80b7),
- PostColorMatrixBlueBiasSgi = ((int)0X80ba),
- PostConvolutionGreenScaleExt = ((int)0X801D),
- PostConvolutionGreenBiasExt = ((int)0X8021),
- BlueBias = ((int)0X0D1b),
- BlueScale = ((int)0X0D1a),
- PostColorMatrixRedScaleSgi = ((int)0X80b4),
- PostConvolutionRedBiasExt = ((int)0X8020),
- AlphaBias = ((int)0X0D1D),
- AlphaScale = ((int)0X0D1c),
- GreenScale = ((int)0X0D18),
- RedBias = ((int)0X0D15),
- PostColorMatrixRedBiasSgi = ((int)0X80b8),
- IndexShift = ((int)0X0D12),
- RedScale = ((int)0X0D14),
- PostColorMatrixAlphaBiasSgi = ((int)0X80bb),
MapColor = ((int)0X0D10),
- PostConvolutionBlueBiasExt = ((int)0X8022),
- PostConvolutionBlueScaleExt = ((int)0X801e),
- PostConvolutionRedScaleExt = ((int)0X801c),
- PostColorMatrixGreenScaleSgi = ((int)0X80b5),
MapStencil = ((int)0X0D11),
- DepthBias = ((int)0X0D1f),
+ IndexShift = ((int)0X0D12),
IndexOffset = ((int)0X0D13),
- PostConvolutionAlphaScaleExt = ((int)0X801f),
- PostColorMatrixBlueScaleSgi = ((int)0X80b6),
- DepthScale = ((int)0X0D1e),
+ RedScale = ((int)0X0D14),
+ RedBias = ((int)0X0D15),
+ GreenScale = ((int)0X0D18),
GreenBias = ((int)0X0D19),
+ BlueScale = ((int)0X0D1a),
+ BlueBias = ((int)0X0D1b),
+ AlphaScale = ((int)0X0D1c),
+ AlphaBias = ((int)0X0D1D),
+ DepthScale = ((int)0X0D1e),
+ DepthBias = ((int)0X0D1f),
+ PostConvolutionRedScaleExt = ((int)0X801c),
+ PostConvolutionGreenScaleExt = ((int)0X801D),
+ PostConvolutionBlueScaleExt = ((int)0X801e),
+ PostConvolutionAlphaScaleExt = ((int)0X801f),
+ PostConvolutionRedBiasExt = ((int)0X8020),
+ PostConvolutionGreenBiasExt = ((int)0X8021),
+ PostConvolutionBlueBiasExt = ((int)0X8022),
+ PostConvolutionAlphaBiasExt = ((int)0X8023),
+ PostColorMatrixRedScaleSgi = ((int)0X80b4),
+ PostColorMatrixGreenScaleSgi = ((int)0X80b5),
+ PostColorMatrixBlueScaleSgi = ((int)0X80b6),
+ PostColorMatrixAlphaScaleSgi = ((int)0X80b7),
+ PostColorMatrixRedBiasSgi = ((int)0X80b8),
+ PostColorMatrixGreenBiasSgi = ((int)0X80b9),
+ PostColorMatrixBlueBiasSgi = ((int)0X80ba),
+ PostColorMatrixAlphaBiasSgi = ((int)0X80bb),
}
public enum PixelType
{
+ Byte = ((int)0X1400),
+ UnsignedByte = ((int)0X1401),
+ Short = ((int)0X1402),
+ UnsignedShort = ((int)0X1403),
+ Int = ((int)0X1404),
+ UnsignedInt = ((int)0X1405),
+ Float = ((int)0X1406),
+ HalfFloat = ((int)0X140b),
Bitmap = ((int)0X1a00),
+ UnsignedByte332 = ((int)0X8032),
UnsignedByte332Ext = ((int)0X8032),
UnsignedShort4444 = ((int)0X8033),
- UnsignedInt8888 = ((int)0X8035),
- Short = ((int)0X1402),
- UnsignedInt2101010Reversed = ((int)0X8368),
- UnsignedInt1010102Ext = ((int)0X8036),
- HalfFloat = ((int)0X140b),
- UnsignedShort5551 = ((int)0X8034),
- UnsignedInt8888Reversed = ((int)0X8367),
- UnsignedShort5551Ext = ((int)0X8034),
- UnsignedInt1010102 = ((int)0X8036),
- UnsignedShort565 = ((int)0X8363),
- Byte = ((int)0X1400),
- UnsignedShort565Reversed = ((int)0X8364),
- UnsignedInt = ((int)0X1405),
- UnsignedByte = ((int)0X1401),
- UnsignedByte233Reversed = ((int)0X8362),
- Int = ((int)0X1404),
UnsignedShort4444Ext = ((int)0X8033),
- UnsignedByte332 = ((int)0X8032),
- UnsignedShort1555Reversed = ((int)0X8366),
- Float = ((int)0X1406),
- UnsignedShort4444Reversed = ((int)0X8365),
+ UnsignedShort5551 = ((int)0X8034),
+ UnsignedShort5551Ext = ((int)0X8034),
+ UnsignedInt8888 = ((int)0X8035),
UnsignedInt8888Ext = ((int)0X8035),
- UnsignedShort = ((int)0X1403),
+ UnsignedInt1010102 = ((int)0X8036),
+ UnsignedInt1010102Ext = ((int)0X8036),
+ UnsignedByte233Reversed = ((int)0X8362),
+ UnsignedShort565 = ((int)0X8363),
+ UnsignedShort565Reversed = ((int)0X8364),
+ UnsignedShort4444Reversed = ((int)0X8365),
+ UnsignedShort1555Reversed = ((int)0X8366),
+ UnsignedInt8888Reversed = ((int)0X8367),
+ UnsignedInt2101010Reversed = ((int)0X8368),
+ UnsignedInt248 = ((int)0X84fa),
}
public enum PointParameterNameSgis
{
- DistanceAttenuationSgis = ((int)0X8129),
- PointSizeMaxSgis = ((int)0X8127),
PointSizeMinSgis = ((int)0X8126),
+ PointSizeMaxSgis = ((int)0X8127),
PointFadeThresholdSizeSgis = ((int)0X8128),
+ DistanceAttenuationSgis = ((int)0X8129),
}
public enum PolygonMode
{
- Line = ((int)0X1b01),
Point = ((int)0X1b00),
+ Line = ((int)0X1b01),
Fill = ((int)0X1b02),
}
public enum ReadBufferMode
{
+ FrontLeft = ((int)0X0400),
FrontRight = ((int)0X0401),
- Right = ((int)0X0407),
BackLeft = ((int)0X0402),
BackRight = ((int)0X0403),
- Left = ((int)0X0406),
- Aux0 = ((int)0X0409),
- Back = ((int)0X0405),
- Aux3 = ((int)0X040c),
- Aux1 = ((int)0X040a),
- FrontLeft = ((int)0X0400),
- Aux2 = ((int)0X040b),
Front = ((int)0X0404),
+ Back = ((int)0X0405),
+ Left = ((int)0X0406),
+ Right = ((int)0X0407),
+ Aux0 = ((int)0X0409),
+ Aux1 = ((int)0X040a),
+ Aux2 = ((int)0X040b),
+ Aux3 = ((int)0X040c),
}
public enum RenderingMode
@@ -1521,13 +1582,13 @@ namespace OpenTK.Graphics
public enum SamplePatternSgis
{
- Gl4Pass0Sgis = ((int)0X80a4),
- Gl4Pass1Sgis = ((int)0X80a5),
- Gl4Pass3Sgis = ((int)0X80a7),
- Gl4Pass2Sgis = ((int)0X80a6),
- Gl2Pass1Sgis = ((int)0X80a3),
Gl1PassSgis = ((int)0X80a1),
Gl2Pass0Sgis = ((int)0X80a2),
+ Gl2Pass1Sgis = ((int)0X80a3),
+ Gl4Pass0Sgis = ((int)0X80a4),
+ Gl4Pass1Sgis = ((int)0X80a5),
+ Gl4Pass2Sgis = ((int)0X80a6),
+ Gl4Pass3Sgis = ((int)0X80a7),
}
public enum SeparableTargetExt
@@ -1544,93 +1605,93 @@ namespace OpenTK.Graphics
public enum StencilFunction
{
Never = ((int)0X0200),
- Equal = ((int)0X0202),
- Always = ((int)0X0207),
Less = ((int)0X0201),
- Gequal = ((int)0X0206),
+ Equal = ((int)0X0202),
Lequal = ((int)0X0203),
- Notequal = ((int)0X0205),
Greater = ((int)0X0204),
+ Notequal = ((int)0X0205),
+ Gequal = ((int)0X0206),
+ Always = ((int)0X0207),
}
public enum StencilOp
{
- DecrWrap = ((int)0X8508),
- Replace = ((int)0X1e01),
- IncrWrap = ((int)0X8507),
- Incr = ((int)0X1e02),
Zero = ((int)0),
- Decr = ((int)0X1e03),
- Keep = ((int)0X1e00),
Invert = ((int)0X150a),
+ Keep = ((int)0X1e00),
+ Replace = ((int)0X1e01),
+ Incr = ((int)0X1e02),
+ Decr = ((int)0X1e03),
+ IncrWrap = ((int)0X8507),
+ DecrWrap = ((int)0X8508),
}
public enum StringName
{
- ShadingLanguageVersion = ((int)0X8b8c),
- Renderer = ((int)0X1f01),
- Extensions = ((int)0X1f03),
- Version = ((int)0X1f02),
Vendor = ((int)0X1f00),
+ Renderer = ((int)0X1f01),
+ Version = ((int)0X1f02),
+ Extensions = ((int)0X1f03),
+ ShadingLanguageVersion = ((int)0X8b8c),
}
public enum TexCoordPointerType
{
Short = ((int)0X1402),
+ Int = ((int)0X1404),
Float = ((int)0X1406),
Double = ((int)0X140a),
- Int = ((int)0X1404),
}
public enum TextureCoordName
{
- R = ((int)0X2002),
S = ((int)0X2000),
- Q = ((int)0X2003),
T = ((int)0X2001),
+ R = ((int)0X2002),
+ Q = ((int)0X2003),
}
public enum TextureEnvMode
{
- TextureEnvBiasSgix = ((int)0X80be),
- Blend = ((int)0X0be2),
- Decal = ((int)0X2101),
Add = ((int)0X0104),
- Modulate = ((int)0X2100),
+ Blend = ((int)0X0be2),
Replace = ((int)0X1e01),
- Combine = ((int)0X8570),
+ Modulate = ((int)0X2100),
+ Decal = ((int)0X2101),
ReplaceExt = ((int)0X8062),
+ TextureEnvBiasSgix = ((int)0X80be),
+ Combine = ((int)0X8570),
}
public enum TextureEnvParameter
{
- Operand0Alpha = ((int)0X8598),
- TextureEnvMode = ((int)0X2200),
- Src0Alpha = ((int)0X8588),
- Src1Alpha = ((int)0X8589),
- Operand2Rgb = ((int)0X8592),
- Operand2Alpha = ((int)0X859a),
- Operand0Rgb = ((int)0X8590),
AlphaScale = ((int)0X0D1c),
- Operand1Alpha = ((int)0X8599),
+ TextureEnvMode = ((int)0X2200),
+ TextureEnvColor = ((int)0X2201),
+ TextureLodBias = ((int)0X8501),
+ CombineRgb = ((int)0X8571),
+ CombineAlpha = ((int)0X8572),
RgbScale = ((int)0X8573),
+ Source0Rgb = ((int)0X8580),
Src1Rgb = ((int)0X8581),
Src2Rgb = ((int)0X8582),
- TextureEnvColor = ((int)0X2201),
+ Src0Alpha = ((int)0X8588),
+ Src1Alpha = ((int)0X8589),
Src2Alpha = ((int)0X858a),
- Source0Rgb = ((int)0X8580),
- CombineAlpha = ((int)0X8572),
+ Operand0Rgb = ((int)0X8590),
Operand1Rgb = ((int)0X8591),
+ Operand2Rgb = ((int)0X8592),
+ Operand0Alpha = ((int)0X8598),
+ Operand1Alpha = ((int)0X8599),
+ Operand2Alpha = ((int)0X859a),
CoordReplace = ((int)0X8862),
- CombineRgb = ((int)0X8571),
- TextureLodBias = ((int)0X8501),
}
public enum TextureEnvTarget
{
- PointSprite = ((int)0X8861),
- TextureFilterControl = ((int)0X8500),
TextureEnv = ((int)0X2300),
+ TextureFilterControl = ((int)0X8500),
+ PointSprite = ((int)0X8861),
}
public enum TextureFilterFuncSgis
@@ -1640,310 +1701,362 @@ namespace OpenTK.Graphics
public enum TextureGenMode
{
- NormalMap = ((int)0X8511),
- SphereMap = ((int)0X2402),
- ObjectLinear = ((int)0X2401),
- EyeDistanceToLineSgis = ((int)0X81f2),
- EyeDistanceToPointSgis = ((int)0X81f0),
- ObjectDistanceToLineSgis = ((int)0X81f3),
- ReflectionMap = ((int)0X8512),
EyeLinear = ((int)0X2400),
+ ObjectLinear = ((int)0X2401),
+ SphereMap = ((int)0X2402),
+ EyeDistanceToPointSgis = ((int)0X81f0),
ObjectDistanceToPointSgis = ((int)0X81f1),
+ EyeDistanceToLineSgis = ((int)0X81f2),
+ ObjectDistanceToLineSgis = ((int)0X81f3),
+ NormalMap = ((int)0X8511),
+ ReflectionMap = ((int)0X8512),
}
public enum TextureGenParameter
{
+ TextureGenMode = ((int)0X2500),
ObjectPlane = ((int)0X2501),
EyePlane = ((int)0X2502),
EyePointSgis = ((int)0X81f4),
ObjectPointSgis = ((int)0X81f5),
- TextureGenMode = ((int)0X2500),
- ObjectLineSgis = ((int)0X81f7),
EyeLineSgis = ((int)0X81f6),
+ ObjectLineSgis = ((int)0X81f7),
}
public enum TextureMagFilter
{
- PixelTexGenQCeilingSgix = ((int)0X8184),
- Filter4Sgis = ((int)0X8146),
- LinearDetailSgis = ((int)0X8097),
- LinearSharpenSgis = ((int)0X80ad),
- Linear = ((int)0X2601),
- LinearSharpenColorSgis = ((int)0X80af),
- PixelTexGenQRoundSgix = ((int)0X8185),
Nearest = ((int)0X2600),
- LinearSharpenAlphaSgis = ((int)0X80ae),
- LinearDetailColorSgis = ((int)0X8099),
- PixelTexGenQFloorSgix = ((int)0X8186),
+ Linear = ((int)0X2601),
+ LinearDetailSgis = ((int)0X8097),
LinearDetailAlphaSgis = ((int)0X8098),
+ LinearDetailColorSgis = ((int)0X8099),
+ LinearSharpenSgis = ((int)0X80ad),
+ LinearSharpenAlphaSgis = ((int)0X80ae),
+ LinearSharpenColorSgis = ((int)0X80af),
+ Filter4Sgis = ((int)0X8146),
+ PixelTexGenQCeilingSgix = ((int)0X8184),
+ PixelTexGenQRoundSgix = ((int)0X8185),
+ PixelTexGenQFloorSgix = ((int)0X8186),
}
public enum TextureMinFilter
{
- LinearClipmapNearestSgix = ((int)0X844f),
+ Nearest = ((int)0X2600),
+ Linear = ((int)0X2601),
+ NearestMipmapNearest = ((int)0X2700),
+ LinearMipmapNearest = ((int)0X2701),
+ NearestMipmapLinear = ((int)0X2702),
+ LinearMipmapLinear = ((int)0X2703),
Filter4Sgis = ((int)0X8146),
LinearClipmapLinearSgix = ((int)0X8170),
- NearestMipmapLinear = ((int)0X2702),
- NearestClipmapNearestSgix = ((int)0X844D),
- Linear = ((int)0X2601),
- LinearMipmapNearest = ((int)0X2701),
- Nearest = ((int)0X2600),
PixelTexGenQCeilingSgix = ((int)0X8184),
PixelTexGenQRoundSgix = ((int)0X8185),
PixelTexGenQFloorSgix = ((int)0X8186),
- NearestMipmapNearest = ((int)0X2700),
+ NearestClipmapNearestSgix = ((int)0X844D),
NearestClipmapLinearSgix = ((int)0X844e),
- LinearMipmapLinear = ((int)0X2703),
+ LinearClipmapNearestSgix = ((int)0X844f),
}
public enum TextureParameterName
{
- ShadowAmbientSgix = ((int)0X80bf),
- QuadTextureSelectSgis = ((int)0X8125),
- DetailTextureLevelSgis = ((int)0X809a),
- TextureMaxClampTSgix = ((int)0X836a),
- TextureCompareFailValue = ((int)0X80bf),
- TextureCompareMode = ((int)0X884c),
- TexturePriority = ((int)0X8066),
- TextureLodBiasTSgix = ((int)0X818f),
- TextureClipmapCenterSgix = ((int)0X8171),
- TextureLodBiasRSgix = ((int)0X8190),
- TextureBaseLevel = ((int)0X813c),
- TextureLodBiasSSgix = ((int)0X818e),
- TextureClipmapDepthSgix = ((int)0X8176),
- DepthTextureMode = ((int)0X884b),
- TextureClipmapOffsetSgix = ((int)0X8173),
- TextureWrapQSgis = ((int)0X8137),
- TextureClipmapFrameSgix = ((int)0X8172),
- TextureWrapS = ((int)0X2802),
- TextureMinFilter = ((int)0X2801),
- TextureWrapRExt = ((int)0X8072),
- TextureWrapR = ((int)0X8072),
- TextureCompareSgix = ((int)0X819a),
- TextureMaxClampSSgix = ((int)0X8369),
- DetailTextureModeSgis = ((int)0X809b),
- TextureMaxLevel = ((int)0X813D),
- DualTextureSelectSgis = ((int)0X8124),
- TextureClipmapLodOffsetSgix = ((int)0X8175),
- TextureMaxLod = ((int)0X813b),
- PostTextureFilterBiasSgix = ((int)0X8179),
- TextureCompareOperatorSgix = ((int)0X819b),
- TextureMaxClampRSgix = ((int)0X836b),
- ClampToEdge = ((int)0X812f),
- TextureMinLod = ((int)0X813a),
- GenerateMipmapSgis = ((int)0X8191),
- TextureDepth = ((int)0X8071),
- GenerateMipmap = ((int)0X8191),
- PostTextureFilterScaleSgix = ((int)0X817a),
TextureBorderColor = ((int)0X1004),
- TextureCompareFunc = ((int)0X884d),
- TextureClipmapVirtualDepthSgix = ((int)0X8174),
+ Red = ((int)0X1903),
TextureMagFilter = ((int)0X2800),
+ TextureMinFilter = ((int)0X2801),
+ TextureWrapS = ((int)0X2802),
TextureWrapT = ((int)0X2803),
+ TexturePriority = ((int)0X8066),
+ TextureDepth = ((int)0X8071),
+ TextureWrapR = ((int)0X8072),
+ TextureWrapRExt = ((int)0X8072),
+ DetailTextureLevelSgis = ((int)0X809a),
+ DetailTextureModeSgis = ((int)0X809b),
+ ShadowAmbientSgix = ((int)0X80bf),
+ TextureCompareFailValue = ((int)0X80bf),
+ DualTextureSelectSgis = ((int)0X8124),
+ QuadTextureSelectSgis = ((int)0X8125),
ClampToBorder = ((int)0X812d),
+ ClampToEdge = ((int)0X812f),
+ TextureWrapQSgis = ((int)0X8137),
+ TextureMinLod = ((int)0X813a),
+ TextureMaxLod = ((int)0X813b),
+ TextureBaseLevel = ((int)0X813c),
+ TextureMaxLevel = ((int)0X813D),
+ TextureClipmapCenterSgix = ((int)0X8171),
+ TextureClipmapFrameSgix = ((int)0X8172),
+ TextureClipmapOffsetSgix = ((int)0X8173),
+ TextureClipmapVirtualDepthSgix = ((int)0X8174),
+ TextureClipmapLodOffsetSgix = ((int)0X8175),
+ TextureClipmapDepthSgix = ((int)0X8176),
+ PostTextureFilterBiasSgix = ((int)0X8179),
+ PostTextureFilterScaleSgix = ((int)0X817a),
+ TextureLodBiasSSgix = ((int)0X818e),
+ TextureLodBiasTSgix = ((int)0X818f),
+ TextureLodBiasRSgix = ((int)0X8190),
+ GenerateMipmap = ((int)0X8191),
+ GenerateMipmapSgis = ((int)0X8191),
+ TextureCompareSgix = ((int)0X819a),
+ TextureCompareOperatorSgix = ((int)0X819b),
+ TextureMaxClampSSgix = ((int)0X8369),
+ TextureMaxClampTSgix = ((int)0X836a),
+ TextureMaxClampRSgix = ((int)0X836b),
+ DepthTextureMode = ((int)0X884b),
+ TextureCompareMode = ((int)0X884c),
+ TextureCompareFunc = ((int)0X884d),
}
public enum TextureTarget
{
- TextureCubeMapNegativeX = ((int)0X8516),
- TextureBaseLevelSgis = ((int)0X813c),
- TextureCubeMapNegativeZ = ((int)0X851a),
- TextureBindingCubeMap = ((int)0X8514),
- TextureMaxLevelSgis = ((int)0X813D),
- ProxyTexture4DSgis = ((int)0X8135),
- DetailTexture2DSgis = ((int)0X8095),
- TextureRectangleArb = ((int)0X84f5),
- ProxyTextureCubeMap = ((int)0X851b),
- TextureCubeMap = ((int)0X8513),
- ProxyTexture3DExt = ((int)0X8070),
- Texture2D = ((int)0X0De1),
- Texture4DSgis = ((int)0X8134),
- TextureMinLodSgis = ((int)0X813a),
Texture1D = ((int)0X0De0),
- ProxyTexture3D = ((int)0X8070),
- ProxyTexture2D = ((int)0X8064),
+ Texture2D = ((int)0X0De1),
ProxyTexture1D = ((int)0X8063),
- Texture3DExt = ((int)0X806f),
+ ProxyTexture2D = ((int)0X8064),
Texture3D = ((int)0X806f),
+ ProxyTexture3D = ((int)0X8070),
+ DetailTexture2DSgis = ((int)0X8095),
+ Texture4DSgis = ((int)0X8134),
+ ProxyTexture4DSgis = ((int)0X8135),
+ TextureMinLod = ((int)0X813a),
+ TextureMaxLod = ((int)0X813b),
+ TextureBaseLevel = ((int)0X813c),
+ TextureMaxLevel = ((int)0X813d),
+ TextureRectangleArb = ((int)0X84f5),
TextureRectangleNv = ((int)0X84f5),
- TextureMaxLodSgis = ((int)0X813b),
+ TextureCubeMap = ((int)0X8513),
+ TextureBindingCubeMap = ((int)0X8514),
+ TextureCubeMapPositiveX = ((int)0X8515),
+ TextureCubeMapNegativeX = ((int)0X8516),
+ TextureCubeMapPositiveY = ((int)0X8517),
TextureCubeMapNegativeY = ((int)0X8518),
TextureCubeMapPositiveZ = ((int)0X8519),
- TextureCubeMapPositiveX = ((int)0X8515),
- TextureCubeMapPositiveY = ((int)0X8517),
+ TextureCubeMapNegativeZ = ((int)0X851a),
+ ProxyTextureCubeMap = ((int)0X851b),
+ Texture1DArray = ((int)0X8c18),
+ ProxyTexture1DArray = ((int)0X8c19),
+ Texture2DArray = ((int)0X8c1a),
+ ProxyTexture2DArray = ((int)0X8c1b),
}
public enum TextureWrapMode
{
- ClampToBorder = ((int)0X812d),
- ClampToEdge = ((int)0X812f),
Clamp = ((int)0X2900),
Repeat = ((int)0X2901),
+ ClampToBorder = ((int)0X812d),
+ ClampToEdge = ((int)0X812f),
MirroredRepeat = ((int)0X8370),
}
public enum PixelInternalFormat
{
- LuminanceAlphaIccSgix = ((int)0X8465),
- Rgb4 = ((int)0X804f),
- Intensity16IccSgix = ((int)0X846a),
DepthComponent = ((int)0X1902),
- Alpha8 = ((int)0X803c),
- LuminanceAlpha = ((int)0X190a),
- DualIntensity4Sgis = ((int)0X8118),
- QuadLuminance4Sgis = ((int)0X8120),
- Rgb2Ext = ((int)0X804e),
- RgbaIccSgix = ((int)0X8461),
- Alpha16IccSgix = ((int)0X8468),
- CompressedAlpha = ((int)0X84e9),
- Luminance12Alpha12 = ((int)0X8047),
- Luminance6Alpha2 = ((int)0X8044),
- Alpha12 = ((int)0X803d),
- QuadLuminance8Sgis = ((int)0X8121),
- CompressedSrgbAlphaS3tcDxt5Ext = ((int)0X8c4f),
- Alpha16 = ((int)0X803e),
- Rgba2 = ((int)0X8055),
- Srgb = ((int)0X8c40),
- CompressedLuminance = ((int)0X84ea),
- Luminance8Alpha8 = ((int)0X8045),
- Sluminance8 = ((int)0X8c47),
- R5G6B5IccSgix = ((int)0X8466),
- Sluminance8Alpha8 = ((int)0X8c45),
- R3G3B2 = ((int)0X2a10),
- R5G6B5A8IccSgix = ((int)0X8467),
- Luminance4Alpha4 = ((int)0X8043),
- Alpha4 = ((int)0X803b),
- DepthComponent32Sgix = ((int)0X81a7),
- Luminance16Alpha8IccSgix = ((int)0X846b),
- DualIntensity8Sgis = ((int)0X8119),
- Rgba8 = ((int)0X8058),
Alpha = ((int)0X1906),
- Rgb12 = ((int)0X8053),
- CompressedLuminanceAlpha = ((int)0X84eb),
- Rgba4 = ((int)0X8056),
- Luminance4 = ((int)0X803f),
- Sluminance = ((int)0X8c46),
- Two = ((int)2),
- Intensity8 = ((int)0X804b),
- Luminance16 = ((int)0X8042),
- DepthComponent16Sgix = ((int)0X81a5),
- DualAlpha16Sgis = ((int)0X8113),
- Luminance12 = ((int)0X8041),
- Luminance16Alpha16 = ((int)0X8048),
- SluminanceAlpha = ((int)0X8c44),
- Intensity4 = ((int)0X804a),
- LuminanceIccSgix = ((int)0X8463),
- CompressedSrgbAlphaS3tcDxt3Ext = ((int)0X8c4e),
- DualLuminance4Sgis = ((int)0X8114),
- CompressedSrgbAlpha = ((int)0X8c49),
- CompressedIntensity = ((int)0X84ec),
- Srgb8 = ((int)0X8c41),
- DualLuminanceAlpha8Sgis = ((int)0X811D),
- DualAlpha12Sgis = ((int)0X8112),
- Four = ((int)4),
- QuadIntensity4Sgis = ((int)0X8122),
- CompressedSluminanceAlpha = ((int)0X8c4b),
- Rgb5A1 = ((int)0X8057),
- DepthComponent24 = ((int)0X81a6),
- Luminance16IccSgix = ((int)0X8469),
- DualLuminance8Sgis = ((int)0X8115),
- SrgbAlpha = ((int)0X8c42),
- CompressedSluminance = ((int)0X8c4a),
- Rgba16 = ((int)0X805b),
- RgbIccSgix = ((int)0X8460),
- Srgb8Alpha8 = ((int)0X8c43),
- DepthComponent32 = ((int)0X81a7),
- CompressedRgba = ((int)0X84ee),
- Intensity = ((int)0X8049),
- CompressedSrgb = ((int)0X8c48),
- CompressedSrgbAlphaS3tcDxt1Ext = ((int)0X8c4d),
- DepthComponent16 = ((int)0X81a5),
- DualLuminance12Sgis = ((int)0X8116),
- Rgb10A2 = ((int)0X8059),
- DualAlpha4Sgis = ((int)0X8110),
- Rgb5 = ((int)0X8050),
+ Rgb = ((int)0X1907),
+ Rgba = ((int)0X1908),
Luminance = ((int)0X1909),
- CompressedRgb = ((int)0X84ed),
- One = ((int)1),
- AlphaIccSgix = ((int)0X8462),
+ LuminanceAlpha = ((int)0X190a),
+ R3G3B2 = ((int)0X2a10),
+ Alpha4 = ((int)0X803b),
+ Alpha8 = ((int)0X803c),
+ Alpha12 = ((int)0X803d),
+ Alpha16 = ((int)0X803e),
+ Luminance4 = ((int)0X803f),
+ Luminance8 = ((int)0X8040),
+ Luminance12 = ((int)0X8041),
+ Luminance16 = ((int)0X8042),
+ Luminance4Alpha4 = ((int)0X8043),
+ Luminance6Alpha2 = ((int)0X8044),
+ Luminance8Alpha8 = ((int)0X8045),
+ Luminance12Alpha4 = ((int)0X8046),
+ Luminance12Alpha12 = ((int)0X8047),
+ Luminance16Alpha16 = ((int)0X8048),
+ Intensity = ((int)0X8049),
+ Intensity4 = ((int)0X804a),
+ Intensity8 = ((int)0X804b),
+ Intensity12 = ((int)0X804c),
+ Intensity16 = ((int)0X804d),
+ Rgb2Ext = ((int)0X804e),
+ Rgb4 = ((int)0X804f),
+ Rgb5 = ((int)0X8050),
Rgb8 = ((int)0X8051),
Rgb10 = ((int)0X8052),
- Three = ((int)3),
+ Rgb12 = ((int)0X8053),
Rgb16 = ((int)0X8054),
+ Rgba2 = ((int)0X8055),
+ Rgba4 = ((int)0X8056),
+ Rgb5A1 = ((int)0X8057),
+ Rgba8 = ((int)0X8058),
+ Rgb10A2 = ((int)0X8059),
Rgba12 = ((int)0X805a),
- DualLuminanceAlpha4Sgis = ((int)0X811c),
- IntensityIccSgix = ((int)0X8464),
+ Rgba16 = ((int)0X805b),
+ DualAlpha4Sgis = ((int)0X8110),
DualAlpha8Sgis = ((int)0X8111),
- QuadIntensity8Sgis = ((int)0X8123),
+ DualAlpha12Sgis = ((int)0X8112),
+ DualAlpha16Sgis = ((int)0X8113),
+ DualLuminance4Sgis = ((int)0X8114),
+ DualLuminance8Sgis = ((int)0X8115),
+ DualLuminance12Sgis = ((int)0X8116),
DualLuminance16Sgis = ((int)0X8117),
- CompressedSrgbS3tcDxt1Ext = ((int)0X8c4c),
- Luminance12Alpha4 = ((int)0X8046),
- QuadAlpha8Sgis = ((int)0X811f),
- DepthComponent24Sgix = ((int)0X81a6),
+ DualIntensity4Sgis = ((int)0X8118),
+ DualIntensity8Sgis = ((int)0X8119),
DualIntensity12Sgis = ((int)0X811a),
- Rgb = ((int)0X1907),
- Luminance8 = ((int)0X8040),
DualIntensity16Sgis = ((int)0X811b),
- Intensity12 = ((int)0X804c),
+ DualLuminanceAlpha4Sgis = ((int)0X811c),
+ DualLuminanceAlpha8Sgis = ((int)0X811D),
QuadAlpha4Sgis = ((int)0X811e),
- Intensity16 = ((int)0X804d),
- Rgba = ((int)0X1908),
+ QuadAlpha8Sgis = ((int)0X811f),
+ QuadLuminance4Sgis = ((int)0X8120),
+ QuadLuminance8Sgis = ((int)0X8121),
+ QuadIntensity4Sgis = ((int)0X8122),
+ QuadIntensity8Sgis = ((int)0X8123),
+ DepthComponent16 = ((int)0X81a5),
+ DepthComponent16Sgix = ((int)0X81a5),
+ DepthComponent24 = ((int)0X81a6),
+ DepthComponent24Sgix = ((int)0X81a6),
+ DepthComponent32 = ((int)0X81a7),
+ DepthComponent32Sgix = ((int)0X81a7),
+ CompressedRed = ((int)0X8225),
+ CompressedRg = ((int)0X8226),
+ R8 = ((int)0X8229),
+ R16 = ((int)0X822a),
+ Rg8 = ((int)0X822b),
+ Rg16 = ((int)0X822c),
+ R16f = ((int)0X822D),
+ R32f = ((int)0X822e),
+ Rg16f = ((int)0X822f),
+ Rg32f = ((int)0X8230),
+ R8i = ((int)0X8231),
+ R8ui = ((int)0X8232),
+ R16i = ((int)0X8233),
+ R16ui = ((int)0X8234),
+ R32i = ((int)0X8235),
+ R32ui = ((int)0X8236),
+ Rg8i = ((int)0X8237),
+ Rg8ui = ((int)0X8238),
+ Rg16i = ((int)0X8239),
+ Rg16ui = ((int)0X823a),
+ Rg32i = ((int)0X823b),
+ Rg32ui = ((int)0X823c),
+ RgbIccSgix = ((int)0X8460),
+ RgbaIccSgix = ((int)0X8461),
+ AlphaIccSgix = ((int)0X8462),
+ LuminanceIccSgix = ((int)0X8463),
+ IntensityIccSgix = ((int)0X8464),
+ LuminanceAlphaIccSgix = ((int)0X8465),
+ R5G6B5IccSgix = ((int)0X8466),
+ R5G6B5A8IccSgix = ((int)0X8467),
+ Alpha16IccSgix = ((int)0X8468),
+ Luminance16IccSgix = ((int)0X8469),
+ Intensity16IccSgix = ((int)0X846a),
+ Luminance16Alpha8IccSgix = ((int)0X846b),
+ CompressedAlpha = ((int)0X84e9),
+ CompressedLuminance = ((int)0X84ea),
+ CompressedLuminanceAlpha = ((int)0X84eb),
+ CompressedIntensity = ((int)0X84ec),
+ CompressedRgb = ((int)0X84ed),
+ CompressedRgba = ((int)0X84ee),
+ DepthStencil = ((int)0X84f9),
+ Rgba32f = ((int)0X8814),
+ Rgb32f = ((int)0X8815),
+ Rgba16f = ((int)0X881a),
+ Rgb16f = ((int)0X881b),
+ Depth24Stencil8 = ((int)0X88f0),
+ R11fG11fB10f = ((int)0X8c3a),
+ Rgb9E5 = ((int)0X8c3d),
+ Srgb = ((int)0X8c40),
+ Srgb8 = ((int)0X8c41),
+ SrgbAlpha = ((int)0X8c42),
+ Srgb8Alpha8 = ((int)0X8c43),
+ SluminanceAlpha = ((int)0X8c44),
+ Sluminance8Alpha8 = ((int)0X8c45),
+ Sluminance = ((int)0X8c46),
+ Sluminance8 = ((int)0X8c47),
+ CompressedSrgb = ((int)0X8c48),
+ CompressedSrgbAlpha = ((int)0X8c49),
+ CompressedSluminance = ((int)0X8c4a),
+ CompressedSluminanceAlpha = ((int)0X8c4b),
+ CompressedSrgbS3tcDxt1Ext = ((int)0X8c4c),
+ CompressedSrgbAlphaS3tcDxt1Ext = ((int)0X8c4d),
+ CompressedSrgbAlphaS3tcDxt3Ext = ((int)0X8c4e),
+ CompressedSrgbAlphaS3tcDxt5Ext = ((int)0X8c4f),
+ DepthComponent32f = ((int)0X8cac),
+ Depth32fStencil8 = ((int)0X8cad),
+ Rgba32ui = ((int)0X8d70),
+ Rgb32ui = ((int)0X8d71),
+ Rgba16ui = ((int)0X8d76),
+ Rgb16ui = ((int)0X8d77),
+ Rgba8ui = ((int)0X8d7c),
+ Rgb8ui = ((int)0X8d7d),
+ Rgba32i = ((int)0X8d82),
+ Rgb32i = ((int)0X8d83),
+ Rgba16i = ((int)0X8d88),
+ Rgb16i = ((int)0X8d89),
+ Rgba8i = ((int)0X8d8e),
+ Rgb8i = ((int)0X8d8f),
+ Float32UnsignedInt248Rev = ((int)0X8Dad),
+ CompressedRedRgtc1 = ((int)0X8Dbb),
+ CompressedSignedRedRgtc1 = ((int)0X8Dbc),
+ CompressedRgRgtc2 = ((int)0X8Dbd),
+ CompressedSignedRgRgtc2 = ((int)0X8Dbe),
+ One = ((int)1),
+ Two = ((int)2),
+ Three = ((int)3),
+ Four = ((int)4),
}
public enum InterleavedArrayFormat
{
V2f = ((int)0X2a20),
- T2fC3fV3f = ((int)0X2a2a),
- C4ubV3f = ((int)0X2a23),
- C4ubV2f = ((int)0X2a22),
- T4fV4f = ((int)0X2a28),
- C4fN3fV3f = ((int)0X2a26),
- T2fC4fN3fV3f = ((int)0X2a2c),
- N3fV3f = ((int)0X2a25),
- C3fV3f = ((int)0X2a24),
- T2fV3f = ((int)0X2a27),
- T2fN3fV3f = ((int)0X2a2b),
- T2fC4ubV3f = ((int)0X2a29),
- T4fC4fN3fV4f = ((int)0X2a2d),
V3f = ((int)0X2a21),
+ C4ubV2f = ((int)0X2a22),
+ C4ubV3f = ((int)0X2a23),
+ C3fV3f = ((int)0X2a24),
+ N3fV3f = ((int)0X2a25),
+ C4fN3fV3f = ((int)0X2a26),
+ T2fV3f = ((int)0X2a27),
+ T4fV4f = ((int)0X2a28),
+ T2fC4ubV3f = ((int)0X2a29),
+ T2fC3fV3f = ((int)0X2a2a),
+ T2fN3fV3f = ((int)0X2a2b),
+ T2fC4fN3fV3f = ((int)0X2a2c),
+ T4fC4fN3fV4f = ((int)0X2a2d),
}
public enum VertexPointerType
{
Short = ((int)0X1402),
+ Int = ((int)0X1404),
Float = ((int)0X1406),
Double = ((int)0X140a),
- Int = ((int)0X1404),
}
public enum ClipPlaneName
{
- ClipPlane4 = ((int)0X3004),
+ ClipPlane0 = ((int)0X3000),
ClipPlane1 = ((int)0X3001),
- ClipPlane5 = ((int)0X3005),
ClipPlane2 = ((int)0X3002),
ClipPlane3 = ((int)0X3003),
- ClipPlane0 = ((int)0X3000),
+ ClipPlane4 = ((int)0X3004),
+ ClipPlane5 = ((int)0X3005),
}
public enum LightName
{
- FragmentLight3Sgix = ((int)0X840f),
- FragmentLight0Sgix = ((int)0X840c),
- Light2 = ((int)0X4002),
- FragmentLight7Sgix = ((int)0X8413),
- Light3 = ((int)0X4003),
- FragmentLight6Sgix = ((int)0X8412),
- FragmentLight4Sgix = ((int)0X8410),
- FragmentLight5Sgix = ((int)0X8411),
- FragmentLight1Sgix = ((int)0X840D),
Light0 = ((int)0X4000),
- FragmentLight2Sgix = ((int)0X840e),
+ Light1 = ((int)0X4001),
+ Light2 = ((int)0X4002),
+ Light3 = ((int)0X4003),
Light4 = ((int)0X4004),
Light5 = ((int)0X4005),
Light6 = ((int)0X4006),
Light7 = ((int)0X4007),
- Light1 = ((int)0X4001),
+ FragmentLight0Sgix = ((int)0X840c),
+ FragmentLight1Sgix = ((int)0X840D),
+ FragmentLight2Sgix = ((int)0X840e),
+ FragmentLight3Sgix = ((int)0X840f),
+ FragmentLight4Sgix = ((int)0X8410),
+ FragmentLight5Sgix = ((int)0X8411),
+ FragmentLight6Sgix = ((int)0X8412),
+ FragmentLight7Sgix = ((int)0X8413),
}
public enum ExtAbgr
@@ -1953,155 +2066,155 @@ namespace OpenTK.Graphics
public enum ExtBlendColor
{
- BlendColorExt = ((int)0X8005),
- ConstantColorExt = ((int)0X8001),
- BlendColor = ((int)0X8005),
- OneMinusConstantAlpha = ((int)0X8004),
- OneMinusConstantColorExt = ((int)0X8002),
ConstantColor = ((int)0X8001),
- ConstantAlphaExt = ((int)0X8003),
+ ConstantColorExt = ((int)0X8001),
OneMinusConstantColor = ((int)0X8002),
+ OneMinusConstantColorExt = ((int)0X8002),
ConstantAlpha = ((int)0X8003),
+ ConstantAlphaExt = ((int)0X8003),
+ OneMinusConstantAlpha = ((int)0X8004),
OneMinusConstantAlphaExt = ((int)0X8004),
+ BlendColor = ((int)0X8005),
+ BlendColorExt = ((int)0X8005),
}
public enum ExtBlendMinmax
{
FuncAdd = ((int)0X8006),
- Min = ((int)0X8007),
- Max = ((int)0X8008),
- BlendEquationExt = ((int)0X8009),
FuncAddExt = ((int)0X8006),
+ Min = ((int)0X8007),
+ MinExt = ((int)0X8007),
+ Max = ((int)0X8008),
MaxExt = ((int)0X8008),
BlendEquation = ((int)0X8009),
- MinExt = ((int)0X8007),
+ BlendEquationExt = ((int)0X8009),
}
public enum ExtBlendSubtract
{
+ FuncSubtract = ((int)0X800a),
+ FuncSubtractExt = ((int)0X800a),
FuncReverseSubtract = ((int)0X800b),
FuncReverseSubtractExt = ((int)0X800b),
- FuncSubtractExt = ((int)0X800a),
- FuncSubtract = ((int)0X800a),
}
public enum ExtCmyka
{
CmykExt = ((int)0X800c),
CmykaExt = ((int)0X800d),
- UnpackCmykHintExt = ((int)0X800f),
PackCmykHintExt = ((int)0X800e),
+ UnpackCmykHintExt = ((int)0X800f),
}
public enum ExtConvolution
{
- PostConvolutionGreenScaleExt = ((int)0X801d),
- PostConvolutionAlphaScale = ((int)0X801f),
- Separable2D = ((int)0X8012),
- PostConvolutionRedScaleExt = ((int)0X801c),
- MaxConvolutionWidthExt = ((int)0X801a),
- ConvolutionBorderMode = ((int)0X8013),
- MaxConvolutionHeightExt = ((int)0X801b),
- ReduceExt = ((int)0X8016),
- PostConvolutionGreenScale = ((int)0X801d),
- PostConvolutionAlphaBiasExt = ((int)0X8023),
- PostConvolutionBlueScale = ((int)0X801e),
- ConvolutionHeight = ((int)0X8019),
- ConvolutionWidthExt = ((int)0X8018),
- ConvolutionBorderModeExt = ((int)0X8013),
+ Convolution1D = ((int)0X8010),
+ Convolution1DExt = ((int)0X8010),
Convolution2D = ((int)0X8011),
Convolution2DExt = ((int)0X8011),
- ConvolutionFormat = ((int)0X8017),
- PostConvolutionGreenBias = ((int)0X8021),
- PostConvolutionAlphaScaleExt = ((int)0X801f),
- ConvolutionFilterBiasExt = ((int)0X8015),
- ConvolutionHeightExt = ((int)0X8019),
- PostConvolutionBlueBiasExt = ((int)0X8022),
- ConvolutionFormatExt = ((int)0X8017),
- ConvolutionFilterScaleExt = ((int)0X8014),
- Reduce = ((int)0X8016),
- ConvolutionWidth = ((int)0X8018),
- PostConvolutionRedScale = ((int)0X801c),
- PostConvolutionAlphaBias = ((int)0X8023),
- PostConvolutionBlueScaleExt = ((int)0X801e),
- ConvolutionFilterScale = ((int)0X8014),
- PostConvolutionBlueBias = ((int)0X8022),
- MaxConvolutionHeight = ((int)0X801b),
- PostConvolutionRedBiasExt = ((int)0X8020),
- PostConvolutionGreenBiasExt = ((int)0X8021),
- Convolution1DExt = ((int)0X8010),
- PostConvolutionRedBias = ((int)0X8020),
- Convolution1D = ((int)0X8010),
- MaxConvolutionWidth = ((int)0X801a),
- ConvolutionFilterBias = ((int)0X8015),
+ Separable2D = ((int)0X8012),
Separable2DExt = ((int)0X8012),
+ ConvolutionBorderMode = ((int)0X8013),
+ ConvolutionBorderModeExt = ((int)0X8013),
+ ConvolutionFilterScale = ((int)0X8014),
+ ConvolutionFilterScaleExt = ((int)0X8014),
+ ConvolutionFilterBias = ((int)0X8015),
+ ConvolutionFilterBiasExt = ((int)0X8015),
+ Reduce = ((int)0X8016),
+ ReduceExt = ((int)0X8016),
+ ConvolutionFormat = ((int)0X8017),
+ ConvolutionFormatExt = ((int)0X8017),
+ ConvolutionWidth = ((int)0X8018),
+ ConvolutionWidthExt = ((int)0X8018),
+ ConvolutionHeight = ((int)0X8019),
+ ConvolutionHeightExt = ((int)0X8019),
+ MaxConvolutionWidth = ((int)0X801a),
+ MaxConvolutionWidthExt = ((int)0X801a),
+ MaxConvolutionHeight = ((int)0X801b),
+ MaxConvolutionHeightExt = ((int)0X801b),
+ PostConvolutionRedScale = ((int)0X801c),
+ PostConvolutionRedScaleExt = ((int)0X801c),
+ PostConvolutionGreenScale = ((int)0X801d),
+ PostConvolutionGreenScaleExt = ((int)0X801d),
+ PostConvolutionBlueScale = ((int)0X801e),
+ PostConvolutionBlueScaleExt = ((int)0X801e),
+ PostConvolutionAlphaScale = ((int)0X801f),
+ PostConvolutionAlphaScaleExt = ((int)0X801f),
+ PostConvolutionRedBias = ((int)0X8020),
+ PostConvolutionRedBiasExt = ((int)0X8020),
+ PostConvolutionGreenBias = ((int)0X8021),
+ PostConvolutionGreenBiasExt = ((int)0X8021),
+ PostConvolutionBlueBias = ((int)0X8022),
+ PostConvolutionBlueBiasExt = ((int)0X8022),
+ PostConvolutionAlphaBias = ((int)0X8023),
+ PostConvolutionAlphaBiasExt = ((int)0X8023),
}
public enum ExtHistogram
{
- HistogramSink = ((int)0X802d),
- TableTooLarge = ((int)0X8031),
- HistogramLuminanceSizeExt = ((int)0X802c),
Histogram = ((int)0X8024),
- HistogramBlueSize = ((int)0X802a),
- MinmaxFormat = ((int)0X802f),
- HistogramFormatExt = ((int)0X8027),
- HistogramRedSizeExt = ((int)0X8028),
- HistogramFormat = ((int)0X8027),
HistogramExt = ((int)0X8024),
- HistogramWidth = ((int)0X8026),
- TableTooLargeExt = ((int)0X8031),
- HistogramAlphaSizeExt = ((int)0X802b),
- HistogramGreenSizeExt = ((int)0X8029),
- HistogramBlueSizeExt = ((int)0X802a),
- HistogramGreenSize = ((int)0X8029),
- MinmaxSink = ((int)0X8030),
- HistogramSinkExt = ((int)0X802d),
- MinmaxExt = ((int)0X802e),
- Minmax = ((int)0X802e),
- HistogramAlphaSize = ((int)0X802b),
- HistogramRedSize = ((int)0X8028),
- MinmaxFormatExt = ((int)0X802f),
- HistogramWidthExt = ((int)0X8026),
- ProxyHistogramExt = ((int)0X8025),
- MinmaxSinkExt = ((int)0X8030),
- HistogramLuminanceSize = ((int)0X802c),
ProxyHistogram = ((int)0X8025),
+ ProxyHistogramExt = ((int)0X8025),
+ HistogramWidth = ((int)0X8026),
+ HistogramWidthExt = ((int)0X8026),
+ HistogramFormat = ((int)0X8027),
+ HistogramFormatExt = ((int)0X8027),
+ HistogramRedSize = ((int)0X8028),
+ HistogramRedSizeExt = ((int)0X8028),
+ HistogramGreenSize = ((int)0X8029),
+ HistogramGreenSizeExt = ((int)0X8029),
+ HistogramBlueSize = ((int)0X802a),
+ HistogramBlueSizeExt = ((int)0X802a),
+ HistogramAlphaSize = ((int)0X802b),
+ HistogramAlphaSizeExt = ((int)0X802b),
+ HistogramLuminanceSize = ((int)0X802c),
+ HistogramLuminanceSizeExt = ((int)0X802c),
+ HistogramSink = ((int)0X802d),
+ HistogramSinkExt = ((int)0X802d),
+ Minmax = ((int)0X802e),
+ MinmaxExt = ((int)0X802e),
+ MinmaxFormat = ((int)0X802f),
+ MinmaxFormatExt = ((int)0X802f),
+ MinmaxSink = ((int)0X8030),
+ MinmaxSinkExt = ((int)0X8030),
+ TableTooLarge = ((int)0X8031),
+ TableTooLargeExt = ((int)0X8031),
}
public enum ExtPackedPixels
{
- UnsignedShort4444Ext = ((int)0X8033),
+ UnsignedByte332 = ((int)0X8032),
UnsignedByte332Ext = ((int)0X8032),
- UnsignedInt1010102 = ((int)0X8036),
- UnsignedInt8888 = ((int)0X8035),
- UnsignedInt1010102Ext = ((int)0X8036),
+ UnsignedShort4444 = ((int)0X8033),
+ UnsignedShort4444Ext = ((int)0X8033),
UnsignedShort5551 = ((int)0X8034),
UnsignedShort5551Ext = ((int)0X8034),
- UnsignedInt2101010RevExt = ((int)0X8368),
- UnsignedShort565Rev = ((int)0X8364),
- UnsignedShort4444RevExt = ((int)0X8365),
+ UnsignedInt8888 = ((int)0X8035),
+ UnsignedInt8888Ext = ((int)0X8035),
+ UnsignedInt1010102 = ((int)0X8036),
+ UnsignedInt1010102Ext = ((int)0X8036),
+ UnsignedByte233Rev = ((int)0X8362),
+ UnsignedByte233RevExt = ((int)0X8362),
UnsignedShort565 = ((int)0X8363),
+ UnsignedShort565Ext = ((int)0X8363),
+ UnsignedShort565Rev = ((int)0X8364),
+ UnsignedShort565RevExt = ((int)0X8364),
UnsignedShort4444Rev = ((int)0X8365),
+ UnsignedShort4444RevExt = ((int)0X8365),
+ UnsignedShort1555Rev = ((int)0X8366),
UnsignedShort1555RevExt = ((int)0X8366),
UnsignedInt8888Rev = ((int)0X8367),
- UnsignedShort565Ext = ((int)0X8363),
- UnsignedByte233RevExt = ((int)0X8362),
- UnsignedShort565RevExt = ((int)0X8364),
- UnsignedInt2101010Rev = ((int)0X8368),
- UnsignedByte233Rev = ((int)0X8362),
- UnsignedByte332 = ((int)0X8032),
- UnsignedShort4444 = ((int)0X8033),
- UnsignedInt8888Ext = ((int)0X8035),
- UnsignedShort1555Rev = ((int)0X8366),
UnsignedInt8888RevExt = ((int)0X8367),
+ UnsignedInt2101010Rev = ((int)0X8368),
+ UnsignedInt2101010RevExt = ((int)0X8368),
}
public enum ExtPolygonOffset
{
PolygonOffsetExt = ((int)0X8037),
- PolygonOffsetBiasExt = ((int)0X8039),
PolygonOffsetFactorExt = ((int)0X8038),
+ PolygonOffsetBiasExt = ((int)0X8039),
}
public enum ExtRescaleNormal
@@ -2112,55 +2225,55 @@ namespace OpenTK.Graphics
public enum ExtTexture
{
- Luminance4Alpha4Ext = ((int)0X8043),
- Luminance12Alpha4Ext = ((int)0X8046),
- Rgb10A2Ext = ((int)0X8059),
- Alpha8Ext = ((int)0X803c),
- Luminance12Ext = ((int)0X8041),
- Luminance8Alpha8Ext = ((int)0X8045),
- TextureIntensitySizeExt = ((int)0X8061),
- Rgba8Ext = ((int)0X8058),
- ProxyTexture1DExt = ((int)0X8063),
- Luminance6Alpha2Ext = ((int)0X8044),
- Rgb4Ext = ((int)0X804f),
- Alpha12Ext = ((int)0X803d),
- Luminance8Ext = ((int)0X8040),
- Rgb12Ext = ((int)0X8053),
- Rgba12Ext = ((int)0X805a),
- TextureLuminanceSizeExt = ((int)0X8060),
- Intensity12Ext = ((int)0X804c),
- TextureBlueSizeExt = ((int)0X805e),
Alpha4Ext = ((int)0X803b),
+ Alpha8Ext = ((int)0X803c),
+ Alpha12Ext = ((int)0X803d),
Alpha16Ext = ((int)0X803e),
- IntensityExt = ((int)0X8049),
- Intensity8Ext = ((int)0X804b),
- Luminance12Alpha12Ext = ((int)0X8047),
- Rgb16Ext = ((int)0X8054),
- Luminance16Alpha16Ext = ((int)0X8048),
- ReplaceExt = ((int)0X8062),
- Intensity16Ext = ((int)0X804d),
- TextureRedSizeExt = ((int)0X805c),
- Rgba4Ext = ((int)0X8056),
- TextureAlphaSizeExt = ((int)0X805f),
- Rgb10Ext = ((int)0X8052),
- ProxyTexture2DExt = ((int)0X8064),
- Rgb2Ext = ((int)0X804e),
- Rgb5Ext = ((int)0X8050),
- Luminance16Ext = ((int)0X8042),
- TextureTooLargeExt = ((int)0X8065),
- Rgba16Ext = ((int)0X805b),
- Rgba2Ext = ((int)0X8055),
- Rgb5A1Ext = ((int)0X8057),
- TextureGreenSizeExt = ((int)0X805d),
Luminance4Ext = ((int)0X803f),
+ Luminance8Ext = ((int)0X8040),
+ Luminance12Ext = ((int)0X8041),
+ Luminance16Ext = ((int)0X8042),
+ Luminance4Alpha4Ext = ((int)0X8043),
+ Luminance6Alpha2Ext = ((int)0X8044),
+ Luminance8Alpha8Ext = ((int)0X8045),
+ Luminance12Alpha4Ext = ((int)0X8046),
+ Luminance12Alpha12Ext = ((int)0X8047),
+ Luminance16Alpha16Ext = ((int)0X8048),
+ IntensityExt = ((int)0X8049),
Intensity4Ext = ((int)0X804a),
+ Intensity8Ext = ((int)0X804b),
+ Intensity12Ext = ((int)0X804c),
+ Intensity16Ext = ((int)0X804d),
+ Rgb2Ext = ((int)0X804e),
+ Rgb4Ext = ((int)0X804f),
+ Rgb5Ext = ((int)0X8050),
Rgb8Ext = ((int)0X8051),
+ Rgb10Ext = ((int)0X8052),
+ Rgb12Ext = ((int)0X8053),
+ Rgb16Ext = ((int)0X8054),
+ Rgba2Ext = ((int)0X8055),
+ Rgba4Ext = ((int)0X8056),
+ Rgb5A1Ext = ((int)0X8057),
+ Rgba8Ext = ((int)0X8058),
+ Rgb10A2Ext = ((int)0X8059),
+ Rgba12Ext = ((int)0X805a),
+ Rgba16Ext = ((int)0X805b),
+ TextureRedSizeExt = ((int)0X805c),
+ TextureGreenSizeExt = ((int)0X805d),
+ TextureBlueSizeExt = ((int)0X805e),
+ TextureAlphaSizeExt = ((int)0X805f),
+ TextureLuminanceSizeExt = ((int)0X8060),
+ TextureIntensitySizeExt = ((int)0X8061),
+ ReplaceExt = ((int)0X8062),
+ ProxyTexture1DExt = ((int)0X8063),
+ ProxyTexture2DExt = ((int)0X8064),
+ TextureTooLargeExt = ((int)0X8065),
}
public enum ExtTextureObject
{
- TextureResidentExt = ((int)0X8067),
TexturePriorityExt = ((int)0X8066),
+ TextureResidentExt = ((int)0X8067),
Texture1DBindingExt = ((int)0X8068),
Texture2DBindingExt = ((int)0X8069),
Texture3DBindingExt = ((int)0X806a),
@@ -2168,60 +2281,60 @@ namespace OpenTK.Graphics
public enum ExtTexture3D
{
- UnpackSkipImages = ((int)0X806d),
- TextureDepth = ((int)0X8071),
- Max3DTextureSize = ((int)0X8073),
- UnpackImageHeight = ((int)0X806e),
+ PackSkipImages = ((int)0X806b),
+ PackSkipImagesExt = ((int)0X806b),
PackImageHeight = ((int)0X806c),
+ PackImageHeightExt = ((int)0X806c),
+ UnpackSkipImages = ((int)0X806d),
+ UnpackSkipImagesExt = ((int)0X806d),
+ UnpackImageHeight = ((int)0X806e),
+ UnpackImageHeightExt = ((int)0X806e),
+ Texture3D = ((int)0X806f),
+ Texture3DExt = ((int)0X806f),
+ ProxyTexture3D = ((int)0X8070),
+ ProxyTexture3DExt = ((int)0X8070),
+ TextureDepth = ((int)0X8071),
+ TextureDepthExt = ((int)0X8071),
TextureWrapR = ((int)0X8072),
TextureWrapRExt = ((int)0X8072),
- PackSkipImagesExt = ((int)0X806b),
- UnpackImageHeightExt = ((int)0X806e),
- UnpackSkipImagesExt = ((int)0X806d),
- PackSkipImages = ((int)0X806b),
- ProxyTexture3DExt = ((int)0X8070),
- Texture3D = ((int)0X806f),
- TextureDepthExt = ((int)0X8071),
- ProxyTexture3D = ((int)0X8070),
- Texture3DExt = ((int)0X806f),
- PackImageHeightExt = ((int)0X806c),
+ Max3DTextureSize = ((int)0X8073),
Max3DTextureSizeExt = ((int)0X8073),
}
public enum ExtVertexArray
{
- NormalArrayStrideExt = ((int)0X807f),
- ColorArrayExt = ((int)0X8076),
- TextureCoordArrayPointerExt = ((int)0X8092),
- IndexArrayStrideExt = ((int)0X8086),
- VertexArrayTypeExt = ((int)0X807b),
- IndexArrayPointerExt = ((int)0X8091),
- TextureCoordArrayStrideExt = ((int)0X808a),
- VertexArrayStrideExt = ((int)0X807c),
- TextureCoordArrayCountExt = ((int)0X808b),
+ VertexArrayExt = ((int)0X8074),
NormalArrayExt = ((int)0X8075),
- TextureCoordArraySizeExt = ((int)0X8088),
- NormalArrayTypeExt = ((int)0X807e),
- ColorArraySizeExt = ((int)0X8081),
+ ColorArrayExt = ((int)0X8076),
+ IndexArrayExt = ((int)0X8077),
TextureCoordArrayExt = ((int)0X8078),
+ EdgeFlagArrayExt = ((int)0X8079),
+ VertexArraySizeExt = ((int)0X807a),
+ VertexArrayTypeExt = ((int)0X807b),
+ VertexArrayStrideExt = ((int)0X807c),
+ VertexArrayCountExt = ((int)0X807d),
+ NormalArrayTypeExt = ((int)0X807e),
+ NormalArrayStrideExt = ((int)0X807f),
+ NormalArrayCountExt = ((int)0X8080),
+ ColorArraySizeExt = ((int)0X8081),
ColorArrayTypeExt = ((int)0X8082),
ColorArrayStrideExt = ((int)0X8083),
ColorArrayCountExt = ((int)0X8084),
- EdgeFlagArrayPointerExt = ((int)0X8093),
- ColorArrayPointerExt = ((int)0X8090),
+ IndexArrayTypeExt = ((int)0X8085),
+ IndexArrayStrideExt = ((int)0X8086),
IndexArrayCountExt = ((int)0X8087),
- NormalArrayCountExt = ((int)0X8080),
+ TextureCoordArraySizeExt = ((int)0X8088),
+ TextureCoordArrayTypeExt = ((int)0X8089),
+ TextureCoordArrayStrideExt = ((int)0X808a),
+ TextureCoordArrayCountExt = ((int)0X808b),
+ EdgeFlagArrayStrideExt = ((int)0X808c),
EdgeFlagArrayCountExt = ((int)0X808d),
VertexArrayPointerExt = ((int)0X808e),
- EdgeFlagArrayExt = ((int)0X8079),
- VertexArrayExt = ((int)0X8074),
- VertexArraySizeExt = ((int)0X807a),
NormalArrayPointerExt = ((int)0X808f),
- IndexArrayExt = ((int)0X8077),
- VertexArrayCountExt = ((int)0X807d),
- IndexArrayTypeExt = ((int)0X8085),
- TextureCoordArrayTypeExt = ((int)0X8089),
- EdgeFlagArrayStrideExt = ((int)0X808c),
+ ColorArrayPointerExt = ((int)0X8090),
+ IndexArrayPointerExt = ((int)0X8091),
+ TextureCoordArrayPointerExt = ((int)0X8092),
+ EdgeFlagArrayPointerExt = ((int)0X8093),
}
public enum SgixInterlace
@@ -2231,89 +2344,89 @@ namespace OpenTK.Graphics
public enum SgisDetailTexture
{
- LinearDetailSgis = ((int)0X8097),
DetailTexture2DSgis = ((int)0X8095),
- DetailTextureFuncPointsSgis = ((int)0X809c),
- DetailTextureLevelSgis = ((int)0X809a),
DetailTexture2DBindingSgis = ((int)0X8096),
- LinearDetailColorSgis = ((int)0X8099),
- DetailTextureModeSgis = ((int)0X809b),
+ LinearDetailSgis = ((int)0X8097),
LinearDetailAlphaSgis = ((int)0X8098),
+ LinearDetailColorSgis = ((int)0X8099),
+ DetailTextureLevelSgis = ((int)0X809a),
+ DetailTextureModeSgis = ((int)0X809b),
+ DetailTextureFuncPointsSgis = ((int)0X809c),
}
public enum ArbMultisample
{
- Samples = ((int)0X80a9),
MultisampleBitArb = ((int)0X20000000),
- SampleCoverageInvertArb = ((int)0X80ab),
- SampleCoverage = ((int)0X80a0),
- SampleCoverageInvert = ((int)0X80ab),
+ Multisample = ((int)0X809d),
+ MultisampleArb = ((int)0X809d),
+ SampleAlphaToCoverage = ((int)0X809e),
+ SampleAlphaToCoverageArb = ((int)0X809e),
SampleAlphaToOne = ((int)0X809f),
SampleAlphaToOneArb = ((int)0X809f),
- SampleCoverageValue = ((int)0X80aa),
- SampleAlphaToCoverage = ((int)0X809e),
- SampleBuffersArb = ((int)0X80a8),
- MultisampleArb = ((int)0X809d),
- SampleAlphaToCoverageArb = ((int)0X809e),
+ SampleCoverage = ((int)0X80a0),
SampleCoverageArb = ((int)0X80a0),
- SamplesArb = ((int)0X80a9),
- Multisample = ((int)0X809d),
SampleBuffers = ((int)0X80a8),
+ SampleBuffersArb = ((int)0X80a8),
+ Samples = ((int)0X80a9),
+ SamplesArb = ((int)0X80a9),
+ SampleCoverageValue = ((int)0X80aa),
SampleCoverageValueArb = ((int)0X80aa),
+ SampleCoverageInvert = ((int)0X80ab),
+ SampleCoverageInvertArb = ((int)0X80ab),
}
public enum SgisMultisample
{
- Gl2Pass1Sgis = ((int)0X80a3),
- Gl1PassSgis = ((int)0X80a1),
- SampleAlphaToOneSgis = ((int)0X809f),
- Gl4Pass2Sgis = ((int)0X80a6),
- SampleMaskInvertSgis = ((int)0X80ab),
- SampleAlphaToMaskSgis = ((int)0X809e),
- SampleBuffersSgis = ((int)0X80a8),
- Gl4Pass3Sgis = ((int)0X80a7),
- Gl4Pass0Sgis = ((int)0X80a4),
- SamplesSgis = ((int)0X80a9),
MultisampleSgis = ((int)0X809d),
- Gl2Pass0Sgis = ((int)0X80a2),
- SamplePatternSgis = ((int)0X80ac),
- SampleMaskValueSgis = ((int)0X80aa),
- Gl4Pass1Sgis = ((int)0X80a5),
+ SampleAlphaToMaskSgis = ((int)0X809e),
+ SampleAlphaToOneSgis = ((int)0X809f),
SampleMaskSgis = ((int)0X80a0),
+ Gl1PassSgis = ((int)0X80a1),
+ Gl2Pass0Sgis = ((int)0X80a2),
+ Gl2Pass1Sgis = ((int)0X80a3),
+ Gl4Pass0Sgis = ((int)0X80a4),
+ Gl4Pass1Sgis = ((int)0X80a5),
+ Gl4Pass2Sgis = ((int)0X80a6),
+ Gl4Pass3Sgis = ((int)0X80a7),
+ SampleBuffersSgis = ((int)0X80a8),
+ SamplesSgis = ((int)0X80a9),
+ SampleMaskValueSgis = ((int)0X80aa),
+ SampleMaskInvertSgis = ((int)0X80ab),
+ SamplePatternSgis = ((int)0X80ac),
}
public enum SgisSharpenTexture
{
LinearSharpenSgis = ((int)0X80ad),
- SharpenTextureFuncPointsSgis = ((int)0X80b0),
- LinearSharpenColorSgis = ((int)0X80af),
LinearSharpenAlphaSgis = ((int)0X80ae),
+ LinearSharpenColorSgis = ((int)0X80af),
+ SharpenTextureFuncPointsSgis = ((int)0X80b0),
}
public enum SgiColorMatrix
{
- MaxColorMatrixStackDepth = ((int)0X80b3),
- PostColorMatrixRedScale = ((int)0X80b4),
- ColorMatrixSgi = ((int)0X80b1),
- PostColorMatrixGreenBiasSgi = ((int)0X80b9),
- PostColorMatrixAlphaScaleSgi = ((int)0X80b7),
- PostColorMatrixAlphaScale = ((int)0X80b7),
- PostColorMatrixBlueBiasSgi = ((int)0X80ba),
- PostColorMatrixRedBias = ((int)0X80b8),
- PostColorMatrixRedScaleSgi = ((int)0X80b4),
ColorMatrix = ((int)0X80b1),
- PostColorMatrixGreenScale = ((int)0X80b5),
- PostColorMatrixBlueBias = ((int)0X80ba),
- PostColorMatrixRedBiasSgi = ((int)0X80b8),
- PostColorMatrixAlphaBiasSgi = ((int)0X80bb),
- PostColorMatrixBlueScale = ((int)0X80b6),
+ ColorMatrixSgi = ((int)0X80b1),
ColorMatrixStackDepth = ((int)0X80b2),
- MaxColorMatrixStackDepthSgi = ((int)0X80b3),
- PostColorMatrixGreenBias = ((int)0X80b9),
- PostColorMatrixGreenScaleSgi = ((int)0X80b5),
- PostColorMatrixAlphaBias = ((int)0X80bb),
- PostColorMatrixBlueScaleSgi = ((int)0X80b6),
ColorMatrixStackDepthSgi = ((int)0X80b2),
+ MaxColorMatrixStackDepth = ((int)0X80b3),
+ MaxColorMatrixStackDepthSgi = ((int)0X80b3),
+ PostColorMatrixRedScale = ((int)0X80b4),
+ PostColorMatrixRedScaleSgi = ((int)0X80b4),
+ PostColorMatrixGreenScale = ((int)0X80b5),
+ PostColorMatrixGreenScaleSgi = ((int)0X80b5),
+ PostColorMatrixBlueScale = ((int)0X80b6),
+ PostColorMatrixBlueScaleSgi = ((int)0X80b6),
+ PostColorMatrixAlphaScale = ((int)0X80b7),
+ PostColorMatrixAlphaScaleSgi = ((int)0X80b7),
+ PostColorMatrixRedBias = ((int)0X80b8),
+ PostColorMatrixRedBiasSgi = ((int)0X80b8),
+ PostColorMatrixGreenBias = ((int)0X80b9),
+ PostColorMatrixGreenBiasSgi = ((int)0X80b9),
+ PostColorMatrixBlueBias = ((int)0X80ba),
+ PostColorMatrixBlueBiasSgi = ((int)0X80ba),
+ PostColorMatrixAlphaBias = ((int)0X80bb),
+ PostColorMatrixAlphaBiasSgi = ((int)0X80bb),
}
public enum SgiTextureColorTable
@@ -2334,45 +2447,45 @@ namespace OpenTK.Graphics
public enum SgiColorTable
{
- ColorTableScaleSgi = ((int)0X80d6),
+ ColorTable = ((int)0X80d0),
+ ColorTableSgi = ((int)0X80d0),
+ PostConvolutionColorTable = ((int)0X80d1),
+ PostConvolutionColorTableSgi = ((int)0X80d1),
+ PostColorMatrixColorTable = ((int)0X80d2),
+ PostColorMatrixColorTableSgi = ((int)0X80d2),
ProxyColorTable = ((int)0X80d3),
- ColorTableBiasSgi = ((int)0X80d7),
- ColorTableBlueSize = ((int)0X80dc),
- ColorTableFormatSgi = ((int)0X80d8),
- ColorTableIntensitySizeSgi = ((int)0X80df),
- ColorTableRedSize = ((int)0X80da),
+ ProxyColorTableSgi = ((int)0X80d3),
+ ProxyPostConvolutionColorTable = ((int)0X80d4),
+ ProxyPostConvolutionColorTableSgi = ((int)0X80d4),
+ ProxyPostColorMatrixColorTable = ((int)0X80d5),
ProxyPostColorMatrixColorTableSgi = ((int)0X80d5),
+ ColorTableScale = ((int)0X80d6),
+ ColorTableScaleSgi = ((int)0X80d6),
+ ColorTableBias = ((int)0X80d7),
+ ColorTableBiasSgi = ((int)0X80d7),
+ ColorTableFormat = ((int)0X80d8),
+ ColorTableFormatSgi = ((int)0X80d8),
ColorTableWidth = ((int)0X80d9),
ColorTableWidthSgi = ((int)0X80d9),
- ColorTableAlphaSizeSgi = ((int)0X80dd),
- PostConvolutionColorTableSgi = ((int)0X80d1),
- ColorTable = ((int)0X80d0),
- ProxyPostConvolutionColorTable = ((int)0X80d4),
- ColorTableLuminanceSizeSgi = ((int)0X80de),
- PostColorMatrixColorTable = ((int)0X80d2),
- PostConvolutionColorTable = ((int)0X80d1),
- ColorTableLuminanceSize = ((int)0X80de),
- ColorTableGreenSize = ((int)0X80db),
- ColorTableSgi = ((int)0X80d0),
- ColorTableIntensitySize = ((int)0X80df),
- ColorTableBlueSizeSgi = ((int)0X80dc),
- ProxyPostConvolutionColorTableSgi = ((int)0X80d4),
- ProxyColorTableSgi = ((int)0X80d3),
- PostColorMatrixColorTableSgi = ((int)0X80d2),
- ColorTableGreenSizeSgi = ((int)0X80db),
+ ColorTableRedSize = ((int)0X80da),
ColorTableRedSizeSgi = ((int)0X80da),
- ProxyPostColorMatrixColorTable = ((int)0X80d5),
- ColorTableFormat = ((int)0X80d8),
- ColorTableScale = ((int)0X80d6),
+ ColorTableGreenSize = ((int)0X80db),
+ ColorTableGreenSizeSgi = ((int)0X80db),
+ ColorTableBlueSize = ((int)0X80dc),
+ ColorTableBlueSizeSgi = ((int)0X80dc),
ColorTableAlphaSize = ((int)0X80dd),
- ColorTableBias = ((int)0X80d7),
+ ColorTableAlphaSizeSgi = ((int)0X80dd),
+ ColorTableLuminanceSize = ((int)0X80de),
+ ColorTableLuminanceSizeSgi = ((int)0X80de),
+ ColorTableIntensitySize = ((int)0X80df),
+ ColorTableIntensitySizeSgi = ((int)0X80df),
}
public enum ExtBgra
{
+ Bgr = ((int)0X80e0),
BgrExt = ((int)0X80e0),
Bgra = ((int)0X80e1),
- Bgr = ((int)0X80e0),
BgraExt = ((int)0X80e1),
}
@@ -2384,62 +2497,62 @@ namespace OpenTK.Graphics
public enum SgisTextureSelect
{
- DualIntensity4Sgis = ((int)0X8118),
- QuadAlpha4Sgis = ((int)0X811e),
- DualAlpha8Sgis = ((int)0X8111),
- QuadTextureSelectSgis = ((int)0X8125),
- DualLuminance12Sgis = ((int)0X8116),
- QuadLuminance4Sgis = ((int)0X8120),
- DualLuminance16Sgis = ((int)0X8117),
- DualIntensity16Sgis = ((int)0X811b),
- QuadLuminance8Sgis = ((int)0X8121),
- DualIntensity12Sgis = ((int)0X811a),
- DualIntensity8Sgis = ((int)0X8119),
- QuadAlpha8Sgis = ((int)0X811f),
- DualAlpha16Sgis = ((int)0X8113),
- DualLuminanceAlpha4Sgis = ((int)0X811c),
- DualAlpha12Sgis = ((int)0X8112),
DualAlpha4Sgis = ((int)0X8110),
- DualTextureSelectSgis = ((int)0X8124),
- QuadIntensity8Sgis = ((int)0X8123),
- QuadIntensity4Sgis = ((int)0X8122),
- DualLuminance8Sgis = ((int)0X8115),
+ DualAlpha8Sgis = ((int)0X8111),
+ DualAlpha12Sgis = ((int)0X8112),
+ DualAlpha16Sgis = ((int)0X8113),
DualLuminance4Sgis = ((int)0X8114),
+ DualLuminance8Sgis = ((int)0X8115),
+ DualLuminance12Sgis = ((int)0X8116),
+ DualLuminance16Sgis = ((int)0X8117),
+ DualIntensity4Sgis = ((int)0X8118),
+ DualIntensity8Sgis = ((int)0X8119),
+ DualIntensity12Sgis = ((int)0X811a),
+ DualIntensity16Sgis = ((int)0X811b),
+ DualLuminanceAlpha4Sgis = ((int)0X811c),
DualLuminanceAlpha8Sgis = ((int)0X811d),
+ QuadAlpha4Sgis = ((int)0X811e),
+ QuadAlpha8Sgis = ((int)0X811f),
+ QuadLuminance4Sgis = ((int)0X8120),
+ QuadLuminance8Sgis = ((int)0X8121),
+ QuadIntensity4Sgis = ((int)0X8122),
+ QuadIntensity8Sgis = ((int)0X8123),
+ DualTextureSelectSgis = ((int)0X8124),
+ QuadTextureSelectSgis = ((int)0X8125),
}
public enum SgisPointParameters
{
- PointSizeMinSgis = ((int)0X8126),
- DistanceAttenuationSgis = ((int)0X8129),
- PointSizeMinArb = ((int)0X8126),
- PointSizeMaxSgis = ((int)0X8127),
- PointSizeMaxExt = ((int)0X8127),
- PointFadeThresholdSizeExt = ((int)0X8128),
- PointDistanceAttenuationArb = ((int)0X8129),
- DistanceAttenuationExt = ((int)0X8129),
- PointDistanceAttenuation = ((int)0X8129),
- PointFadeThresholdSizeArb = ((int)0X8128),
- PointSizeMax = ((int)0X8127),
- PointFadeThresholdSizeSgis = ((int)0X8128),
- PointSizeMaxArb = ((int)0X8127),
- PointSizeMinExt = ((int)0X8126),
- PointFadeThresholdSize = ((int)0X8128),
PointSizeMin = ((int)0X8126),
+ PointSizeMinArb = ((int)0X8126),
+ PointSizeMinExt = ((int)0X8126),
+ PointSizeMinSgis = ((int)0X8126),
+ PointSizeMax = ((int)0X8127),
+ PointSizeMaxArb = ((int)0X8127),
+ PointSizeMaxExt = ((int)0X8127),
+ PointSizeMaxSgis = ((int)0X8127),
+ PointFadeThresholdSize = ((int)0X8128),
+ PointFadeThresholdSizeArb = ((int)0X8128),
+ PointFadeThresholdSizeExt = ((int)0X8128),
+ PointFadeThresholdSizeSgis = ((int)0X8128),
+ DistanceAttenuationExt = ((int)0X8129),
+ DistanceAttenuationSgis = ((int)0X8129),
+ PointDistanceAttenuation = ((int)0X8129),
+ PointDistanceAttenuationArb = ((int)0X8129),
}
public enum SgisFogFunction
{
- MaxFogFuncPointsSgis = ((int)0X812c),
FogFuncSgis = ((int)0X812a),
FogFuncPointsSgis = ((int)0X812b),
+ MaxFogFuncPointsSgis = ((int)0X812c),
}
public enum SgisTextureBorderClamp
{
ClampToBorder = ((int)0X812d),
- ClampToBorderSgis = ((int)0X812d),
ClampToBorderArb = ((int)0X812d),
+ ClampToBorderSgis = ((int)0X812d),
}
public enum SgixTextureMultiBuffer
@@ -2449,52 +2562,52 @@ namespace OpenTK.Graphics
public enum SgisTextureEdgeClamp
{
- ClampToEdgeSgis = ((int)0X812f),
ClampToEdge = ((int)0X812f),
+ ClampToEdgeSgis = ((int)0X812f),
}
public enum SgisTexture4D
{
- Texture4DBindingSgis = ((int)0X814f),
- PackImageDepthSgis = ((int)0X8131),
- Texture4DsizeSgis = ((int)0X8136),
PackSkipVolumesSgis = ((int)0X8130),
- ProxyTexture4DSgis = ((int)0X8135),
- Max4DTextureSizeSgis = ((int)0X8138),
+ PackImageDepthSgis = ((int)0X8131),
+ UnpackSkipVolumesSgis = ((int)0X8132),
UnpackImageDepthSgis = ((int)0X8133),
Texture4DSgis = ((int)0X8134),
- UnpackSkipVolumesSgis = ((int)0X8132),
+ ProxyTexture4DSgis = ((int)0X8135),
+ Texture4DsizeSgis = ((int)0X8136),
TextureWrapQSgis = ((int)0X8137),
+ Max4DTextureSizeSgis = ((int)0X8138),
+ Texture4DBindingSgis = ((int)0X814f),
}
public enum SgixPixelTexture
{
- PixelTexGenModeSgix = ((int)0X832b),
PixelTexGenSgix = ((int)0X8139),
+ PixelTexGenModeSgix = ((int)0X832b),
}
public enum SgisTextureLod
{
- TextureMaxLevelSgis = ((int)0X813d),
- TextureBaseLevel = ((int)0X813c),
- TextureMaxLodSgis = ((int)0X813b),
- TextureMaxLod = ((int)0X813b),
TextureMinLod = ((int)0X813a),
TextureMinLodSgis = ((int)0X813a),
+ TextureMaxLod = ((int)0X813b),
+ TextureMaxLodSgis = ((int)0X813b),
+ TextureBaseLevel = ((int)0X813c),
TextureBaseLevelSgis = ((int)0X813c),
TextureMaxLevel = ((int)0X813d),
+ TextureMaxLevelSgis = ((int)0X813d),
}
public enum SgixPixelTiles
{
- PixelTileWidthSgix = ((int)0X8140),
- PixelTileGridWidthSgix = ((int)0X8142),
- PixelTileCacheIncrementSgix = ((int)0X813f),
- PixelTileCacheSizeSgix = ((int)0X8145),
- PixelTileHeightSgix = ((int)0X8141),
- PixelTileGridDepthSgix = ((int)0X8144),
PixelTileBestAlignmentSgix = ((int)0X813e),
+ PixelTileCacheIncrementSgix = ((int)0X813f),
+ PixelTileWidthSgix = ((int)0X8140),
+ PixelTileHeightSgix = ((int)0X8141),
+ PixelTileGridWidthSgix = ((int)0X8142),
PixelTileGridHeightSgix = ((int)0X8143),
+ PixelTileGridDepthSgix = ((int)0X8144),
+ PixelTileCacheSizeSgix = ((int)0X8145),
}
public enum SgisTextureFilter4
@@ -2505,48 +2618,48 @@ namespace OpenTK.Graphics
public enum SgixSprite
{
- SpriteAxialSgix = ((int)0X814c),
- SpriteObjectAlignedSgix = ((int)0X814d),
- SpriteModeSgix = ((int)0X8149),
SpriteSgix = ((int)0X8148),
- SpriteEyeAlignedSgix = ((int)0X814e),
+ SpriteModeSgix = ((int)0X8149),
SpriteAxisSgix = ((int)0X814a),
SpriteTranslationSgix = ((int)0X814b),
+ SpriteAxialSgix = ((int)0X814c),
+ SpriteObjectAlignedSgix = ((int)0X814d),
+ SpriteEyeAlignedSgix = ((int)0X814e),
}
public enum HpConvolutionBorderModes
{
IgnoreBorderHp = ((int)0X8150),
- ReplicateBorderHp = ((int)0X8153),
- ConvolutionBorderColorHp = ((int)0X8154),
- ConvolutionBorderColor = ((int)0X8154),
ConstantBorder = ((int)0X8151),
ConstantBorderHp = ((int)0X8151),
ReplicateBorder = ((int)0X8153),
+ ReplicateBorderHp = ((int)0X8153),
+ ConvolutionBorderColor = ((int)0X8154),
+ ConvolutionBorderColorHp = ((int)0X8154),
}
public enum SgixClipmap
{
- TextureClipmapVirtualDepthSgix = ((int)0X8174),
+ LinearClipmapLinearSgix = ((int)0X8170),
TextureClipmapCenterSgix = ((int)0X8171),
TextureClipmapFrameSgix = ((int)0X8172),
- NearestClipmapNearestSgix = ((int)0X844d),
- LinearClipmapNearestSgix = ((int)0X844f),
TextureClipmapOffsetSgix = ((int)0X8173),
+ TextureClipmapVirtualDepthSgix = ((int)0X8174),
+ TextureClipmapLodOffsetSgix = ((int)0X8175),
TextureClipmapDepthSgix = ((int)0X8176),
MaxClipmapDepthSgix = ((int)0X8177),
- TextureClipmapLodOffsetSgix = ((int)0X8175),
- NearestClipmapLinearSgix = ((int)0X844e),
MaxClipmapVirtualDepthSgix = ((int)0X8178),
- LinearClipmapLinearSgix = ((int)0X8170),
+ NearestClipmapNearestSgix = ((int)0X844d),
+ NearestClipmapLinearSgix = ((int)0X844e),
+ LinearClipmapNearestSgix = ((int)0X844f),
}
public enum SgixTextureScaleBias
{
PostTextureFilterBiasSgix = ((int)0X8179),
- PostTextureFilterScaleRangeSgix = ((int)0X817c),
PostTextureFilterScaleSgix = ((int)0X817a),
PostTextureFilterBiasRangeSgix = ((int)0X817b),
+ PostTextureFilterScaleRangeSgix = ((int)0X817c),
}
public enum SgixReferencePlane
@@ -2578,63 +2691,63 @@ namespace OpenTK.Graphics
public enum SgixImpactPixelTexture
{
+ PixelTexGenQCeilingSgix = ((int)0X8184),
+ PixelTexGenQRoundSgix = ((int)0X8185),
+ PixelTexGenQFloorSgix = ((int)0X8186),
+ PixelTexGenAlphaReplaceSgix = ((int)0X8187),
+ PixelTexGenAlphaNoReplaceSgix = ((int)0X8188),
PixelTexGenAlphaLsSgix = ((int)0X8189),
PixelTexGenAlphaMsSgix = ((int)0X818a),
- PixelTexGenQFloorSgix = ((int)0X8186),
- PixelTexGenAlphaNoReplaceSgix = ((int)0X8188),
- PixelTexGenQRoundSgix = ((int)0X8185),
- PixelTexGenAlphaReplaceSgix = ((int)0X8187),
- PixelTexGenQCeilingSgix = ((int)0X8184),
}
public enum SgixFramezoom
{
- MaxFramezoomFactorSgix = ((int)0X818d),
- FramezoomFactorSgix = ((int)0X818c),
FramezoomSgix = ((int)0X818b),
+ FramezoomFactorSgix = ((int)0X818c),
+ MaxFramezoomFactorSgix = ((int)0X818d),
}
public enum SgixTextureLodBias
{
TextureLodBiasSSgix = ((int)0X818e),
- TextureLodBiasRSgix = ((int)0X8190),
TextureLodBiasTSgix = ((int)0X818f),
+ TextureLodBiasRSgix = ((int)0X8190),
}
public enum SgisGenerateMipmap
{
- GenerateMipmapSgis = ((int)0X8191),
GenerateMipmap = ((int)0X8191),
- MaxDeformationOrderSgix = ((int)0X8197),
- GeometryDeformationSgix = ((int)0X8194),
- DeformationsMaskSgix = ((int)0X8196),
+ GenerateMipmapSgis = ((int)0X8191),
GenerateMipmapHint = ((int)0X8192),
- TextureDeformationSgix = ((int)0X8195),
GenerateMipmapHintSgis = ((int)0X8192),
+ GeometryDeformationSgix = ((int)0X8194),
+ TextureDeformationSgix = ((int)0X8195),
+ DeformationsMaskSgix = ((int)0X8196),
+ MaxDeformationOrderSgix = ((int)0X8197),
}
public enum SgixFogOffset
{
- FogOffsetValueSgix = ((int)0X8199),
FogOffsetSgix = ((int)0X8198),
+ FogOffsetValueSgix = ((int)0X8199),
}
public enum SgixShadow
{
- TextureLequalRSgix = ((int)0X819c),
- TextureCompareOperatorSgix = ((int)0X819b),
TextureCompareSgix = ((int)0X819a),
+ TextureCompareOperatorSgix = ((int)0X819b),
+ TextureLequalRSgix = ((int)0X819c),
TextureGequalRSgix = ((int)0X819d),
}
public enum SgixDepthTexture
{
- DepthComponent32 = ((int)0X81a7),
- DepthComponent32Sgix = ((int)0X81a7),
- DepthComponent24Sgix = ((int)0X81a6),
- DepthComponent24 = ((int)0X81a6),
DepthComponent16 = ((int)0X81a5),
DepthComponent16Sgix = ((int)0X81a5),
+ DepthComponent24 = ((int)0X81a6),
+ DepthComponent24Sgix = ((int)0X81a6),
+ DepthComponent32 = ((int)0X81a7),
+ DepthComponent32Sgix = ((int)0X81a7),
}
public enum SgixYcrcb
@@ -2651,23 +2764,23 @@ namespace OpenTK.Graphics
public enum SgisPointLineTexgen
{
EyeDistanceToPointSgis = ((int)0X81f0),
- EyeLineSgis = ((int)0X81f6),
+ ObjectDistanceToPointSgis = ((int)0X81f1),
EyeDistanceToLineSgis = ((int)0X81f2),
ObjectDistanceToLineSgis = ((int)0X81f3),
EyePointSgis = ((int)0X81f4),
ObjectPointSgis = ((int)0X81f5),
+ EyeLineSgis = ((int)0X81f6),
ObjectLineSgis = ((int)0X81f7),
- ObjectDistanceToPointSgis = ((int)0X81f1),
}
public enum ExtSeparateSpecularColor
{
LightModelColorControl = ((int)0X81f8),
- SeparateSpecularColorExt = ((int)0X81fa),
- SingleColorExt = ((int)0X81f9),
LightModelColorControlExt = ((int)0X81f8),
SingleColor = ((int)0X81f9),
+ SingleColorExt = ((int)0X81f9),
SeparateSpecularColor = ((int)0X81fa),
+ SeparateSpecularColorExt = ((int)0X81fa),
}
public enum ExtSharedTexturePalette
@@ -2682,9 +2795,9 @@ namespace OpenTK.Graphics
public enum SgixBlendAlphaMinmax
{
+ AlphaMinSgix = ((int)0X8320),
AlphaMaxSgix = ((int)0X8321),
AsyncMarkerSgix = ((int)0X8329),
- AlphaMinSgix = ((int)0X8320),
}
public enum SgixAsyncHistogram
@@ -2696,3541 +2809,3579 @@ namespace OpenTK.Graphics
public enum ExtPixelTransform
{
PixelTransform2DExt = ((int)0X8330),
+ PixelMagFilterExt = ((int)0X8331),
+ PixelMinFilterExt = ((int)0X8332),
PixelCubicWeightExt = ((int)0X8333),
CubicExt = ((int)0X8334),
- MaxPixelTransform2DStackDepthExt = ((int)0X8337),
- PixelTransform2DMatrixExt = ((int)0X8338),
- PixelMagFilterExt = ((int)0X8331),
AverageExt = ((int)0X8335),
PixelTransform2DStackDepthExt = ((int)0X8336),
- PixelMinFilterExt = ((int)0X8332),
+ MaxPixelTransform2DStackDepthExt = ((int)0X8337),
+ PixelTransform2DMatrixExt = ((int)0X8338),
}
public enum SgisPixelTexture
{
- PixelGroupColorSgis = ((int)0X8356),
PixelTextureSgis = ((int)0X8353),
- PixelFragmentAlphaSourceSgis = ((int)0X8355),
PixelFragmentRgbSourceSgis = ((int)0X8354),
+ PixelFragmentAlphaSourceSgis = ((int)0X8355),
+ PixelGroupColorSgis = ((int)0X8356),
}
public enum SgixAsyncPixel
{
- MaxAsyncReadPixelsSgix = ((int)0X8361),
- AsyncDrawPixelsSgix = ((int)0X835d),
- MaxAsyncTexImageSgix = ((int)0X835f),
AsyncTexImageSgix = ((int)0X835c),
+ AsyncDrawPixelsSgix = ((int)0X835d),
AsyncReadPixelsSgix = ((int)0X835e),
+ MaxAsyncTexImageSgix = ((int)0X835f),
MaxAsyncDrawPixelsSgix = ((int)0X8360),
+ MaxAsyncReadPixelsSgix = ((int)0X8361),
}
public enum SgixTextureCoordinateClamp
{
- TextureMaxClampRSgix = ((int)0X836b),
- TextureMaxClampTSgix = ((int)0X836a),
TextureMaxClampSSgix = ((int)0X8369),
+ TextureMaxClampTSgix = ((int)0X836a),
+ TextureMaxClampRSgix = ((int)0X836b),
FogFactorToAlphaSgix = ((int)0X836f),
}
public enum SgixVertexPreclip
{
- VertexPreclipHintSgix = ((int)0X83ef),
VertexPreclipSgix = ((int)0X83ee),
+ VertexPreclipHintSgix = ((int)0X83ef),
}
public enum ExtTextureCompressionS3tc
{
CompressedRgbS3tcDxt1Ext = ((int)0X83f0),
- CompressedRgbaS3tcDxt5Ext = ((int)0X83f3),
- CompressedRgbaS3tcDxt3Ext = ((int)0X83f2),
CompressedRgbaS3tcDxt1Ext = ((int)0X83f1),
+ CompressedRgbaS3tcDxt3Ext = ((int)0X83f2),
+ CompressedRgbaS3tcDxt5Ext = ((int)0X83f3),
}
public enum IntelParallelArrays
{
- VertexArrayParallelPointersIntel = ((int)0X83f5),
- TextureCoordArrayParallelPointersIntel = ((int)0X83f8),
- ColorArrayParallelPointersIntel = ((int)0X83f7),
ParallelArraysIntel = ((int)0X83f4),
+ VertexArrayParallelPointersIntel = ((int)0X83f5),
NormalArrayParallelPointersIntel = ((int)0X83f6),
+ ColorArrayParallelPointersIntel = ((int)0X83f7),
+ TextureCoordArrayParallelPointersIntel = ((int)0X83f8),
}
public enum SgixFragmentLighting
{
+ FragmentLightingSgix = ((int)0X8400),
+ FragmentColorMaterialSgix = ((int)0X8401),
+ FragmentColorMaterialFaceSgix = ((int)0X8402),
+ FragmentColorMaterialParameterSgix = ((int)0X8403),
+ MaxFragmentLightsSgix = ((int)0X8404),
+ MaxActiveLightsSgix = ((int)0X8405),
+ CurrentRasterNormalSgix = ((int)0X8406),
+ LightEnvModeSgix = ((int)0X8407),
+ FragmentLightModelLocalViewerSgix = ((int)0X8408),
+ FragmentLightModelTwoSideSgix = ((int)0X8409),
FragmentLightModelAmbientSgix = ((int)0X840a),
+ FragmentLightModelNormalInterpolationSgix = ((int)0X840b),
+ FragmentLight0Sgix = ((int)0X840c),
+ FragmentLight1Sgix = ((int)0X840d),
+ FragmentLight2Sgix = ((int)0X840e),
+ FragmentLight3Sgix = ((int)0X840f),
+ FragmentLight4Sgix = ((int)0X8410),
FragmentLight5Sgix = ((int)0X8411),
FragmentLight6Sgix = ((int)0X8412),
- MaxActiveLightsSgix = ((int)0X8405),
- FragmentLightingSgix = ((int)0X8400),
- FragmentLight2Sgix = ((int)0X840e),
- MaxFragmentLightsSgix = ((int)0X8404),
- FragmentLight4Sgix = ((int)0X8410),
- LightEnvModeSgix = ((int)0X8407),
- FragmentLightModelNormalInterpolationSgix = ((int)0X840b),
- FragmentColorMaterialFaceSgix = ((int)0X8402),
- FragmentLightModelTwoSideSgix = ((int)0X8409),
- FragmentLight1Sgix = ((int)0X840d),
- FragmentLightModelLocalViewerSgix = ((int)0X8408),
- CurrentRasterNormalSgix = ((int)0X8406),
- FragmentLight3Sgix = ((int)0X840f),
FragmentLight7Sgix = ((int)0X8413),
- FragmentLight0Sgix = ((int)0X840c),
- FragmentColorMaterialParameterSgix = ((int)0X8403),
- FragmentColorMaterialSgix = ((int)0X8401),
}
public enum SgixResample
{
PackResampleSgix = ((int)0X842c),
- ResampleZeroFillSgix = ((int)0X842f),
- ResampleDecimateSgix = ((int)0X8430),
UnpackResampleSgix = ((int)0X842d),
ResampleReplicateSgix = ((int)0X842e),
+ ResampleZeroFillSgix = ((int)0X842f),
+ ResampleDecimateSgix = ((int)0X8430),
}
public enum SgixIccTexture
{
- R5G6B5IccSgix = ((int)0X8466),
RgbIccSgix = ((int)0X8460),
+ RgbaIccSgix = ((int)0X8461),
+ AlphaIccSgix = ((int)0X8462),
LuminanceIccSgix = ((int)0X8463),
IntensityIccSgix = ((int)0X8464),
- RgbaIccSgix = ((int)0X8461),
- Luminance16IccSgix = ((int)0X8469),
LuminanceAlphaIccSgix = ((int)0X8465),
- AlphaIccSgix = ((int)0X8462),
- Luminance16Alpha8IccSgix = ((int)0X846b),
- Alpha16IccSgix = ((int)0X8468),
- Intensity16IccSgix = ((int)0X846a),
+ R5G6B5IccSgix = ((int)0X8466),
R5G6B5A8IccSgix = ((int)0X8467),
+ Alpha16IccSgix = ((int)0X8468),
+ Luminance16IccSgix = ((int)0X8469),
+ Intensity16IccSgix = ((int)0X846a),
+ Luminance16Alpha8IccSgix = ((int)0X846b),
}
public enum SgixSubsample
{
- PixelSubsample2424Sgix = ((int)0X85a3),
- UnpackSubsampleRateSgix = ((int)0X85a1),
PackSubsampleRateSgix = ((int)0X85a0),
- PixelSubsample4242Sgix = ((int)0X85a4),
+ UnpackSubsampleRateSgix = ((int)0X85a1),
PixelSubsample4444Sgix = ((int)0X85a2),
+ PixelSubsample2424Sgix = ((int)0X85a3),
+ PixelSubsample4242Sgix = ((int)0X85a4),
}
public enum All
{
- VertexStream2Ati = ((int)0X876e),
- ArrayElementLockFirstExt = ((int)0X81a8),
- Two = ((int)2),
- ShadowAmbientSgix = ((int)0X80bf),
- TextureRedSizeExt = ((int)0X805c),
- VertexArrayListStrideIbm = ((int)103080),
- ColorLogicOp = ((int)0X0bf2),
- TextureCompareFailValue = ((int)0X80bf),
- Gl2D = ((int)0X0600),
- TextureWidth = ((int)0X1000),
- MapAttribUOrderNv = ((int)0X86c3),
- Combiner0Nv = ((int)0X8550),
- MaxGeometryBindableUniformsExt = ((int)0X8de4),
- TableTooLargeExt = ((int)0X8031),
- CurrentSecondaryColor = ((int)0X8459),
- CompressedSluminanceExt = ((int)0X8c4a),
- ShaderConsistentNv = ((int)0X86dd),
- Texture13Arb = ((int)0X84cd),
- Sampler2DArrayShadowExt = ((int)0X8dc4),
- IndexTestExt = ((int)0X81b5),
- Stencil = ((int)0X1802),
- Intensity = ((int)0X8049),
- Rgb8Ext = ((int)0X8051),
- C4ubV2f = ((int)0X2a22),
- UnsignedByte233Reversed = ((int)0X8362),
- TextureCoordArraySizeExt = ((int)0X8088),
- BumpRotMatrixSizeAti = ((int)0X8776),
- DrawBuffer11Arb = ((int)0X8830),
- MaxProgramNativeParameters = ((int)0X88ab),
- Aux3 = ((int)0X040c),
- StencilPassDepthFail = ((int)0X0b95),
- MaxProgramIfDepthNv = ((int)0X88f6),
- LocalConstantValueExt = ((int)0X87ec),
- LocalConstantExt = ((int)0X87c3),
- Map2TangentExt = ((int)0X8445),
- Luminance16Alpha8IccSgix = ((int)0X846b),
- WideLineHintPgi = ((int)0X1a222),
- Modelview15Arb = ((int)0X872f),
- MaxCubeMapTextureSize = ((int)0X851c),
- DepthStencilToRgbaNv = ((int)0X886e),
- Source2AlphaExt = ((int)0X858a),
- CurrentVertexExt = ((int)0X87e2),
- PixelMapAToASize = ((int)0X0cb9),
- PostColorMatrixBlueScale = ((int)0X80b6),
- PostColorMatrixGreenScale = ((int)0X80b5),
- Light6 = ((int)0X4006),
- Combiner6Nv = ((int)0X8556),
- MaxFragmentUniformComponents = ((int)0X8b49),
- VertexWeightArrayPointerExt = ((int)0X8510),
- OneMinusConstantColorExt = ((int)0X8002),
- Modelview12Arb = ((int)0X872c),
- MaxRectangleTextureSizeNv = ((int)0X84f8),
- Bgra = ((int)0X80e1),
- OpDot4Ext = ((int)0X8785),
- Map2VertexAttrib104Nv = ((int)0X867a),
- Operand1Alpha = ((int)0X8599),
- Rgb10Ext = ((int)0X8052),
- IndexArrayCountExt = ((int)0X8087),
- R1uiC4fN3fV3fSun = ((int)0X85c8),
- Map2VertexAttrib154Nv = ((int)0X867f),
- ColorAttachment14Ext = ((int)0X8cee),
- PointBit = ((int)0X00000002),
- FragmentLight6Sgix = ((int)0X8412),
- IntensityFloat16Ati = ((int)0X881d),
- MaxNameStackDepth = ((int)0X0d37),
- FragmentLightModelAmbientSgix = ((int)0X840a),
- LineSmoothHint = ((int)0X0c52),
- Modelview13Arb = ((int)0X872d),
- UnpackSkipImages = ((int)0X806d),
- Stereo = ((int)0X0c33),
- Modelview2Arb = ((int)0X8722),
- PostColorMatrixAlphaScaleSgi = ((int)0X80b7),
- Rgba2Ext = ((int)0X8055),
- PixelUnpackBufferArb = ((int)0X88ec),
- Con8Ati = ((int)0X8949),
- TextureCubeMapPositiveYArb = ((int)0X8517),
- Alpha = ((int)0X1906),
- WeightArrayBufferBindingArb = ((int)0X889e),
- OutputTextureCoord13Ext = ((int)0X87aa),
- MaxProgramNativeAttribs = ((int)0X88af),
- Combiner4Nv = ((int)0X8554),
- Src2Rgb = ((int)0X8582),
- OpPowerExt = ((int)0X8793),
- ColorArrayCountExt = ((int)0X8084),
- TextureIntensitySizeExt = ((int)0X8061),
- SpriteModeSgix = ((int)0X8149),
- SignedLuminance8Alpha8Nv = ((int)0X8704),
- RgbaFloat16Ati = ((int)0X881a),
- Rgb12Ext = ((int)0X8053),
- MaxColorAttachmentsExt = ((int)0X8cdf),
- VertexShaderLocalsExt = ((int)0X87d3),
- IndexMaterialParameterExt = ((int)0X81b9),
- Filter4Sgis = ((int)0X8146),
- MaxDrawBuffersArb = ((int)0X8824),
- TextureIntensityTypeArb = ((int)0X8c15),
- Alpha8iExt = ((int)0X8d90),
- IndexArrayType = ((int)0X8085),
- StencilBackValueMask = ((int)0X8ca4),
- MultisampleArb = ((int)0X809d),
- VariableBNv = ((int)0X8524),
- Combiner3Nv = ((int)0X8553),
- VertexProgramNv = ((int)0X8620),
- ReferencePlaneSgix = ((int)0X817d),
- Triangles = ((int)0X0004),
- WeightArrayTypeArb = ((int)0X86a9),
- Modelview19Arb = ((int)0X8733),
- DrawBuffer8 = ((int)0X882d),
- DrawBuffer9 = ((int)0X882e),
- AccumRedBits = ((int)0X0d58),
- DrawBuffer7 = ((int)0X882c),
- DrawBuffer4 = ((int)0X8829),
- DrawBuffer5 = ((int)0X882a),
- DrawBuffer2 = ((int)0X8827),
- DrawBuffer3 = ((int)0X8828),
- SampleBuffersSgis = ((int)0X80a8),
- DrawBuffer1 = ((int)0X8826),
- DynamicRead = ((int)0X88e9),
- TextureCubeMapArb = ((int)0X8513),
- InterlaceReadOml = ((int)0X8981),
- RedBitAti = ((int)0X00000001),
- PixelMapSToS = ((int)0X0c71),
- AlphaScale = ((int)0X0d1c),
- ClientActiveTexture = ((int)0X84e1),
- TextureCoordArraySize = ((int)0X8088),
- MagnitudeBiasNv = ((int)0X8718),
- Modelview16Arb = ((int)0X8730),
- Texture6 = ((int)0X84c6),
- LineStrip = ((int)0X0003),
- StreamDraw = ((int)0X88e0),
- InterpolateArb = ((int)0X8575),
- TextureCompareFunc = ((int)0X884d),
- VertexConsistentHintPgi = ((int)0X1a22b),
- AlphaMaxClampIngr = ((int)0X8567),
- Texture9Arb = ((int)0X84c9),
- ConvolutionBorderColor = ((int)0X8154),
- ColorTableWidthSgi = ((int)0X80d9),
- Reg19Ati = ((int)0X8934),
- LineStripAdjacencyExt = ((int)0X000b),
- Convolution1DExt = ((int)0X8010),
- C4ubV3f = ((int)0X2a23),
- VariableDNv = ((int)0X8526),
- MaxLights = ((int)0X0d31),
- NormalArrayListIbm = ((int)103071),
- Aux2 = ((int)0X040b),
- NormalArrayStrideExt = ((int)0X807f),
- ForceBlueToOneNv = ((int)0X8860),
- Alpha16fArb = ((int)0X881c),
- PixelMapIToB = ((int)0X0c74),
- ConvolutionBorderColorHp = ((int)0X8154),
- Texture1D = ((int)0X0de0),
- ColorIndex16Ext = ((int)0X80e7),
- PnTrianglesPointModeAti = ((int)0X87f2),
- Projection = ((int)0X1701),
- DstColor = ((int)0X0306),
- UnsignedInt8888Ext = ((int)0X8035),
- Constant = ((int)0X8576),
- CompressedRgbaS3tcDxt5Ext = ((int)0X83f3),
- WriteOnly = ((int)0X88b9),
- PostConvolutionGreenScale = ((int)0X801d),
- CompressedRgbaArb = ((int)0X84ee),
- ArrayType = ((int)0X8625),
- PackImageHeightExt = ((int)0X806c),
- ProxyHistogramExt = ((int)0X8025),
- FogEnd = ((int)0X0b64),
- UnsignedShort1555Reversed = ((int)0X8366),
- Modelview14Arb = ((int)0X872e),
- DepthBoundsExt = ((int)0X8891),
- StencilBackFunc = ((int)0X8800),
- Rgb16Ext = ((int)0X8054),
- VertexAttribArray8Nv = ((int)0X8658),
- InstrumentBufferPointerSgix = ((int)0X8180),
- Texture1DBindingExt = ((int)0X8068),
- CurrentWeightArb = ((int)0X86a8),
- Reg28Ati = ((int)0X893d),
- ScalebiasHintSgix = ((int)0X8322),
- LuminanceIccSgix = ((int)0X8463),
- OutputColor1Ext = ((int)0X879c),
- ProjectionMatrix = ((int)0X0ba7),
- EdgeFlagArrayStrideExt = ((int)0X808c),
- PackSkipImages = ((int)0X806b),
- Sampler1DArrayShadowExt = ((int)0X8dc3),
- Blue = ((int)0X1905),
- MaxProgramNativeTexIndirectionsArb = ((int)0X8810),
- TextureMaxAnisotropyExt = ((int)0X84fe),
- Rgb12 = ((int)0X8053),
- Rgb10 = ((int)0X8052),
- Rgb16 = ((int)0X8054),
- Ccw = ((int)0X0901),
- InvariantValueExt = ((int)0X87ea),
- MatrixIndexArrayPointerArb = ((int)0X8849),
- T2fIuiV3fExt = ((int)0X81b2),
- SpriteAxisSgix = ((int)0X814a),
- Dot3RgbExt = ((int)0X8740),
- BackNormalsHintPgi = ((int)0X1a223),
- Luminance8uiExt = ((int)0X8d80),
- PhongHintWin = ((int)0X80eb),
- LineWidth = ((int)0X0b21),
- DrawBuffer12 = ((int)0X8831),
- IrInstrument1Sgix = ((int)0X817f),
- TextureMultiBufferHintSgix = ((int)0X812e),
- Reg14Ati = ((int)0X892f),
- IncrWrapExt = ((int)0X8507),
- ShaderObjectArb = ((int)0X8b48),
- FenceStatusNv = ((int)0X84f3),
- ColorMaterial = ((int)0X0b57),
- MaxConvolutionHeight = ((int)0X801b),
- TextureConstantDataSunx = ((int)0X81d6),
- Viewport = ((int)0X0ba2),
- ListBit = ((int)0X00020000),
- TextureBindingCubeMap = ((int)0X8514),
- UnsignedInt248Ext = ((int)0X84fa),
- PostConvolutionAlphaBiasExt = ((int)0X8023),
- Four = ((int)4),
- UnpackSubsampleRateSgix = ((int)0X85a1),
- Texture15 = ((int)0X84cf),
- Texture12 = ((int)0X84cc),
- Texture13 = ((int)0X84cd),
- Reg15Ati = ((int)0X8930),
- Texture11 = ((int)0X84cb),
- EyeDistanceToPointSgis = ((int)0X81f0),
- TextureCompareOperatorSgix = ((int)0X819b),
- UnpackAlignment = ((int)0X0cf5),
- BoolVec4 = ((int)0X8b59),
- UnpackImageHeightExt = ((int)0X806e),
- Texture18 = ((int)0X84d2),
- DualIntensity12Sgis = ((int)0X811a),
- Reg3Ati = ((int)0X8924),
- ColorMaterialParameter = ((int)0X0b56),
- Operand2Alpha = ((int)0X859a),
- MaxVertexTextureImageUnitsArb = ((int)0X8b4c),
- MadAti = ((int)0X8968),
- Map1TangentExt = ((int)0X8444),
- R1uiT2fC4fN3fV3fSun = ((int)0X85cb),
- AmbientAndDiffuse = ((int)0X1602),
- ElementArrayTypeAti = ((int)0X8769),
- GenerateMipmapSgis = ((int)0X8191),
- ProxyHistogram = ((int)0X8025),
- Operand1RgbArb = ((int)0X8591),
- SubAti = ((int)0X8965),
- Reg16Ati = ((int)0X8931),
- CopyPixelToken = ((int)0X0706),
- ColorAttachment0Ext = ((int)0X8ce0),
- TransposeTextureMatrixArb = ((int)0X84e5),
- EdgeFlagArrayStride = ((int)0X808c),
- AttribArrayPointerNv = ((int)0X8645),
- MaxProjectionStackDepth = ((int)0X0d38),
- Modelview18Arb = ((int)0X8732),
- FloatMat4 = ((int)0X8b5c),
- DepthTest = ((int)0X0b71),
- BackSecondaryColorNv = ((int)0X8c78),
- ColorAttachment13Ext = ((int)0X8ced),
- Map2BinormalExt = ((int)0X8447),
- BoolArb = ((int)0X8b56),
- CompressedTextureFormats = ((int)0X86a3),
- Source2AlphaArb = ((int)0X858a),
- CompressedAlphaArb = ((int)0X84e9),
- PostConvolutionRedScaleExt = ((int)0X801c),
- SignedLuminance8Nv = ((int)0X8702),
- Light4 = ((int)0X4004),
- Aux1 = ((int)0X040a),
- StencilClearTagValueExt = ((int)0X88f3),
- IntSampler2DExt = ((int)0X8dca),
- OutputTextureCoord31Ext = ((int)0X87bc),
- PostConvolutionBlueScaleExt = ((int)0X801e),
- TextureLequalRSgix = ((int)0X819c),
- PixelMapIToA = ((int)0X0c75),
- ColorAttachment8Ext = ((int)0X8ce8),
- FramebufferCompleteExt = ((int)0X8cd5),
- ColorTableBiasSgi = ((int)0X80d7),
- FloatMat4x3 = ((int)0X8b6a),
- PnTrianglesPointModeLinearAti = ((int)0X87f5),
- Operand2Rgb = ((int)0X8592),
- OpDot3Ext = ((int)0X8784),
- R5G6B5IccSgix = ((int)0X8466),
- Notequal = ((int)0X0205),
- Polygon = ((int)0X0009),
- PixelPackBuffer = ((int)0X88eb),
- Reg10Ati = ((int)0X892b),
- TexturePriorityExt = ((int)0X8066),
- PixelTexGenSgix = ((int)0X8139),
- ColorMatrixStackDepth = ((int)0X80b2),
- TextureCubeMapNegativeZArb = ((int)0X851a),
- HalfBitAti = ((int)0X00000008),
- Reg25Ati = ((int)0X893a),
- Sluminance8Alpha8Ext = ((int)0X8c45),
- OutputTextureCoord19Ext = ((int)0X87b0),
- SampleBuffers = ((int)0X80a8),
- StaticRead = ((int)0X88e5),
- PackImageHeight = ((int)0X806c),
- HistogramLuminanceSizeExt = ((int)0X802c),
- BlendEquationRgb = ((int)0X8009),
- SampleMaskInvertExt = ((int)0X80ab),
- Gequal = ((int)0X0206),
- ElementArrayBuffer = ((int)0X8893),
- Nearest = ((int)0X2600),
- ProgramLengthNv = ((int)0X8627),
- FramebufferIncompleteDrawBufferExt = ((int)0X8cdb),
- Hilo16Nv = ((int)0X86f8),
- ColorTableLuminanceSizeSgi = ((int)0X80de),
- MatSpecularBitPgi = ((int)0X04000000),
- BlendEquationRgbExt = ((int)0X8009),
- IndexBits = ((int)0X0d51),
- TextureCubeMapNegativeYArb = ((int)0X8518),
- PointDistanceAttenuationArb = ((int)0X8129),
- MaxExt = ((int)0X8008),
- MaxProgramCallDepthNv = ((int)0X88f5),
- MatDiffuseBitPgi = ((int)0X00400000),
- DualTextureSelectSgis = ((int)0X8124),
- TextureCoordArrayStride = ((int)0X808a),
- FloatMat2x4 = ((int)0X8b66),
- MatAmbientAndDiffuseBitPgi = ((int)0X00200000),
- OutputFogExt = ((int)0X87bd),
- LineStipplePattern = ((int)0X0b25),
- DiscardNv = ((int)0X8530),
- FloatMat2x3 = ((int)0X8b65),
- IndexMaterialFaceExt = ((int)0X81ba),
- Source0AlphaExt = ((int)0X8588),
- Luminance12Alpha4Ext = ((int)0X8046),
- Modelview5Arb = ((int)0X8725),
- PixelMapBToB = ((int)0X0c78),
False = ((int)0),
- Texture2Arb = ((int)0X84c2),
- DrawBuffer13 = ((int)0X8832),
- TextureCubeMapNegativeXArb = ((int)0X8516),
- BlendSrcRgb = ((int)0X80c9),
- MaxVertexTextureImageUnits = ((int)0X8b4c),
- RgbaMode = ((int)0X0c31),
- Rgb32fArb = ((int)0X8815),
- ArrayPointer = ((int)0X8645),
- FloatR32Nv = ((int)0X8885),
- BinormalArrayExt = ((int)0X843a),
- MultisampleBit = ((int)0X20000000),
- AttribArrayStrideNv = ((int)0X8624),
- Reg13Ati = ((int)0X892e),
- DrawBuffer9Ati = ((int)0X882e),
- LerpAti = ((int)0X8969),
- MaxProgramExecInstructionsNv = ((int)0X88f4),
- PointSpriteRModeNv = ((int)0X8863),
- FragmentLightModelTwoSideSgix = ((int)0X8409),
- StencilTestTwoSideExt = ((int)0X8910),
- MaxColorMatrixStackDepth = ((int)0X80b3),
- Map2GridDomain = ((int)0X0dd2),
- VertexShaderInvariantsExt = ((int)0X87d1),
- StreamDrawArb = ((int)0X88e0),
- SpriteTranslationSgix = ((int)0X814b),
- PostConvolutionBlueBias = ((int)0X8022),
- OpAddExt = ((int)0X8787),
- ReflectionMap = ((int)0X8512),
- SecondaryColorArraySizeExt = ((int)0X845a),
- TextureRedTypeArb = ((int)0X8c10),
- DrawBuffer15 = ((int)0X8834),
- LightModelTwoSide = ((int)0X0b52),
- BlueBits = ((int)0X0d54),
- Depth24Stencil8Ext = ((int)0X88f0),
- Reg4Ati = ((int)0X8925),
- UnsignedByte = ((int)0X1401),
- OutputTextureCoord24Ext = ((int)0X87b5),
- DrawBuffer8Ati = ((int)0X882d),
- CurrentMatrixNv = ((int)0X8641),
- OutputTextureCoord20Ext = ((int)0X87b1),
- Exp2 = ((int)0X0801),
- FragmentDepthExt = ((int)0X8452),
- DotProductDepthReplaceNv = ((int)0X86ed),
- FogCoordinateArrayStrideExt = ((int)0X8455),
- Or = ((int)0X1507),
- VertexArrayStride = ((int)0X807c),
- StrictScissorHintPgi = ((int)0X1a218),
- SecondaryColorArrayStrideExt = ((int)0X845c),
- Texture8Arb = ((int)0X84c8),
- PreviousExt = ((int)0X8578),
- CompressedSrgb = ((int)0X8c48),
- FloatMat3x4 = ((int)0X8b68),
- StencilBufferBit = ((int)0X00000400),
- ColorAttachment11Ext = ((int)0X8ceb),
- MaxDrawBuffers = ((int)0X8824),
- OutOfMemory = ((int)0X0505),
- FloatMat3x2 = ((int)0X8b67),
- Luminance12Alpha12 = ((int)0X8047),
- ImageTranslateYHp = ((int)0X8158),
- EvalVertexAttrib13Nv = ((int)0X86d3),
- VertexProgramPointSizeArb = ((int)0X8642),
- Reg22Ati = ((int)0X8937),
- ProgramAluInstructionsArb = ((int)0X8805),
- TransformBit = ((int)0X00001000),
- OpSetLtExt = ((int)0X878d),
NoError = ((int)0),
- FramebufferSrgbExt = ((int)0X8db9),
- InfoLogLength = ((int)0X8b84),
- LuminanceFloat32Ati = ((int)0X8818),
- ColorMatrixSgi = ((int)0X80b1),
- StencilBackPassDepthFail = ((int)0X8802),
- VertexShaderLocalConstantsExt = ((int)0X87d2),
- ColorAttachment12Ext = ((int)0X8cec),
- SpotCutoff = ((int)0X1206),
- Texture3D = ((int)0X806f),
- WeightSumUnityArb = ((int)0X86a6),
- MaxTextureUnits = ((int)0X84e2),
- StaticCopy = ((int)0X88e6),
- VertexArrayListIbm = ((int)103070),
- DrawBuffer2Ati = ((int)0X8827),
- EdgeFlagArray = ((int)0X8079),
- BufferFlushingUnmapApple = ((int)0X8a13),
- Reg23Ati = ((int)0X8938),
- ShaderType = ((int)0X8b4f),
- InvalidValue = ((int)0X0501),
- VertexAttribArray9Nv = ((int)0X8659),
- Con2Ati = ((int)0X8943),
- TextureFilter4SizeSgis = ((int)0X8147),
- LuminanceFloat16Ati = ((int)0X881e),
- ColorMatrixStackDepthSgi = ((int)0X80b2),
- BlendDstAlpha = ((int)0X80ca),
- PointSpriteNv = ((int)0X8861),
- DualLuminance4Sgis = ((int)0X8114),
- DualLuminanceAlpha4Sgis = ((int)0X811c),
- Gl8XBitAti = ((int)0X00000004),
- TextureIndexSizeExt = ((int)0X80ed),
- DotProductDiffuseCubeMapNv = ((int)0X86f1),
- OffsetProjectiveTexture2DNv = ((int)0X8850),
- Intensity8Ext = ((int)0X804b),
- BufferSerializedModifyApple = ((int)0X8a12),
- NormalMapExt = ((int)0X8511),
- HistogramRedSizeExt = ((int)0X8028),
- Luminance12Alpha12Ext = ((int)0X8047),
- SignedHiloNv = ((int)0X86f9),
- PrimitiveRestartNv = ((int)0X8558),
- AllowDrawMemHintPgi = ((int)0X1a211),
- NegateBitAti = ((int)0X00000004),
- SignedHilo16Nv = ((int)0X86fa),
- SampleCoverageValueArb = ((int)0X80aa),
- IntVec4Arb = ((int)0X8b55),
- RestartSun = ((int)0X0001),
- ProgramFormat = ((int)0X8876),
- UnsignedShort88RevApple = ((int)0X85bb),
- PixelTileHeightSgix = ((int)0X8141),
- FogDensity = ((int)0X0b62),
- NumInstructionsTotalAti = ((int)0X8972),
- SecondaryColorArrayBufferBindingArb = ((int)0X889c),
- DrawBuffer10 = ((int)0X882f),
- Modelview1Ext = ((int)0X850a),
- FloatRgbaModeNv = ((int)0X888e),
- SrgbExt = ((int)0X8c40),
- Ycrcb444Sgix = ((int)0X81bc),
- Nand = ((int)0X150e),
- Dsdt8Mag8Intensity8Nv = ((int)0X870b),
- EyeDistanceToLineSgis = ((int)0X81f2),
- MatrixIndexArrayTypeArb = ((int)0X8847),
- MatAmbientBitPgi = ((int)0X00100000),
- ClientAllAttribBits = unchecked((int)0Xffffffff),
- ColorAttachment15Ext = ((int)0X8cef),
- MaxVertexStreamsAti = ((int)0X876b),
- MaxFragmentProgramLocalParametersNv = ((int)0X8868),
- FogIndex = ((int)0X0b61),
- ConstantAttenuation = ((int)0X1207),
- ZoomY = ((int)0X0d17),
- ZoomX = ((int)0X0d16),
- FramebufferAttachmentTextureCubeMapFaceExt = ((int)0X8cd3),
- ReadWriteArb = ((int)0X88ba),
- AlphaTest = ((int)0X0bc0),
- Equiv = ((int)0X1509),
- DrawBuffer7Ati = ((int)0X882c),
- TextureEnv = ((int)0X2300),
- ListPrioritySgix = ((int)0X8182),
- Texture30 = ((int)0X84de),
- Texture31 = ((int)0X84df),
- ProgramAttribs = ((int)0X88ac),
- RenderbufferWidthExt = ((int)0X8d42),
- Matrix8 = ((int)0X88c8),
- Matrix9 = ((int)0X88c9),
- CurrentVertexAttrib = ((int)0X8626),
- Map2VertexAttrib34Nv = ((int)0X8673),
- TextureBufferDataStoreBindingExt = ((int)0X8c2d),
- GlobalAlphaSun = ((int)0X81d9),
- CompressedSignedRedRgtc1Ext = ((int)0X8dbc),
- TextureResidentExt = ((int)0X8067),
- OutputTextureCoord29Ext = ((int)0X87ba),
- EmbossConstantNv = ((int)0X855e),
- ConvolutionFilterScale = ((int)0X8014),
- HistogramFormatExt = ((int)0X8027),
- Srgb8Alpha8 = ((int)0X8c43),
- PostConvolutionAlphaScaleExt = ((int)0X801f),
- CombinerMuxSumNv = ((int)0X8547),
- FramebufferAttachmentObjectNameExt = ((int)0X8cd1),
- OpLogBase2Ext = ((int)0X8792),
- TextureEnvColor = ((int)0X2201),
- TextureDsSizeNv = ((int)0X871d),
- ModulateSubtractAti = ((int)0X8746),
- Gl4Pass0Ext = ((int)0X80a4),
- ConstantExt = ((int)0X8576),
- ImageMagFilterHp = ((int)0X815c),
- LocalExt = ((int)0X87c4),
- Source0RgbArb = ((int)0X8580),
- FragmentLight3Sgix = ((int)0X840f),
- AddSigned = ((int)0X8574),
- MaxTextureUnitsArb = ((int)0X84e2),
- Reg0Ati = ((int)0X8921),
- SignedRgba8Nv = ((int)0X86fc),
- DualLuminance12Sgis = ((int)0X8116),
- FragmentProgramNv = ((int)0X8870),
- DrawBuffer1Ati = ((int)0X8826),
- Intensity16uiExt = ((int)0X8d79),
- BufferSizeArb = ((int)0X8764),
- OutputTextureCoord21Ext = ((int)0X87b2),
- NameStackDepth = ((int)0X0d70),
- BlendEquationExt = ((int)0X8009),
- VertexWeightArraySizeExt = ((int)0X850d),
- Texture20 = ((int)0X84d4),
- BackLeft = ((int)0X0402),
- OpRecipExt = ((int)0X8794),
- RedMinClampIngr = ((int)0X8560),
- FenceApple = ((int)0X8a0b),
- OpMaxExt = ((int)0X878a),
- TextureMaxClampRSgix = ((int)0X836b),
- DrawBuffer0Ati = ((int)0X8825),
- TextureFloatComponentsNv = ((int)0X888c),
- OutputTextureCoord16Ext = ((int)0X87ad),
- Alpha8 = ((int)0X803c),
- TriangleMeshSun = ((int)0X8615),
- VertexArrayPointer = ((int)0X808e),
- UnsignedByte233RevExt = ((int)0X8362),
- ConvolutionFormatExt = ((int)0X8017),
- EdgeFlagArrayListStrideIbm = ((int)103085),
- ObjectActiveUniformsArb = ((int)0X8b86),
- TextureBindingRectangleArb = ((int)0X84f6),
- SampleCoverage = ((int)0X80a0),
- TextureDepthTypeArb = ((int)0X8c16),
- LoScaleNv = ((int)0X870f),
- DrawBuffer9Arb = ((int)0X882e),
- StencilIndex1Ext = ((int)0X8d46),
- VertexWeightingExt = ((int)0X8509),
- ColorIndex = ((int)0X1900),
- DeformationsMaskSgix = ((int)0X8196),
- Version = ((int)0X1f02),
- AllowDrawWinHintPgi = ((int)0X1a20f),
- Source0AlphaArb = ((int)0X8588),
- Alpha4 = ((int)0X803b),
- Dot3Rgb = ((int)0X86ae),
- CullModesNv = ((int)0X86e0),
- MaterialSideHintPgi = ((int)0X1a22c),
- MirroredRepeatIbm = ((int)0X8370),
- StencilFunc = ((int)0X0b92),
- DepthBufferBit = ((int)0X00000100),
- CombineRgbExt = ((int)0X8571),
- Map2VertexAttrib74Nv = ((int)0X8677),
- TextureLodBiasRSgix = ((int)0X8190),
- StencilPassDepthPass = ((int)0X0b96),
- DynamicCopyArb = ((int)0X88ea),
- VertexProgramPointSize = ((int)0X8642),
- OutputTextureCoord11Ext = ((int)0X87a8),
- Convolution1D = ((int)0X8010),
- VariantArrayTypeExt = ((int)0X87e7),
- DualLuminanceAlpha8Sgis = ((int)0X811d),
- SwizzleStrAti = ((int)0X8976),
- ColorIndexes = ((int)0X1603),
- SignedIntensity8Nv = ((int)0X8708),
- AlphaBias = ((int)0X0d1d),
- VertexAttribArray4Nv = ((int)0X8654),
- UnpackLsbFirst = ((int)0X0cf1),
- CurrentOcclusionQueryIdNv = ((int)0X8865),
- DepthComponent32Arb = ((int)0X81a7),
- GeometryDeformationBitSgix = ((int)0X00000002),
- Map2VertexAttrib44Nv = ((int)0X8674),
- ProgramObjectArb = ((int)0X8b40),
- DecrWrap = ((int)0X8508),
- Texture6Arb = ((int)0X84c6),
- Texture3 = ((int)0X84c3),
- Points = ((int)0X0000),
- UniformBufferBindingExt = ((int)0X8def),
- ProgramErrorPositionArb = ((int)0X864b),
- ConvolutionHintSgix = ((int)0X8316),
- SecondaryColorArrayStride = ((int)0X845c),
- Operand3AlphaNv = ((int)0X859b),
- UnsignedInt8888Reversed = ((int)0X8367),
- PointSizeMaxExt = ((int)0X8127),
- Texture12Arb = ((int)0X84cc),
- IntSampler1DExt = ((int)0X8dc9),
- ETimesFNv = ((int)0X8531),
- VertexArrayTypeExt = ((int)0X807b),
- BufferAccessArb = ((int)0X88bb),
- Rgb4 = ((int)0X804f),
- MaxVertexArrayRangeElementNv = ((int)0X8520),
- ColorArraySizeExt = ((int)0X8081),
- ActiveVaryingsNv = ((int)0X8c81),
- UnpackImageDepthSgis = ((int)0X8133),
- VertexProgramTwoSideNv = ((int)0X8643),
- UnsignedInt8888Rev = ((int)0X8367),
- Dot3RgbaArb = ((int)0X86af),
- EyePlaneAbsoluteNv = ((int)0X855c),
- DepthTextureMode = ((int)0X884b),
- BoolVec2Arb = ((int)0X8b57),
- YExt = ((int)0X87d6),
- Always = ((int)0X0207),
- CurrentRasterPositionValid = ((int)0X0b08),
- Operand1RgbExt = ((int)0X8591),
- RescaleNormalExt = ((int)0X803a),
- OffsetTextureScaleNv = ((int)0X86e2),
- NormalArrayBufferBinding = ((int)0X8897),
- FragmentLight4Sgix = ((int)0X8410),
- PointFadeThresholdSize = ((int)0X8128),
- MaxOptimizedVertexShaderVariantsExt = ((int)0X87cb),
- UnsignedInt10F11F11FRevExt = ((int)0X8c3b),
- VertexArrayRangeApple = ((int)0X851d),
- SluminanceAlpha = ((int)0X8c44),
- SpotDirection = ((int)0X1204),
- ArrayNormalized = ((int)0X886a),
- DecrWrapExt = ((int)0X8508),
- Alpha12 = ((int)0X803d),
- CombinerCdOutputNv = ((int)0X854b),
- RgbIccSgix = ((int)0X8460),
- TextureCompressionHint = ((int)0X84ef),
- Gl2Pass1Sgis = ((int)0X80a3),
- ResampleReplicateOml = ((int)0X8986),
- MaxConvolutionHeightExt = ((int)0X801b),
- ScaleByOneHalfNv = ((int)0X8540),
- PixelMapSToSSize = ((int)0X0cb1),
- ArrayBufferBinding = ((int)0X8894),
- Map2VertexAttrib144Nv = ((int)0X867e),
- OcclusionTestHp = ((int)0X8165),
- StencilIndex4Ext = ((int)0X8d47),
- C4fN3fV3f = ((int)0X2a26),
- InvalidEnum = ((int)0X0500),
- DepthBits = ((int)0X0d56),
- CompressedSrgbAlphaExt = ((int)0X8c49),
- DrawBuffer4Arb = ((int)0X8829),
- TextureCubeMapPositiveYExt = ((int)0X8517),
- ProgramParameters = ((int)0X88a8),
- Gl2Bytes = ((int)0X1407),
- PreviousTextureInputNv = ((int)0X86e4),
- CopyInverted = ((int)0X150c),
- ImageRotateOriginYHp = ((int)0X815b),
- Matrix28 = ((int)0X88dc),
- FogOffsetValueSgix = ((int)0X8199),
- FuncReverseSubtractExt = ((int)0X800b),
- TextureBlueTypeArb = ((int)0X8c12),
- Map2TextureCoord1 = ((int)0X0db3),
- Exp = ((int)0X0800),
- PostColorMatrixRedScale = ((int)0X80b4),
- ColorArrayListIbm = ((int)103072),
- MaxGeometryTextureImageUnitsExt = ((int)0X8c29),
- SignedRgb8Nv = ((int)0X86ff),
- EmbossLightNv = ((int)0X855d),
- LuminanceAlphaFloat32Ati = ((int)0X8819),
- LuminanceAlpha16fArb = ((int)0X881f),
- Map1BinormalExt = ((int)0X8446),
- ColorTable = ((int)0X80d0),
- DrawBuffer7Arb = ((int)0X882c),
- Eval2DNv = ((int)0X86c0),
- FramebufferIncompleteFormatsExt = ((int)0X8cda),
- Operand2AlphaExt = ((int)0X859a),
- ModelviewStackDepth = ((int)0X0ba3),
- Intensity8 = ((int)0X804b),
- FormatSubsample2424Oml = ((int)0X8982),
- Modelview9Arb = ((int)0X8729),
- ShadowAttenuationExt = ((int)0X834e),
- SampleMaskSgis = ((int)0X80a0),
- ColorSumExt = ((int)0X8458),
- ClampToEdge = ((int)0X812f),
- NormalArrayListStrideIbm = ((int)103081),
- ColorArrayPointerExt = ((int)0X8090),
- TextureGreenSize = ((int)0X805d),
- BlendDstRgb = ((int)0X80c8),
- TextureCompressedImageSizeArb = ((int)0X86a0),
- CurrentRasterSecondaryColor = ((int)0X845f),
- Convolution2D = ((int)0X8011),
- Gl1PassExt = ((int)0X80a1),
- CubicExt = ((int)0X8334),
- VertexAttribArray3Nv = ((int)0X8653),
- ProxyTexture3D = ((int)0X8070),
- ProxyTexture2D = ((int)0X8064),
- ProxyTexture1D = ((int)0X8063),
- ArrayBuffer = ((int)0X8892),
- OpClampExt = ((int)0X878e),
- ParallelArraysIntel = ((int)0X83f4),
- ListIndex = ((int)0X0b33),
- OneMinusSrcAlpha = ((int)0X0303),
- SamplesExt = ((int)0X80a9),
- SecondaryColorArrayExt = ((int)0X845e),
- DualIntensity16Sgis = ((int)0X811b),
- ConstantAlpha = ((int)0X8003),
- OutputTextureCoord10Ext = ((int)0X87a7),
- Texture5Arb = ((int)0X84c5),
- ProxyTexture1DStackMesax = ((int)0X875b),
- ObjectPointSgis = ((int)0X81f5),
- ReduceExt = ((int)0X8016),
- Clear = ((int)0X1500),
- CompressedLuminanceAlpha = ((int)0X84eb),
- FragmentShaderDerivativeHint = ((int)0X8b8b),
- MaxProgramLocalParameters = ((int)0X88b4),
- SelectionBufferSize = ((int)0X0df4),
- DepthWritemask = ((int)0X0b72),
- FuncSubtract = ((int)0X800a),
- ColorArrayBufferBinding = ((int)0X8898),
- TextureApplicationModeExt = ((int)0X834f),
- RenderbufferHeightExt = ((int)0X8d43),
- WExt = ((int)0X87d8),
- Modelview0Ext = ((int)0X1700),
- CurrentQuery = ((int)0X8865),
- TextureMaxClampTSgix = ((int)0X836a),
- Gl4Pass3Ext = ((int)0X80a7),
- VertexArrayCountExt = ((int)0X807d),
- Rgb5A1Ext = ((int)0X8057),
- DrawBuffer0Arb = ((int)0X8825),
- TextureBindingCubeMapExt = ((int)0X8514),
- DistanceAttenuationSgis = ((int)0X8129),
- OffsetHiloProjectiveTexture2DNv = ((int)0X8856),
- ColorBufferBit = ((int)0X00004000),
- MaxGeometryOutputVerticesExt = ((int)0X8de0),
- Map1VertexAttrib114Nv = ((int)0X866b),
- InvertedScreenWRend = ((int)0X8491),
- Reg12Ati = ((int)0X892d),
- VertexArrayRangePointerApple = ((int)0X8521),
- MirroredRepeat = ((int)0X8370),
- CoordReplaceNv = ((int)0X8862),
- TextureLodBiasSSgix = ((int)0X818e),
- OpMaddExt = ((int)0X8788),
- Left = ((int)0X0406),
- Intensity4 = ((int)0X804a),
- Color4BitPgi = ((int)0X00020000),
- CompressedSrgbAlphaS3tcDxt5Ext = ((int)0X8c4f),
- EvalVertexAttrib3Nv = ((int)0X86c9),
- FuncAdd = ((int)0X8006),
- Texture3DBindingExt = ((int)0X806a),
- SwizzleStqAti = ((int)0X8977),
- ProgramNativeInstructions = ((int)0X88a2),
- MaxTextureSize = ((int)0X0d33),
- TexturePriority = ((int)0X8066),
- Gl4Pass1Ext = ((int)0X80a5),
- DrawBuffer3Arb = ((int)0X8828),
- ProxyTexture1DArrayExt = ((int)0X8c19),
- Gl2Pass0Sgis = ((int)0X80a2),
- OpMulExt = ((int)0X8786),
- DualAlpha12Sgis = ((int)0X8112),
- CombineAlpha = ((int)0X8572),
- MaxVertexUniformComponentsArb = ((int)0X8b4a),
- OutputTextureCoord17Ext = ((int)0X87ae),
- CombineArb = ((int)0X8570),
- VertexProgramBindingNv = ((int)0X864a),
- CoordReplaceArb = ((int)0X8862),
- Dot3RgbaExt = ((int)0X8741),
- NormalArray = ((int)0X8075),
- MaxVaryingFloatsArb = ((int)0X8b4b),
- ModelviewMatrix = ((int)0X0ba6),
- Luminance32uiExt = ((int)0X8d74),
- PixelTransform2DExt = ((int)0X8330),
- TextureBlueSizeExt = ((int)0X805e),
- RescaleNormal = ((int)0X803a),
- Map2VertexAttrib94Nv = ((int)0X8679),
- VertexBlendArb = ((int)0X86a7),
- NormalMapArb = ((int)0X8511),
- Alpha8uiExt = ((int)0X8d7e),
- PostTextureFilterBiasSgix = ((int)0X8179),
- IuiN3fV2fExt = ((int)0X81af),
- MaxTextureLodBiasExt = ((int)0X84fd),
- FragmentColorExt = ((int)0X834c),
- ColorTableGreenSizeSgi = ((int)0X80db),
- DepthClampNv = ((int)0X864f),
- MaxFogFuncPointsSgis = ((int)0X812c),
- Intensity32uiExt = ((int)0X8d73),
- CompressedSrgbAlphaS3tcDxt3Ext = ((int)0X8c4e),
- Luminance8Alpha8Ext = ((int)0X8045),
- Float = ((int)0X1406),
- ClampFragmentColorArb = ((int)0X891b),
- Modelview10Arb = ((int)0X872a),
- NumLoopbackComponentsAti = ((int)0X8974),
- Texture26 = ((int)0X84da),
- Texture27 = ((int)0X84db),
- Rgba8uiExt = ((int)0X8d7c),
- TextureMinFilter = ((int)0X2801),
- Rgb32iExt = ((int)0X8d83),
- Max3DTextureSize = ((int)0X8073),
- FogCoordArrayStride = ((int)0X8455),
- Texture2 = ((int)0X84c2),
- UnsignedInt1010102Ext = ((int)0X8036),
- StencilAttachmentExt = ((int)0X8d20),
- MaxProgramParameterBufferSizeNv = ((int)0X8da1),
- Doublebuffer = ((int)0X0c32),
- EvalVertexAttrib6Nv = ((int)0X86cc),
- SampleAlphaToMaskExt = ((int)0X809e),
- MaxShininessNv = ((int)0X8504),
- OneExt = ((int)0X87de),
- ObjectDistanceToLineSgis = ((int)0X81f3),
- DetailTexture2DSgis = ((int)0X8095),
- Texture2DStackBindingMesax = ((int)0X875e),
- MaxProgramInstructions = ((int)0X88a1),
- OneMinusConstantAlpha = ((int)0X8004),
- CullFaceMode = ((int)0X0b45),
- PixelMapIToGSize = ((int)0X0cb3),
- AndReverse = ((int)0X1502),
- FogCoordinateArrayListIbm = ((int)103076),
- ProgramNativeAttribs = ((int)0X88ae),
- UnsignedInt2101010Rev = ((int)0X8368),
- BiasByNegativeOneHalfNv = ((int)0X8541),
- InterlaceReadIngr = ((int)0X8568),
- ColorTableBias = ((int)0X80d7),
- FloatRgb16Nv = ((int)0X8888),
- Map1VertexAttrib74Nv = ((int)0X8667),
- GenericAttribNv = ((int)0X8c7d),
- Map2Vertex4 = ((int)0X0db8),
- Matrix24 = ((int)0X88d8),
- StencilBackPassDepthFailAti = ((int)0X8802),
- Map2Vertex3 = ((int)0X0db7),
- TextureCoordNv = ((int)0X8c79),
- AndInverted = ((int)0X1504),
- Map2VertexAttrib84Nv = ((int)0X8678),
- AsyncReadPixelsSgix = ((int)0X835e),
- ColorIndex12Ext = ((int)0X80e6),
- ReplicateBorderHp = ((int)0X8153),
- SampleMaskValueSgis = ((int)0X80aa),
- PostColorMatrixColorTable = ((int)0X80d2),
- IndexArrayStride = ((int)0X8086),
- Bitmap = ((int)0X1a00),
- T2fIuiN3fV2fExt = ((int)0X81b3),
- PostColorMatrixBlueBiasSgi = ((int)0X80ba),
- MinmaxFormat = ((int)0X802f),
- EvalVertexAttrib0Nv = ((int)0X86c6),
- OrReverse = ((int)0X150b),
- Srgb = ((int)0X8c40),
- ArraySize = ((int)0X8623),
- Max3DTextureSizeExt = ((int)0X8073),
- Sampler1DShadowArb = ((int)0X8b61),
- LinearSharpenColorSgis = ((int)0X80af),
- FramebufferAttachmentLayeredExt = ((int)0X8da7),
- Rgb9E5Ext = ((int)0X8c3d),
- AlphaBits = ((int)0X0d55),
- Sluminance8 = ((int)0X8c47),
- Con7Ati = ((int)0X8948),
- Luminance12Alpha4 = ((int)0X8046),
- TextureGenS = ((int)0X0c60),
- Less = ((int)0X0201),
- TextureGenQ = ((int)0X0c63),
- UnsignedShort88Mesa = ((int)0X85ba),
- FloatVec3Arb = ((int)0X8b51),
- TextureGenT = ((int)0X0c61),
- CmykExt = ((int)0X800c),
- EvalVertexAttrib1Nv = ((int)0X86c7),
- Gl3D = ((int)0X0601),
- OpFracExt = ((int)0X8789),
- TextureBit = ((int)0X00040000),
- Map2VertexAttrib24Nv = ((int)0X8672),
- Rgb = ((int)0X1907),
- Con15Ati = ((int)0X8950),
- SampleAlphaToOneExt = ((int)0X809f),
- MultisampleExt = ((int)0X809d),
- DrawBuffer0 = ((int)0X8825),
- Interpolate = ((int)0X8575),
- Rgba32fArb = ((int)0X8814),
- SeparateSpecularColor = ((int)0X81fa),
- Aux0 = ((int)0X0409),
- StackUnderflow = ((int)0X0504),
- ConstantArb = ((int)0X8576),
- MaxFragmentUniformComponentsArb = ((int)0X8b49),
- FloatVec2Arb = ((int)0X8b50),
- OffsetHiloProjectiveTextureRectangleNv = ((int)0X8857),
- OffsetTexture2DNv = ((int)0X86e8),
- PackRowLength = ((int)0X0d02),
- RenderbufferBindingExt = ((int)0X8ca7),
- SmoothPointSizeRange = ((int)0X0b12),
- Con16Ati = ((int)0X8951),
- AddAti = ((int)0X8963),
- Matrix12 = ((int)0X88cc),
- VertexArrayType = ((int)0X807b),
- VertexAttribArrayBufferBinding = ((int)0X889f),
- Texture2DStackMesax = ((int)0X875a),
- CurrentMatrixIndexArb = ((int)0X8845),
- QueryCounterBitsArb = ((int)0X8864),
- TextureBaseLevelSgis = ((int)0X813c),
- GenerateMipmapHintSgis = ((int)0X8192),
- OutputTextureCoord14Ext = ((int)0X87ab),
- MaxTextureImageUnitsNv = ((int)0X8872),
- BlendSrcRgbExt = ((int)0X80c9),
- IndexWritemask = ((int)0X0c21),
- Position = ((int)0X1203),
- ProgramNativeParameters = ((int)0X88aa),
- XExt = ((int)0X87d5),
- Con17Ati = ((int)0X8952),
- DynamicDrawArb = ((int)0X88e8),
- BumpRotMatrixAti = ((int)0X8775),
- RenderbufferAlphaSizeExt = ((int)0X8d53),
- Combiner5Nv = ((int)0X8555),
- OffsetTextureBiasNv = ((int)0X86e3),
- Gl422RevAverageExt = ((int)0X80cf),
- WrapBorderSun = ((int)0X81d4),
- OutputVertexExt = ((int)0X879a),
- LoBiasNv = ((int)0X8715),
- HistogramBlueSize = ((int)0X802a),
- Combine4Nv = ((int)0X8503),
- FloatVec4Arb = ((int)0X8b52),
- UnsignedIntSampler1DExt = ((int)0X8dd1),
- ReplacementCodeArrayTypeSun = ((int)0X85c1),
- SamplesArb = ((int)0X80a9),
- ProgramNativeTexInstructionsArb = ((int)0X8809),
- ColorTableFormatSgi = ((int)0X80d8),
- ProxyTextureColorTableSgi = ((int)0X80bd),
- Map2VertexAttrib14Nv = ((int)0X8671),
- MaxViewportDims = ((int)0X0d3a),
- DepthComponent24Arb = ((int)0X81a6),
- ColorTableScaleSgi = ((int)0X80d6),
- AlphaMaxSgix = ((int)0X8321),
- PixelCubicWeightExt = ((int)0X8333),
- ProxyPostConvolutionColorTableSgi = ((int)0X80d4),
- DrawFramebufferBindingExt = ((int)0X8caa),
- EvalVertexAttrib5Nv = ((int)0X86cb),
- TextureComponents = ((int)0X1003),
- Map2TextureCoord4 = ((int)0X0db6),
- Map2TextureCoord2 = ((int)0X0db4),
- Map2TextureCoord3 = ((int)0X0db5),
- DepthPassInstrumentMaxSgix = ((int)0X8312),
- Matrix18 = ((int)0X88d2),
- Mult = ((int)0X0103),
- ImageScaleYHp = ((int)0X8156),
- ColorIndex8Ext = ((int)0X80e5),
- StencilBackPassDepthPassAti = ((int)0X8803),
- DependentGbTexture2DNv = ((int)0X86ea),
- Modelview0Arb = ((int)0X1700),
- SamplerCubeArb = ((int)0X8b60),
- BlendColor = ((int)0X8005),
- C3fV3f = ((int)0X2a24),
- UnsignedShort4444Ext = ((int)0X8033),
- FloatRgbNv = ((int)0X8882),
- ReplacementCodeArrayPointerSun = ((int)0X85c3),
- DrawPixelToken = ((int)0X0705),
- PointSizeGranularity = ((int)0X0b13),
- TextureGequalRSgix = ((int)0X819d),
- Max = ((int)0X8008),
- TriangleFan = ((int)0X0006),
- ImageScaleXHp = ((int)0X8155),
- QuadIntensity8Sgis = ((int)0X8123),
- UnpackSkipPixels = ((int)0X0cf4),
- LineLoop = ((int)0X0002),
- BlendDstAlphaExt = ((int)0X80ca),
- DualIntensity8Sgis = ((int)0X8119),
- Map1VertexAttrib154Nv = ((int)0X866f),
- Alpha12Ext = ((int)0X803d),
- MaxVertexShaderLocalConstantsExt = ((int)0X87c8),
- SpriteSgix = ((int)0X8148),
- AllowDrawFrgHintPgi = ((int)0X1a210),
- TextureCompressedArb = ((int)0X86a1),
- VertexArrayRangeLengthNv = ((int)0X851e),
- QuadAlpha8Sgis = ((int)0X811f),
- VertexAttribArrayBufferBindingArb = ((int)0X889f),
- Source0RgbExt = ((int)0X8580),
- V2f = ((int)0X2a20),
- FloatRgbaNv = ((int)0X8883),
- IdentityNv = ((int)0X862a),
- InvalidOperation = ((int)0X0502),
- Con13Ati = ((int)0X894e),
- AllowDrawObjHintPgi = ((int)0X1a20e),
- Map2VertexAttrib04Nv = ((int)0X8670),
- LinearDetailColorSgis = ((int)0X8099),
- SampleAlphaToOne = ((int)0X809f),
- VertexProgramTwoSide = ((int)0X8643),
- ActiveAttributes = ((int)0X8b89),
- TangentArrayStrideExt = ((int)0X843f),
- Luminance8Alpha8 = ((int)0X8045),
- DrawPixelsApple = ((int)0X8a0a),
- ValidateStatus = ((int)0X8b83),
- ClampToBorder = ((int)0X812d),
- DotProductTexture2DNv = ((int)0X86ee),
- R11fG11fB10fExt = ((int)0X8c3a),
- PointSizeMin = ((int)0X8126),
- AccumBufferBit = ((int)0X00000200),
- Texture15Arb = ((int)0X84cf),
- Gl3DColorTexture = ((int)0X0603),
- PreserveAti = ((int)0X8762),
- UnsignedIntSamplerBufferExt = ((int)0X8dd8),
- MaxElementsIndices = ((int)0X80e9),
- DotProductConstEyeReflectCubeMapNv = ((int)0X86f3),
- VertexProgramTwoSideArb = ((int)0X8643),
- QuadIntensity4Sgis = ((int)0X8122),
- Texture2D = ((int)0X0de1),
- SampleMaskValueExt = ((int)0X80aa),
- ImageMinFilterHp = ((int)0X815d),
- Con14Ati = ((int)0X894f),
- CompressedIntensityArb = ((int)0X84ec),
- LuminanceAlphaIntegerExt = ((int)0X8d9d),
- PixelTileCacheSizeSgix = ((int)0X8145),
- CurrentVertexWeightExt = ((int)0X850b),
- LuminanceAlpha8uiExt = ((int)0X8d81),
- Rgba16uiExt = ((int)0X8d76),
- BlueMaxClampIngr = ((int)0X8566),
- AutoNormal = ((int)0X0d80),
- Gl422Ext = ((int)0X80cc),
- Sampler2DRectArb = ((int)0X8b63),
- OffsetHiloTextureRectangleNv = ((int)0X8855),
- CompressedLuminanceAlphaArb = ((int)0X84eb),
- EvalVertexAttrib9Nv = ((int)0X86cf),
- RedScale = ((int)0X0d14),
- TextFragmentShaderAti = ((int)0X8200),
- ElementArrayBufferBinding = ((int)0X8895),
- CompressedRgbArb = ((int)0X84ed),
- RedMaxClampIngr = ((int)0X8564),
- Modulate = ((int)0X2100),
- Texcoord4BitPgi = unchecked((int)0X80000000),
- QueryResultAvailableArb = ((int)0X8867),
- ScalarExt = ((int)0X87be),
- TextureCoordArrayType = ((int)0X8089),
- DsdtMagVibNv = ((int)0X86f7),
- Right = ((int)0X0407),
- MaxAsyncDrawPixelsSgix = ((int)0X8360),
- Con1Ati = ((int)0X8942),
- Gl1PassSgis = ((int)0X80a1),
- ObjectLineSgis = ((int)0X81f7),
- ActiveTextureArb = ((int)0X84e0),
- SampleAlphaToOneSgis = ((int)0X809f),
- InvalidFramebufferOperationExt = ((int)0X0506),
- DrawBuffer15Ati = ((int)0X8834),
- MaxCubeMapTextureSizeArb = ((int)0X851c),
- UnsignedInt1010102 = ((int)0X8036),
- UnsignedIntSampler2DExt = ((int)0X8dd2),
- Map2VertexAttrib54Nv = ((int)0X8675),
- UnpackConstantDataSunx = ((int)0X81d5),
- Rgba4Ext = ((int)0X8056),
- UnpackClientStorageApple = ((int)0X85b2),
- FloatMat2Arb = ((int)0X8b5a),
- Alpha16Ext = ((int)0X803e),
- DrawBuffer11 = ((int)0X8830),
- CurrentIndex = ((int)0X0b01),
- Sampler2DShadow = ((int)0X8b62),
- TransposeModelviewMatrix = ((int)0X84e3),
- StencilClearValue = ((int)0X0b91),
- TextureDtSizeNv = ((int)0X871e),
- Separable2D = ((int)0X8012),
- TransformFeedbackRecordNv = ((int)0X8c86),
- BlueBias = ((int)0X0d1b),
- MirroredRepeatArb = ((int)0X8370),
- ColorArray = ((int)0X8076),
- RasterPositionUnclippedIbm = ((int)0X19262),
- ActiveVertexUnitsArb = ((int)0X86a5),
- AliasedPointSizeRange = ((int)0X846d),
- DrawBuffer13Ati = ((int)0X8832),
- Double = ((int)0X140a),
- FogColor = ((int)0X0b66),
- FramezoomFactorSgix = ((int)0X818c),
- Texture24 = ((int)0X84d8),
- Texture25 = ((int)0X84d9),
- Texture22 = ((int)0X84d6),
- PointSizeMinArb = ((int)0X8126),
- TextureWrapS = ((int)0X2802),
- Texture21 = ((int)0X84d5),
- RgbFloat16Ati = ((int)0X881b),
- MaxProgramParameters = ((int)0X88a9),
- T2fIuiN3fV3fExt = ((int)0X81b4),
- T2fC4fN3fV3f = ((int)0X2a2c),
- R1uiT2fN3fV3fSun = ((int)0X85ca),
- Texture28 = ((int)0X84dc),
- Texture29 = ((int)0X84dd),
- TextureBaseLevel = ((int)0X813c),
- PointSizeMaxArb = ((int)0X8127),
- Con10Ati = ((int)0X894b),
- Specular = ((int)0X1202),
- PostConvolutionRedBias = ((int)0X8020),
- Src0Alpha = ((int)0X8588),
- IndexLogicOp = ((int)0X0bf1),
- BinormalArrayStrideExt = ((int)0X8441),
- UnsignedIntSampler1DArrayExt = ((int)0X8dd6),
- NormalArrayPointer = ((int)0X808f),
- CompressedSluminance = ((int)0X8c4a),
- MagnitudeScaleNv = ((int)0X8712),
- AddSignedArb = ((int)0X8574),
- BufferUsageArb = ((int)0X8765),
- MinExt = ((int)0X8007),
- TextureTooLargeExt = ((int)0X8065),
- VertexAttribArray5Nv = ((int)0X8655),
- SignedLuminanceAlphaNv = ((int)0X8703),
- MaxOptimizedVertexShaderInvariantsExt = ((int)0X87cd),
- CurrentQueryArb = ((int)0X8865),
- TransformFeedbackAttribsNv = ((int)0X8c7e),
- PixelMapRToRSize = ((int)0X0cb6),
- HistogramAlphaSizeExt = ((int)0X802b),
- UnsignedShort565 = ((int)0X8363),
- IntSampler2DRectExt = ((int)0X8dcd),
- LogicOpMode = ((int)0X0bf0),
- Extensions = ((int)0X1f03),
- CompressedSrgbExt = ((int)0X8c48),
- StencilBackFuncAti = ((int)0X8800),
- AliasedLineWidthRange = ((int)0X846e),
- DudvAti = ((int)0X8779),
- DepthComponent32 = ((int)0X81a7),
- MaxProgramMatrixStackDepthArb = ((int)0X862e),
- Operand1AlphaExt = ((int)0X8599),
- PixelTexGenAlphaLsSgix = ((int)0X8189),
- MaxSpotExponentNv = ((int)0X8505),
- PixelCountNv = ((int)0X8866),
- TextureBinding1D = ((int)0X8068),
- EvalVertexAttrib10Nv = ((int)0X86d0),
- TextureBinding3D = ((int)0X806a),
- TextureBinding2D = ((int)0X8069),
- HiBiasNv = ((int)0X8714),
- TextureMaxClampSSgix = ((int)0X8369),
- CompressedSignedLuminanceAlphaLatc2Ext = ((int)0X8c73),
- Invert = ((int)0X150a),
- Luminance4Alpha4 = ((int)0X8043),
- Map1VertexAttrib144Nv = ((int)0X866e),
- MatShininessBitPgi = ((int)0X02000000),
- AttachedShaders = ((int)0X8b85),
- T2fIuiV2fExt = ((int)0X81b1),
- Spare0Nv = ((int)0X852e),
- PixelUnpackBufferExt = ((int)0X88ec),
- VertexAttribArray6Nv = ((int)0X8656),
- Map2GridSegments = ((int)0X0dd3),
- Matrix4 = ((int)0X88c4),
- TransformFeedbackBufferStartNv = ((int)0X8c84),
- DepthTextureModeArb = ((int)0X884b),
- Rgba16fArb = ((int)0X881a),
- FogCoordArrayType = ((int)0X8454),
- Decal = ((int)0X2101),
- FramebufferSrgbCapableExt = ((int)0X8dba),
- MirrorClampToEdgeExt = ((int)0X8743),
- WritePixelDataRangeLengthNv = ((int)0X887a),
- IntensityExt = ((int)0X8049),
- HistogramGreenSize = ((int)0X8029),
- DepthBias = ((int)0X0d1f),
- PixelMapIToRSize = ((int)0X0cb2),
- MaxVaryingFloats = ((int)0X8b4b),
- HintBit = ((int)0X00008000),
- TextureLuminanceSizeExt = ((int)0X8060),
- PixelModeBit = ((int)0X00000020),
- CombinerSumOutputNv = ((int)0X854c),
- MinmaxExt = ((int)0X802e),
- TextureFilterControlExt = ((int)0X8500),
- PolygonMode = ((int)0X0b40),
- LinearAttenuation = ((int)0X1208),
- FloatMat4x2 = ((int)0X8b69),
- CompressedSrgbAlpha = ((int)0X8c49),
- ColorClearValue = ((int)0X0c22),
- MvpMatrixExt = ((int)0X87e3),
- MaxProgramGenericAttribsNv = ((int)0X8da5),
- OpSubExt = ((int)0X8796),
- Alpha32iExt = ((int)0X8d84),
- FragmentLightingSgix = ((int)0X8400),
- ProgramParameterNv = ((int)0X8644),
- ConvolutionHeightExt = ((int)0X8019),
- MinProgramTexelOffsetNv = ((int)0X8904),
- MaxTransformFeedbackSeparateComponentsNv = ((int)0X8c80),
- TextureCubeMapPositiveXExt = ((int)0X8515),
- LineStipple = ((int)0X0b24),
- SampleCoverageInvertArb = ((int)0X80ab),
- PolygonStipple = ((int)0X0b42),
- ImplementationColorReadFormatOes = ((int)0X8b9b),
- Bgr = ((int)0X80e0),
- Modelview25Arb = ((int)0X8739),
- CombinerInputNv = ((int)0X8542),
- Modelview21Arb = ((int)0X8735),
- InverseNv = ((int)0X862b),
- OutputTextureCoord25Ext = ((int)0X87b6),
- TextureCoordArrayListStrideIbm = ((int)103084),
- PixelTileWidthSgix = ((int)0X8140),
- Sampler1DArrayExt = ((int)0X8dc0),
- Reg24Ati = ((int)0X8939),
- NumPassesAti = ((int)0X8970),
- FogCoordinateSourceExt = ((int)0X8450),
- InterpolateExt = ((int)0X8575),
- OutputTextureCoord7Ext = ((int)0X87a4),
- Reg5Ati = ((int)0X8926),
- FogCoordArrayPointer = ((int)0X8456),
- Sampler3D = ((int)0X8b5f),
- ColorTableAlphaSize = ((int)0X80dd),
- OffsetTextureRectangleNv = ((int)0X864c),
- QueryResult = ((int)0X8866),
- ColorTableRedSizeSgi = ((int)0X80da),
- EvalVertexAttrib12Nv = ((int)0X86d2),
- ClientPixelStoreBit = ((int)0X00000001),
- YcrcbaSgix = ((int)0X8319),
- PixelGroupColorSgis = ((int)0X8356),
- Diffuse = ((int)0X1201),
- LineResetToken = ((int)0X0707),
- MaxProgramTexIndirectionsArb = ((int)0X880d),
- UnsignedByte332Ext = ((int)0X8032),
- AddSignedExt = ((int)0X8574),
- Dot2AddAti = ((int)0X896c),
- ListMode = ((int)0X0b30),
- ColorClearUnclampedValueAti = ((int)0X8835),
- UnsignedByte233Rev = ((int)0X8362),
- ProgramFormatAsciiArb = ((int)0X8875),
- AsyncHistogramSgix = ((int)0X832c),
- TextureUnsignedRemapModeNv = ((int)0X888f),
- TextureCubeMapPositiveZExt = ((int)0X8519),
- Copy = ((int)0X1503),
- ReplacementCodeArraySun = ((int)0X85c0),
- ProxyTexture3DExt = ((int)0X8070),
- IndexArray = ((int)0X8077),
- DsScaleNv = ((int)0X8710),
- FloatRgba32Nv = ((int)0X888b),
- ElementArrayPointerApple = ((int)0X876a),
- SphereMap = ((int)0X2402),
- Map2Index = ((int)0X0db1),
- UnsignedShort565Ext = ((int)0X8363),
- DualAlpha16Sgis = ((int)0X8113),
- Rgb10A2Ext = ((int)0X8059),
- InterlaceOml = ((int)0X8980),
- EdgeFlag = ((int)0X0b43),
- MaxModelviewStackDepth = ((int)0X0d36),
- FogScaleSgix = ((int)0X81fc),
- DualAlpha8Sgis = ((int)0X8111),
- RgbScaleArb = ((int)0X8573),
- PackSkipImagesExt = ((int)0X806b),
- Rgba = ((int)0X1908),
- PerturbExt = ((int)0X85ae),
- FrontAndBack = ((int)0X0408),
- Modelview20Arb = ((int)0X8734),
- LineWidthGranularity = ((int)0X0b23),
- SamplesSgis = ((int)0X80a9),
- Texture4DSgis = ((int)0X8134),
- Con18Ati = ((int)0X8953),
- MinmaxFormatExt = ((int)0X802f),
- StencilFail = ((int)0X0b94),
- CurrentMatrixArb = ((int)0X8641),
- Reg27Ati = ((int)0X893c),
- ObjectBufferSizeAti = ((int)0X8764),
- OpSetGeExt = ((int)0X878c),
- FragmentLight7Sgix = ((int)0X8413),
- PrimaryColorArb = ((int)0X8577),
- ReadBuffer = ((int)0X0c02),
- CompressedRgbFxt13Dfx = ((int)0X86b0),
- ActiveUniforms = ((int)0X8b86),
- Dsdt8Mag8Nv = ((int)0X870a),
- Reduce = ((int)0X8016),
- AlphaMinSgix = ((int)0X8320),
- SampleBuffersExt = ((int)0X80a8),
- TextureCubeMapNegativeYExt = ((int)0X8518),
- Modelview29Arb = ((int)0X873d),
- OffsetTexture2DScaleNv = ((int)0X86e2),
- Map1VertexAttrib94Nv = ((int)0X8669),
- Reg20Ati = ((int)0X8935),
- Color = ((int)0X1800),
- ColorArrayTypeExt = ((int)0X8082),
- PixelTexGenQCeilingSgix = ((int)0X8184),
- Con0Ati = ((int)0X8941),
- DualAlpha4Sgis = ((int)0X8110),
- TextureRectangleArb = ((int)0X84f5),
- Luminance16IccSgix = ((int)0X8469),
- IncrWrap = ((int)0X8507),
- TextureStackDepth = ((int)0X0ba5),
- LuminanceAlpha16iExt = ((int)0X8d8d),
- MirrorClampToEdgeAti = ((int)0X8743),
- DepthStencilExt = ((int)0X84f9),
- AlphaIccSgix = ((int)0X8462),
- Alpha32fArb = ((int)0X8816),
- DstAlpha = ((int)0X0304),
- Lines = ((int)0X0001),
- LogicOp = ((int)0X0bf1),
- Reg21Ati = ((int)0X8936),
- ConvolutionBorderMode = ((int)0X8013),
- IntVec3Arb = ((int)0X8b54),
- CullFragmentNv = ((int)0X86e7),
- RegisterCombinersNv = ((int)0X8522),
- Texture1 = ((int)0X84c1),
- VertexAttribArray1Nv = ((int)0X8651),
- Matrix14 = ((int)0X88ce),
- ProxyColorTableSgi = ((int)0X80d3),
- FullRangeExt = ((int)0X87e1),
- UnsignedInt8888 = ((int)0X8035),
- ColorAttachment7Ext = ((int)0X8ce7),
- SingleColorExt = ((int)0X81f9),
- DotProductTextureRectangleNv = ((int)0X864e),
- Modelview23Arb = ((int)0X8737),
- Shininess = ((int)0X1601),
- PixelMapGToGSize = ((int)0X0cb7),
- RenderbufferInternalFormatExt = ((int)0X8d44),
- MaxVertexUniformComponents = ((int)0X8b4a),
- ColorTableFormat = ((int)0X80d8),
- ProgramString = ((int)0X8628),
- ObjectTypeArb = ((int)0X8b4e),
- EdgeFlagArrayExt = ((int)0X8079),
- PointSizeMax = ((int)0X8127),
- PostConvolutionBlueScale = ((int)0X801e),
- ElementArrayPointerAti = ((int)0X876a),
- PixelMapIToI = ((int)0X0c70),
- R1uiV3fSun = ((int)0X85c4),
- ColorIndex4Ext = ((int)0X80e4),
- CompressedRedRgtc1Ext = ((int)0X8dbb),
- SampleMaskInvertSgis = ((int)0X80ab),
- BgraExt = ((int)0X80e1),
- CompressedSrgbS3tcDxt1Ext = ((int)0X8c4c),
- CompressedSrgbAlphaS3tcDxt1Ext = ((int)0X8c4d),
- Modelview24Arb = ((int)0X8738),
- RgbIntegerExt = ((int)0X8d98),
- Map1VertexAttrib84Nv = ((int)0X8668),
- Gl4Pass1Sgis = ((int)0X80a5),
- PixelSubsample2424Sgix = ((int)0X85a3),
- PostConvolutionBlueBiasExt = ((int)0X8022),
- Operand1Rgb = ((int)0X8591),
- NormalBitPgi = ((int)0X08000000),
- BlendEquationAlphaExt = ((int)0X883d),
- EnableBit = ((int)0X00002000),
- StrictDepthfuncHintPgi = ((int)0X1a216),
- UnpackResampleSgix = ((int)0X842d),
- MaxFragmentBindableUniformsExt = ((int)0X8de3),
- ConserveMemoryHintPgi = ((int)0X1a1fd),
- ReflectionMapExt = ((int)0X8512),
- FogDistanceModeNv = ((int)0X855a),
- TextureSharedSizeExt = ((int)0X8c3f),
- VertexAttribArrayIntegerNv = ((int)0X88fd),
- StorageSharedApple = ((int)0X85bf),
- PixelMapIToASize = ((int)0X0cb5),
- TextureLoSizeNv = ((int)0X871c),
- PointDistanceAttenuation = ((int)0X8129),
- ProxyTextureRectangleArb = ((int)0X84f7),
- PixelMinFilterExt = ((int)0X8332),
- CompareRefDepthToTextureExt = ((int)0X884e),
- CubicHp = ((int)0X815f),
- Intensity16fArb = ((int)0X881d),
- SrcColor = ((int)0X0300),
- TextureCoordArray = ((int)0X8078),
- TextureCoordArrayCountExt = ((int)0X808b),
- GreenBias = ((int)0X0d19),
- OutputTextureCoord27Ext = ((int)0X87b8),
- UnsignedInt8888RevExt = ((int)0X8367),
- Luminance16uiExt = ((int)0X8d7a),
- Map1VertexAttrib24Nv = ((int)0X8662),
- CurrentRasterColor = ((int)0X0b04),
- IntensityFloat32Ati = ((int)0X8817),
- MatEmissionBitPgi = ((int)0X00800000),
- DrawBuffer6 = ((int)0X882b),
- ImageCubicWeightHp = ((int)0X815e),
- MaxMultisampleCoverageModesNv = ((int)0X8e11),
- WriteOnlyArb = ((int)0X88b9),
- LineStippleRepeat = ((int)0X0b26),
- MaxElementsVertices = ((int)0X80e8),
- RedBits = ((int)0X0d52),
- VertexWeightArrayTypeExt = ((int)0X850e),
- UnpackSkipRows = ((int)0X0cf3),
- SeparateAttribsNv = ((int)0X8c8d),
- BlueScale = ((int)0X0d1a),
- ImageRotateAngleHp = ((int)0X8159),
- MaxDrawBuffersAti = ((int)0X8824),
- ObjectDistanceToPointSgis = ((int)0X81f1),
- IuiV2fExt = ((int)0X81ad),
- TransformFeedbackPrimitivesWrittenNv = ((int)0X8c88),
- Src1Rgb = ((int)0X8581),
- SamplesPassedArb = ((int)0X8914),
- Alpha16 = ((int)0X803e),
- PolygonOffsetBiasExt = ((int)0X8039),
- CompressedSluminanceAlphaExt = ((int)0X8c4b),
- UnsignedShort5551 = ((int)0X8034),
- Modelview27Arb = ((int)0X873b),
- OffsetTextureMatrixNv = ((int)0X86e1),
- IndexArrayBufferBinding = ((int)0X8899),
- EyeLineSgis = ((int)0X81f6),
- IndexMode = ((int)0X0c30),
- Gl3Bytes = ((int)0X1408),
- RenderbufferRedSizeExt = ((int)0X8d50),
- OpNegateExt = ((int)0X8783),
- SecondaryColorArrayPointer = ((int)0X845d),
- Reg30Ati = ((int)0X893f),
- TextureCoordArrayPointerExt = ((int)0X8092),
- FloatRgba16Nv = ((int)0X888a),
- UnsignedInt88S8S8RevNv = ((int)0X86db),
- BlendSrcAlphaExt = ((int)0X80cb),
- UnsignedByte332 = ((int)0X8032),
- CullVertexExt = ((int)0X81aa),
- ProgramAddressRegisters = ((int)0X88b0),
- Gl2XBitAti = ((int)0X00000001),
- IndexClearValue = ((int)0X0c20),
- ProxyTextureCubeMapExt = ((int)0X851b),
- Accum = ((int)0X0100),
- TextureMaterialParameterExt = ((int)0X8352),
- CurrentPaletteMatrixArb = ((int)0X8843),
- LuminanceAlpha8iExt = ((int)0X8d93),
- WeightArraySizeArb = ((int)0X86ab),
- SignedAlphaNv = ((int)0X8705),
- PostColorMatrixAlphaScale = ((int)0X80b7),
- LinearSharpenSgis = ((int)0X80ad),
- Source1RgbExt = ((int)0X8581),
- Texture0 = ((int)0X84c0),
- BufferUsage = ((int)0X8765),
- Map1VertexAttrib14Nv = ((int)0X8661),
- Rgb8uiExt = ((int)0X8d7d),
- EighthBitAti = ((int)0X00000020),
- EvalBit = ((int)0X00010000),
- SampleBuffers3Dfx = ((int)0X86b3),
- Map1Color4 = ((int)0X0d90),
- ColorAlphaPairingAti = ((int)0X8975),
- CombineRgb = ((int)0X8571),
- TransformFeedbackVaryingsNv = ((int)0X8c83),
- Light3 = ((int)0X4003),
- TextureHeight = ((int)0X1001),
- RedBias = ((int)0X0d15),
- ColorAttachment3Ext = ((int)0X8ce3),
- ElementArrayAti = ((int)0X8768),
- Operand2RgbExt = ((int)0X8592),
- FramebufferIncompleteLayerTargetsExt = ((int)0X8da8),
- TextureAlphaTypeArb = ((int)0X8c13),
- Feedback = ((int)0X1c01),
- PolygonOffsetLine = ((int)0X2a02),
- R = ((int)0X2002),
- S = ((int)0X2000),
- Intensity16 = ((int)0X804d),
- Q = ((int)0X2003),
- TextureAlphaSize = ((int)0X805f),
- T = ((int)0X2001),
- PixelTileGridHeightSgix = ((int)0X8143),
- DotProductAffineDepthReplaceNv = ((int)0X885d),
- CurrentSecondaryColorExt = ((int)0X8459),
- NearestClipmapLinearSgix = ((int)0X844e),
- TextureCoordArrayParallelPointersIntel = ((int)0X83f8),
- FragmentProgram = ((int)0X8804),
- Gl4Pass0Sgis = ((int)0X80a4),
- Sampler2DShadowArb = ((int)0X8b62),
- SecondaryColorArrayTypeExt = ((int)0X845b),
- PixelPackBufferExt = ((int)0X88eb),
- FragmentShaderArb = ((int)0X8b30),
- DrawBuffer10Ati = ((int)0X882f),
- Map1VertexAttrib34Nv = ((int)0X8663),
- ColorTableScale = ((int)0X80d6),
- Cw = ((int)0X0900),
- ColorTableBlueSizeSgi = ((int)0X80dc),
- LinearClipmapNearestSgix = ((int)0X844f),
- FrontLeft = ((int)0X0400),
- NumFragmentConstantsAti = ((int)0X896f),
- FragmentLightModelLocalViewerSgix = ((int)0X8408),
- DtScaleNv = ((int)0X8711),
- DotProductReflectCubeMapNv = ((int)0X86f2),
- Ycbcr422Apple = ((int)0X85b9),
- EdgeFlagArrayBufferBindingArb = ((int)0X889b),
- FloatMat3Arb = ((int)0X8b5b),
- ProgramErrorPositionNv = ((int)0X864b),
- ColorTableWidth = ((int)0X80d9),
- RenderbufferColorSamplesNv = ((int)0X8e10),
- Luminance8iExt = ((int)0X8d92),
- MaxAttribStackDepth = ((int)0X0d35),
- MaxProgramGenericResultsNv = ((int)0X8da6),
- Texture27Arb = ((int)0X84db),
- ReadFramebufferBindingExt = ((int)0X8ca6),
+ None = ((int)0),
Zero = ((int)0),
- TextureRectangleNv = ((int)0X84f5),
- Rgb16fArb = ((int)0X881b),
- TangentArrayTypeExt = ((int)0X843e),
- BlendEquationAlpha = ((int)0X883d),
- OutputColor0Ext = ((int)0X879b),
- StreamRead = ((int)0X88e1),
- HistogramAlphaSize = ((int)0X802b),
- LuminanceAlpha = ((int)0X190a),
- ColorArrayExt = ((int)0X8076),
- Cnd0Ati = ((int)0X896b),
- Map1VertexAttrib54Nv = ((int)0X8665),
- TrackMatrixNv = ((int)0X8648),
- Texture8 = ((int)0X84c8),
- MaxTextureCoordsArb = ((int)0X8871),
- AlphaFloat32Ati = ((int)0X8816),
- CombinerAbOutputNv = ((int)0X854a),
- Multisample = ((int)0X809d),
- ColorAttachment6Ext = ((int)0X8ce6),
- ClipFarHintPgi = ((int)0X1a221),
- MultisampleBit3Dfx = ((int)0X20000000),
- TextureCoordArrayBufferBinding = ((int)0X889a),
- InverseTransposeNv = ((int)0X862d),
- TextureRedSize = ((int)0X805c),
- PixelTexGenQFloorSgix = ((int)0X8186),
- OutputTextureCoord12Ext = ((int)0X87a9),
- Reg17Ati = ((int)0X8932),
- SecondaryColorArraySize = ((int)0X845a),
- Modelview1MatrixExt = ((int)0X8506),
- YcrcbSgix = ((int)0X8318),
- TextureMaxLevelSgis = ((int)0X813d),
- WeightArrayStrideArb = ((int)0X86aa),
- DrawBuffer14Arb = ((int)0X8833),
- BlendColorExt = ((int)0X8005),
- ColorTableIntensitySizeSgi = ((int)0X80df),
- VertexArrayBufferBinding = ((int)0X8896),
- ColorIndex2Ext = ((int)0X80e3),
- MaxFramezoomFactorSgix = ((int)0X818d),
+ Points = ((int)0X0000),
+ ClientPixelStoreBit = ((int)0X00000001),
+ CurrentBit = ((int)0X00000001),
+ Gl2XBitAti = ((int)0X00000001),
+ RedBitAti = ((int)0X00000001),
+ TextureDeformationBitSgix = ((int)0X00000001),
+ ClientVertexArrayBit = ((int)0X00000002),
+ CompBitAti = ((int)0X00000002),
+ GeometryDeformationBitSgix = ((int)0X00000002),
+ Gl4XBitAti = ((int)0X00000002),
+ GreenBitAti = ((int)0X00000002),
+ PointBit = ((int)0X00000002),
+ BlueBitAti = ((int)0X00000004),
+ Gl8XBitAti = ((int)0X00000004),
+ LineBit = ((int)0X00000004),
+ NegateBitAti = ((int)0X00000004),
+ Vertex23BitPgi = ((int)0X00000004),
+ BiasBitAti = ((int)0X00000008),
+ HalfBitAti = ((int)0X00000008),
+ PolygonBit = ((int)0X00000008),
+ Vertex4BitPgi = ((int)0X00000008),
+ PolygonStippleBit = ((int)0X00000010),
+ QuarterBitAti = ((int)0X00000010),
+ EighthBitAti = ((int)0X00000020),
+ PixelModeBit = ((int)0X00000020),
+ LightingBit = ((int)0X00000040),
+ SaturateBitAti = ((int)0X00000040),
+ FogBit = ((int)0X00000080),
+ DepthBufferBit = ((int)0X00000100),
+ AccumBufferBit = ((int)0X00000200),
+ StencilBufferBit = ((int)0X00000400),
+ ViewportBit = ((int)0X00000800),
+ TransformBit = ((int)0X00001000),
+ EnableBit = ((int)0X00002000),
+ ColorBufferBit = ((int)0X00004000),
+ HintBit = ((int)0X00008000),
+ ContextFlagForwardCompatibleBit = ((int)0X0001),
+ Lines = ((int)0X0001),
+ MapReadBit = ((int)0X0001),
+ RestartSun = ((int)0X0001),
+ Color3BitPgi = ((int)0X00010000),
+ EvalBit = ((int)0X00010000),
+ LineLoop = ((int)0X0002),
+ MapWriteBit = ((int)0X0002),
+ ReplaceMiddleSun = ((int)0X0002),
+ Color4BitPgi = ((int)0X00020000),
+ ListBit = ((int)0X00020000),
+ LineStrip = ((int)0X0003),
+ ReplaceOldestSun = ((int)0X0003),
+ MapInvalidateRangeBit = ((int)0X0004),
+ Triangles = ((int)0X0004),
+ EdgeflagBitPgi = ((int)0X00040000),
+ TextureBit = ((int)0X00040000),
+ TriangleStrip = ((int)0X0005),
+ TriangleFan = ((int)0X0006),
+ Quads = ((int)0X0007),
+ MapInvalidateBufferBit = ((int)0X0008),
+ QuadStrip = ((int)0X0008),
+ IndexBitPgi = ((int)0X00080000),
+ ScissorBit = ((int)0X00080000),
+ Polygon = ((int)0X0009),
+ LinesAdjacencyArb = ((int)0X000a),
+ LinesAdjacencyExt = ((int)0X000a),
+ LineStripAdjacencyArb = ((int)0X000b),
+ LineStripAdjacencyExt = ((int)0X000b),
+ TrianglesAdjacencyArb = ((int)0X000c),
+ TrianglesAdjacencyExt = ((int)0X000c),
+ TriangleStripAdjacencyArb = ((int)0X000d),
+ TriangleStripAdjacencyExt = ((int)0X000d),
+ MapFlushExplicitBit = ((int)0X0010),
+ MatAmbientBitPgi = ((int)0X00100000),
+ MapUnsynchronizedBit = ((int)0X0020),
+ MatAmbientAndDiffuseBitPgi = ((int)0X00200000),
+ MatDiffuseBitPgi = ((int)0X00400000),
+ MatEmissionBitPgi = ((int)0X00800000),
+ Accum = ((int)0X0100),
+ MatColorIndexesBitPgi = ((int)0X01000000),
+ Load = ((int)0X0101),
+ Return = ((int)0X0102),
+ Mult = ((int)0X0103),
+ Add = ((int)0X0104),
+ Never = ((int)0X0200),
+ MatShininessBitPgi = ((int)0X02000000),
+ Less = ((int)0X0201),
+ Equal = ((int)0X0202),
+ Lequal = ((int)0X0203),
+ Greater = ((int)0X0204),
+ Notequal = ((int)0X0205),
+ Gequal = ((int)0X0206),
+ Always = ((int)0X0207),
+ SrcColor = ((int)0X0300),
+ OneMinusSrcColor = ((int)0X0301),
+ SrcAlpha = ((int)0X0302),
+ OneMinusSrcAlpha = ((int)0X0303),
+ DstAlpha = ((int)0X0304),
+ OneMinusDstAlpha = ((int)0X0305),
+ DstColor = ((int)0X0306),
+ OneMinusDstColor = ((int)0X0307),
+ SrcAlphaSaturate = ((int)0X0308),
+ FrontLeft = ((int)0X0400),
+ MatSpecularBitPgi = ((int)0X04000000),
+ FrontRight = ((int)0X0401),
+ BackLeft = ((int)0X0402),
+ BackRight = ((int)0X0403),
+ Front = ((int)0X0404),
+ Back = ((int)0X0405),
+ Left = ((int)0X0406),
+ Right = ((int)0X0407),
+ FrontAndBack = ((int)0X0408),
+ Aux0 = ((int)0X0409),
+ Aux1 = ((int)0X040a),
+ Aux2 = ((int)0X040b),
+ Aux3 = ((int)0X040c),
+ InvalidEnum = ((int)0X0500),
+ InvalidValue = ((int)0X0501),
+ InvalidOperation = ((int)0X0502),
+ StackOverflow = ((int)0X0503),
+ StackUnderflow = ((int)0X0504),
+ OutOfMemory = ((int)0X0505),
+ InvalidFramebufferOperation = ((int)0X0506),
+ InvalidFramebufferOperationExt = ((int)0X0506),
+ Gl2D = ((int)0X0600),
+ Gl3D = ((int)0X0601),
+ Gl3DColor = ((int)0X0602),
+ Gl3DColorTexture = ((int)0X0603),
+ Gl4DColorTexture = ((int)0X0604),
+ PassThroughToken = ((int)0X0700),
+ PointToken = ((int)0X0701),
+ LineToken = ((int)0X0702),
+ PolygonToken = ((int)0X0703),
+ BitmapToken = ((int)0X0704),
+ DrawPixelToken = ((int)0X0705),
+ CopyPixelToken = ((int)0X0706),
+ LineResetToken = ((int)0X0707),
+ Exp = ((int)0X0800),
+ NormalBitPgi = ((int)0X08000000),
+ Exp2 = ((int)0X0801),
+ Cw = ((int)0X0900),
+ Ccw = ((int)0X0901),
+ Coeff = ((int)0X0a00),
+ Order = ((int)0X0a01),
+ Domain = ((int)0X0a02),
+ CurrentColor = ((int)0X0b00),
+ CurrentIndex = ((int)0X0b01),
+ CurrentNormal = ((int)0X0b02),
+ CurrentTextureCoords = ((int)0X0b03),
+ CurrentRasterColor = ((int)0X0b04),
+ CurrentRasterIndex = ((int)0X0b05),
+ CurrentRasterTextureCoords = ((int)0X0b06),
+ CurrentRasterPosition = ((int)0X0b07),
+ CurrentRasterPositionValid = ((int)0X0b08),
+ CurrentRasterDistance = ((int)0X0b09),
+ PointSmooth = ((int)0X0b10),
+ PointSize = ((int)0X0b11),
+ PointSizeRange = ((int)0X0b12),
+ SmoothPointSizeRange = ((int)0X0b12),
+ PointSizeGranularity = ((int)0X0b13),
+ SmoothPointSizeGranularity = ((int)0X0b13),
+ LineSmooth = ((int)0X0b20),
+ LineWidth = ((int)0X0b21),
+ LineWidthRange = ((int)0X0b22),
+ SmoothLineWidthRange = ((int)0X0b22),
+ LineWidthGranularity = ((int)0X0b23),
+ SmoothLineWidthGranularity = ((int)0X0b23),
+ LineStipple = ((int)0X0b24),
+ LineStipplePattern = ((int)0X0b25),
+ LineStippleRepeat = ((int)0X0b26),
+ ListMode = ((int)0X0b30),
+ MaxListNesting = ((int)0X0b31),
+ ListBase = ((int)0X0b32),
+ ListIndex = ((int)0X0b33),
+ PolygonMode = ((int)0X0b40),
+ PolygonSmooth = ((int)0X0b41),
+ PolygonStipple = ((int)0X0b42),
+ EdgeFlag = ((int)0X0b43),
+ CullFace = ((int)0X0b44),
+ CullFaceMode = ((int)0X0b45),
+ FrontFace = ((int)0X0b46),
+ Lighting = ((int)0X0b50),
+ LightModelLocalViewer = ((int)0X0b51),
+ LightModelTwoSide = ((int)0X0b52),
+ LightModelAmbient = ((int)0X0b53),
+ ShadeModel = ((int)0X0b54),
+ ColorMaterialFace = ((int)0X0b55),
+ ColorMaterialParameter = ((int)0X0b56),
+ ColorMaterial = ((int)0X0b57),
+ Fog = ((int)0X0b60),
+ FogIndex = ((int)0X0b61),
+ FogDensity = ((int)0X0b62),
+ FogStart = ((int)0X0b63),
+ FogEnd = ((int)0X0b64),
+ FogMode = ((int)0X0b65),
+ FogColor = ((int)0X0b66),
+ DepthRange = ((int)0X0b70),
+ DepthTest = ((int)0X0b71),
+ DepthWritemask = ((int)0X0b72),
+ DepthClearValue = ((int)0X0b73),
+ DepthFunc = ((int)0X0b74),
+ AccumClearValue = ((int)0X0b80),
+ StencilTest = ((int)0X0b90),
+ StencilClearValue = ((int)0X0b91),
+ StencilFunc = ((int)0X0b92),
+ StencilValueMask = ((int)0X0b93),
+ StencilFail = ((int)0X0b94),
+ StencilPassDepthFail = ((int)0X0b95),
+ StencilPassDepthPass = ((int)0X0b96),
+ StencilRef = ((int)0X0b97),
+ StencilWritemask = ((int)0X0b98),
+ MatrixMode = ((int)0X0ba0),
+ Normalize = ((int)0X0ba1),
+ Viewport = ((int)0X0ba2),
+ Modelview0StackDepthExt = ((int)0X0ba3),
+ ModelviewStackDepth = ((int)0X0ba3),
+ ProjectionStackDepth = ((int)0X0ba4),
+ TextureStackDepth = ((int)0X0ba5),
+ Modelview0MatrixExt = ((int)0X0ba6),
+ ModelviewMatrix = ((int)0X0ba6),
+ ProjectionMatrix = ((int)0X0ba7),
+ TextureMatrix = ((int)0X0ba8),
+ AttribStackDepth = ((int)0X0bb0),
+ ClientAttribStackDepth = ((int)0X0bb1),
+ AlphaTest = ((int)0X0bc0),
+ AlphaTestFunc = ((int)0X0bc1),
+ AlphaTestRef = ((int)0X0bc2),
+ Dither = ((int)0X0bd0),
+ BlendDst = ((int)0X0be0),
+ BlendSrc = ((int)0X0be1),
+ Blend = ((int)0X0be2),
+ LogicOpMode = ((int)0X0bf0),
+ IndexLogicOp = ((int)0X0bf1),
+ LogicOp = ((int)0X0bf1),
+ ColorLogicOp = ((int)0X0bf2),
+ AuxBuffers = ((int)0X0c00),
+ DrawBuffer = ((int)0X0c01),
+ ReadBuffer = ((int)0X0c02),
+ ScissorBox = ((int)0X0c10),
+ ScissorTest = ((int)0X0c11),
+ IndexClearValue = ((int)0X0c20),
+ IndexWritemask = ((int)0X0c21),
+ ColorClearValue = ((int)0X0c22),
+ ColorWritemask = ((int)0X0c23),
+ IndexMode = ((int)0X0c30),
+ RgbaMode = ((int)0X0c31),
+ Doublebuffer = ((int)0X0c32),
+ Stereo = ((int)0X0c33),
+ RenderMode = ((int)0X0c40),
+ PerspectiveCorrectionHint = ((int)0X0c50),
+ PointSmoothHint = ((int)0X0c51),
+ LineSmoothHint = ((int)0X0c52),
+ PolygonSmoothHint = ((int)0X0c53),
+ FogHint = ((int)0X0c54),
+ TextureGenS = ((int)0X0c60),
+ TextureGenT = ((int)0X0c61),
+ TextureGenR = ((int)0X0c62),
+ TextureGenQ = ((int)0X0c63),
+ PixelMapIToI = ((int)0X0c70),
+ PixelMapSToS = ((int)0X0c71),
+ PixelMapIToR = ((int)0X0c72),
+ PixelMapIToG = ((int)0X0c73),
+ PixelMapIToB = ((int)0X0c74),
+ PixelMapIToA = ((int)0X0c75),
+ PixelMapRToR = ((int)0X0c76),
+ PixelMapGToG = ((int)0X0c77),
+ PixelMapBToB = ((int)0X0c78),
+ PixelMapAToA = ((int)0X0c79),
+ PixelMapIToISize = ((int)0X0cb0),
+ PixelMapSToSSize = ((int)0X0cb1),
+ PixelMapIToRSize = ((int)0X0cb2),
+ PixelMapIToGSize = ((int)0X0cb3),
+ PixelMapIToBSize = ((int)0X0cb4),
+ PixelMapIToASize = ((int)0X0cb5),
+ PixelMapRToRSize = ((int)0X0cb6),
+ PixelMapGToGSize = ((int)0X0cb7),
+ PixelMapBToBSize = ((int)0X0cb8),
+ PixelMapAToASize = ((int)0X0cb9),
+ UnpackSwapBytes = ((int)0X0cf0),
+ UnpackLsbFirst = ((int)0X0cf1),
+ UnpackRowLength = ((int)0X0cf2),
+ UnpackSkipRows = ((int)0X0cf3),
+ UnpackSkipPixels = ((int)0X0cf4),
+ UnpackAlignment = ((int)0X0cf5),
+ PackSwapBytes = ((int)0X0d00),
+ PackLsbFirst = ((int)0X0d01),
+ PackRowLength = ((int)0X0d02),
+ PackSkipRows = ((int)0X0d03),
+ PackSkipPixels = ((int)0X0d04),
+ PackAlignment = ((int)0X0d05),
+ MapColor = ((int)0X0d10),
+ MapStencil = ((int)0X0d11),
+ IndexShift = ((int)0X0d12),
+ IndexOffset = ((int)0X0d13),
+ RedScale = ((int)0X0d14),
+ RedBias = ((int)0X0d15),
+ ZoomX = ((int)0X0d16),
+ ZoomY = ((int)0X0d17),
+ GreenScale = ((int)0X0d18),
+ GreenBias = ((int)0X0d19),
+ BlueScale = ((int)0X0d1a),
+ BlueBias = ((int)0X0d1b),
+ AlphaScale = ((int)0X0d1c),
+ AlphaBias = ((int)0X0d1d),
+ DepthScale = ((int)0X0d1e),
+ DepthBias = ((int)0X0d1f),
+ MaxEvalOrder = ((int)0X0d30),
+ MaxLights = ((int)0X0d31),
+ MaxClipPlanes = ((int)0X0d32),
+ MaxClipDistances = ((int)0X0D32),
+ MaxTextureSize = ((int)0X0d33),
+ MaxPixelMapTable = ((int)0X0d34),
+ MaxAttribStackDepth = ((int)0X0d35),
+ MaxModelviewStackDepth = ((int)0X0d36),
+ MaxNameStackDepth = ((int)0X0d37),
+ MaxProjectionStackDepth = ((int)0X0d38),
+ MaxTextureStackDepth = ((int)0X0d39),
+ MaxViewportDims = ((int)0X0d3a),
+ MaxClientAttribStackDepth = ((int)0X0d3b),
+ SubpixelBits = ((int)0X0d50),
+ IndexBits = ((int)0X0d51),
+ RedBits = ((int)0X0d52),
+ GreenBits = ((int)0X0d53),
+ BlueBits = ((int)0X0d54),
+ AlphaBits = ((int)0X0d55),
+ DepthBits = ((int)0X0d56),
+ StencilBits = ((int)0X0d57),
+ AccumRedBits = ((int)0X0d58),
AccumGreenBits = ((int)0X0d59),
- MaxClipmapDepthSgix = ((int)0X8177),
- VibranceScaleNv = ((int)0X8713),
- Map1TextureCoord4 = ((int)0X0d96),
+ AccumBlueBits = ((int)0X0d5a),
+ AccumAlphaBits = ((int)0X0d5b),
+ NameStackDepth = ((int)0X0d70),
+ AutoNormal = ((int)0X0d80),
+ Map1Color4 = ((int)0X0d90),
+ Map1Index = ((int)0X0d91),
+ Map1Normal = ((int)0X0d92),
+ Map1TextureCoord1 = ((int)0X0d93),
Map1TextureCoord2 = ((int)0X0d94),
Map1TextureCoord3 = ((int)0X0d95),
- EdgeflagBitPgi = ((int)0X00040000),
- ConvolutionWidth = ((int)0X8018),
- ArrayObjectBufferAti = ((int)0X8766),
- Modelview17Arb = ((int)0X8731),
- MaxVaryingComponentsExt = ((int)0X8b4b),
- TextureEnvBiasSgix = ((int)0X80be),
- TextureCoordArrayPointer = ((int)0X8092),
- CullFace = ((int)0X0b44),
- MaxClipmapVirtualDepthSgix = ((int)0X8178),
- ConstantBorderHp = ((int)0X8151),
- LightingBit = ((int)0X00000040),
- ColorIndex1Ext = ((int)0X80e2),
- StencilWritemask = ((int)0X0b98),
- ClipPlane0 = ((int)0X3000),
- Texture20Arb = ((int)0X84d4),
- LightModelColorControlExt = ((int)0X81f8),
- MaxPnTrianglesTesselationLevelAti = ((int)0X87f1),
- Reg29Ati = ((int)0X893e),
- PostConvolutionAlphaScale = ((int)0X801f),
- Modelview22Arb = ((int)0X8736),
- MaxClientAttribStackDepth = ((int)0X0d3b),
- ElementArrayApple = ((int)0X8768),
- BlendEquation = ((int)0X8009),
- ProgramUnderNativeLimits = ((int)0X88b6),
- MaxVertexShaderInstructionsExt = ((int)0X87c5),
- SignedLuminanceNv = ((int)0X8701),
- Light2 = ((int)0X4002),
- AsyncDrawPixelsSgix = ((int)0X835d),
- MirrorClampAti = ((int)0X8742),
- PostColorMatrixGreenScaleSgi = ((int)0X80b5),
- ClipDistanceNv = ((int)0X8c7a),
- GenerateMipmap = ((int)0X8191),
- MaxProgramMatricesArb = ((int)0X862f),
- OffsetTextureRectangleScaleNv = ((int)0X864d),
- Reg9Ati = ((int)0X892a),
- Vendor = ((int)0X1f00),
- FrontRight = ((int)0X0401),
- MaxColorMatrixStackDepthSgi = ((int)0X80b3),
- ReadOnlyArb = ((int)0X88b8),
- TextureMagSizeNv = ((int)0X871f),
- HalfBiasNormalNv = ((int)0X853a),
- ReplicateBorder = ((int)0X8153),
- PostTextureFilterScaleRangeSgix = ((int)0X817c),
- FogCoordinateArrayPointerExt = ((int)0X8456),
- Alpha16IccSgix = ((int)0X8468),
- MaxProgramLoopCountNv = ((int)0X88f8),
- Matrix21 = ((int)0X88d5),
- StaticReadArb = ((int)0X88e5),
- Texture14Arb = ((int)0X84ce),
- Matrix11 = ((int)0X88cb),
- Vertex4BitPgi = ((int)0X00000008),
- AllCompletedNv = ((int)0X84f2),
- Three = ((int)3),
- MaxSamplesExt = ((int)0X8d57),
- FenceConditionNv = ((int)0X84f4),
- Texture22Arb = ((int)0X84d6),
- ColorArrayStrideExt = ((int)0X8083),
- DrawBuffer4Ati = ((int)0X8829),
- MaxTextureBufferSizeExt = ((int)0X8c2b),
- PointSizeMinExt = ((int)0X8126),
- StencilBackFail = ((int)0X8801),
- DependentRgbTexture3DNv = ((int)0X8859),
- ColorSumClampNv = ((int)0X854f),
- Blend = ((int)0X0be2),
- PerStageConstantsNv = ((int)0X8535),
- Set = ((int)0X150f),
- IndexArrayExt = ((int)0X8077),
- DrawBuffer = ((int)0X0c01),
- ColorArrayBufferBindingArb = ((int)0X8898),
- Texture17Arb = ((int)0X84d1),
- PolygonOffsetFill = ((int)0X8037),
- Hilo8Nv = ((int)0X885e),
- ConstantAlphaExt = ((int)0X8003),
- Red = ((int)0X1903),
- LinearDetailAlphaSgis = ((int)0X8098),
- ConstantColor = ((int)0X8001),
- DepthStencilToBgraNv = ((int)0X886f),
- FogCoordArray = ((int)0X8457),
- Clamp = ((int)0X2900),
- HistogramSinkExt = ((int)0X802d),
- DotProductTextureCubeMapNv = ((int)0X86f0),
- MultisampleCoverageModesNv = ((int)0X8e12),
- ConstantColor1Nv = ((int)0X852b),
- CompressedRgbaS3tcDxt3Ext = ((int)0X83f2),
- Intensity12Ext = ((int)0X804c),
- Sluminance8Ext = ((int)0X8c47),
- Texture3DExt = ((int)0X806f),
- Texture16Arb = ((int)0X84d0),
- VertexArraySize = ((int)0X807a),
- PointSpriteCoordOrigin = ((int)0X8ca0),
- Rgba16 = ((int)0X805b),
- DepthBoundsTestExt = ((int)0X8890),
- UnsignedShort5551Ext = ((int)0X8034),
- FogFactorToAlphaSgix = ((int)0X836f),
- FramebufferAttachmentTexture3DZoffsetExt = ((int)0X8cd4),
- CompressedSignedRedGreenRgtc2Ext = ((int)0X8dbe),
- ClampToEdgeSgis = ((int)0X812f),
- CombinerBiasNv = ((int)0X8549),
- InvariantExt = ((int)0X87c2),
- ReadPixelDataRangeLengthNv = ((int)0X887b),
- FramebufferUnsupportedExt = ((int)0X8cdd),
- Modelview4Arb = ((int)0X8724),
- IntSamplerBufferExt = ((int)0X8dd0),
- Texture11Arb = ((int)0X84cb),
- Decr = ((int)0X1e03),
- Texture21Arb = ((int)0X84d5),
- ListBase = ((int)0X0b32),
- MaxListNesting = ((int)0X0b31),
- RgbaUnsignedDotProductMappingNv = ((int)0X86d9),
- Linear = ((int)0X2601),
- VertexArrayBufferBindingArb = ((int)0X8896),
- MaxProgramTemporaries = ((int)0X88a5),
- Source1RgbArb = ((int)0X8581),
- ElementArrayBufferArb = ((int)0X8893),
- ReclaimMemoryHintPgi = ((int)0X1a1fe),
- SecondaryColorArrayBufferBinding = ((int)0X889c),
- ProgramErrorStringNv = ((int)0X8874),
- ProxyColorTable = ((int)0X80d3),
- R1uiT2fV3fSun = ((int)0X85c9),
- TextureWrapR = ((int)0X8072),
- Luminance32fArb = ((int)0X8818),
- RgbaIntegerExt = ((int)0X8d99),
- RenderbufferDepthSizeExt = ((int)0X8d54),
- Texture10Arb = ((int)0X84ca),
- WritePixelDataRangePointerNv = ((int)0X887c),
- Keep = ((int)0X1e00),
- DotProductNv = ((int)0X86ec),
- AttribStackDepth = ((int)0X0bb0),
- FogCoordinateArrayExt = ((int)0X8457),
- Combiner2Nv = ((int)0X8552),
- MaxProgramResultComponentsNv = ((int)0X8909),
- ReadPixelDataRangeNv = ((int)0X8879),
- CombineAlphaArb = ((int)0X8572),
- ReplaceOldestSun = ((int)0X0003),
- LineWidthRange = ((int)0X0b22),
- BufferMapPointerArb = ((int)0X88bd),
- TextureCompareSgix = ((int)0X819a),
- FragmentShaderDerivativeHintArb = ((int)0X8b8b),
- AsyncMarkerSgix = ((int)0X8329),
- Sampler3DArb = ((int)0X8b5f),
- FramezoomSgix = ((int)0X818b),
- PnTrianglesNormalModeLinearAti = ((int)0X87f7),
- MaxElementsIndicesExt = ((int)0X80e9),
- Gl2Pass0Ext = ((int)0X80a2),
- FixedOnlyArb = ((int)0X891d),
- Light1 = ((int)0X4001),
- Fill = ((int)0X1b02),
- Subtract = ((int)0X84e7),
- LineSmooth = ((int)0X0b20),
- Rgb32uiExt = ((int)0X8d71),
- Modelview28Arb = ((int)0X873c),
- DrawBuffer3Ati = ((int)0X8828),
- SamplePatternSgis = ((int)0X80ac),
- Texture29Arb = ((int)0X84dd),
- TransposeColorMatrixArb = ((int)0X84e6),
- ProxyPostColorMatrixColorTableSgi = ((int)0X80d5),
- WeightArrayPointerArb = ((int)0X86ac),
- VertexShaderArb = ((int)0X8b31),
- FogSpecularTextureWin = ((int)0X80ec),
- OffsetProjectiveTextureRectangleScaleNv = ((int)0X8853),
- FragmentLight1Sgix = ((int)0X840d),
- Intensity16Ext = ((int)0X804d),
- Quads = ((int)0X0007),
- WritePixelDataRangeNv = ((int)0X8878),
- ObjectShaderSourceLengthArb = ((int)0X8b88),
- ColorAttachment2Ext = ((int)0X8ce2),
- IndexArrayPointerExt = ((int)0X8091),
- VariantValueExt = ((int)0X87e4),
- Matrix10 = ((int)0X88ca),
- ProgramTargetNv = ((int)0X8646),
- TriangleStrip = ((int)0X0005),
- ConvolutionBorderModeExt = ((int)0X8013),
- LinearMipmapLinear = ((int)0X2703),
- IndexArrayBufferBindingArb = ((int)0X8899),
- CompressedSignedLuminanceLatc1Ext = ((int)0X8c71),
- ArrayBufferBindingArb = ((int)0X8894),
- LuminanceAlphaFloat16Ati = ((int)0X881f),
- Texture28Arb = ((int)0X84dc),
- BlendDstRgbExt = ((int)0X80c8),
- MaxOptimizedVertexShaderInstructionsExt = ((int)0X87ca),
- HalfFloat = ((int)0X140b),
- DepthRange = ((int)0X0b70),
- NumFragmentRegistersAti = ((int)0X896e),
- Order = ((int)0X0a01),
- TimeElapsedExt = ((int)0X88bf),
- ReflectionMapArb = ((int)0X8512),
- UnpackImageHeight = ((int)0X806e),
- SignedRgbNv = ((int)0X86fe),
- Matrix2Nv = ((int)0X8632),
- GeometryOutputTypeExt = ((int)0X8ddc),
- FeedbackBufferPointer = ((int)0X0df0),
- OffsetTexture2DBiasNv = ((int)0X86e3),
- Xor = ((int)0X1506),
- MaxOptimizedVertexShaderLocalConstantsExt = ((int)0X87cc),
- AlphaMinClampIngr = ((int)0X8563),
- UnsignedInt2101010RevExt = ((int)0X8368),
- TextureCompareMode = ((int)0X884c),
- MaxProgramEnvParameters = ((int)0X88b5),
- Gl2Pass1Ext = ((int)0X80a3),
- ReadPixelDataRangePointerNv = ((int)0X887d),
- Modelview26Arb = ((int)0X873a),
- ClipPlane1 = ((int)0X3001),
- PixelMapAToA = ((int)0X0c79),
- Texture0Arb = ((int)0X84c0),
- ImplementationColorReadTypeOes = ((int)0X8b9a),
- BlueBitAti = ((int)0X00000004),
- TextureLodBiasTSgix = ((int)0X818f),
- TextureDepthSize = ((int)0X884a),
- ColorAttachment5Ext = ((int)0X8ce5),
- NormalArrayCountExt = ((int)0X8080),
- HistogramRedSize = ((int)0X8028),
- TextureCubeMapExt = ((int)0X8513),
- PackImageDepthSgis = ((int)0X8131),
- AttenuationExt = ((int)0X834d),
- GeometryProgramParameterBufferNv = ((int)0X8da3),
- VertexShaderVariantsExt = ((int)0X87d0),
- ProgramNativeAluInstructionsArb = ((int)0X8808),
- VertexArrayPointerExt = ((int)0X808e),
- ColorTableRedSize = ((int)0X80da),
- TransformFeedbackBufferBindingNv = ((int)0X8c8f),
- Luminance16Ext = ((int)0X8042),
- PixelTexGenAlphaMsSgix = ((int)0X818a),
- DepthComponent = ((int)0X1902),
- IndexArrayTypeExt = ((int)0X8085),
- VertexArraySizeExt = ((int)0X807a),
- ModelviewProjectionNv = ((int)0X8629),
- GlobalAlphaFactorSun = ((int)0X81da),
- Matrix16 = ((int)0X88d0),
- VertexWeightArrayExt = ((int)0X850c),
- CompressedAlpha = ((int)0X84e9),
- TextureLodBiasExt = ((int)0X8501),
- Flat = ((int)0X1d00),
- SrcAlpha = ((int)0X0302),
- ProgramPointSizeExt = ((int)0X8642),
- CompileStatus = ((int)0X8b81),
- Never = ((int)0X0200),
- True = ((int)1),
- UnsignedShort4444Reversed = ((int)0X8365),
- Reg18Ati = ((int)0X8933),
- VertexArrayRangeValidNv = ((int)0X851f),
- Return = ((int)0X0102),
- PostColorMatrixRedBiasSgi = ((int)0X80b8),
- NegativeOneExt = ((int)0X87df),
- FogMode = ((int)0X0b65),
- PolygonBit = ((int)0X00000008),
- Incr = ((int)0X1e02),
- ClipNearHintPgi = ((int)0X1a220),
- PassThroughToken = ((int)0X0700),
- AbgrExt = ((int)0X8000),
- EvalFractionalTessellationNv = ((int)0X86c5),
- TextureGreenSizeExt = ((int)0X805d),
- MaxProgramAttribComponentsNv = ((int)0X8908),
- MaxVertexShaderVariantsExt = ((int)0X87c6),
- CompressedLuminance = ((int)0X84ea),
- PackSubsampleRateSgix = ((int)0X85a0),
- SecondaryColorArrayType = ((int)0X845b),
- Map2VertexAttrib114Nv = ((int)0X867b),
- SamplesPassed = ((int)0X8914),
- TextureCompressionHintArb = ((int)0X84ef),
- Dot4Ati = ((int)0X8967),
- DualIntensity4Sgis = ((int)0X8118),
- RgbaIccSgix = ((int)0X8461),
- ConvolutionHeight = ((int)0X8019),
- LowerLeft = ((int)0X8ca1),
- FramebufferAttachmentObjectTypeExt = ((int)0X8cd0),
- PolygonSmooth = ((int)0X0b41),
- Alpha4Ext = ((int)0X803b),
- VariantArrayStrideExt = ((int)0X87e6),
- VariantArrayExt = ((int)0X87e8),
- Reg8Ati = ((int)0X8929),
- TransposeTextureMatrix = ((int)0X84e5),
- MaxProgramTexInstructionsArb = ((int)0X880c),
- PointToken = ((int)0X0701),
- Texture19Arb = ((int)0X84d3),
- CompressedTextureFormatsArb = ((int)0X86a3),
- UnsignedInvertNv = ((int)0X8537),
- Texture = ((int)0X1702),
- VariantDatatypeExt = ((int)0X87e5),
- Intensity32fArb = ((int)0X8817),
- ProjectionStackDepth = ((int)0X0ba4),
- SignedNegateNv = ((int)0X853d),
- FloatMat4Arb = ((int)0X8b5c),
- ClipPlane5 = ((int)0X3005),
- ColorMaterialFace = ((int)0X0b55),
- FragmentLight2Sgix = ((int)0X840e),
- Matrix1Nv = ((int)0X8631),
- Separable2DExt = ((int)0X8012),
- FloatRg16Nv = ((int)0X8886),
- PixelUnpackBufferBindingArb = ((int)0X88ef),
- FuncSubtractExt = ((int)0X800a),
- Matrix23 = ((int)0X88d7),
- Texture18Arb = ((int)0X84d2),
- Matrix13 = ((int)0X88cd),
- Luminance32iExt = ((int)0X8d86),
- RasterizerDiscardNv = ((int)0X8c89),
- CombineExt = ((int)0X8570),
- Alpha16uiExt = ((int)0X8d78),
- Modelview8Arb = ((int)0X8728),
- Luminance12Ext = ((int)0X8041),
- Greater = ((int)0X0204),
- QueryCounterBits = ((int)0X8864),
- BlendSrc = ((int)0X0be1),
- Texcoord3BitPgi = ((int)0X40000000),
- LocalConstantDatatypeExt = ((int)0X87ed),
- SignedAlpha8Nv = ((int)0X8706),
- ReplacementCodeArrayStrideSun = ((int)0X85c2),
- MaxTextureMaxAnisotropyExt = ((int)0X84ff),
- MaxMapTessellationNv = ((int)0X86d6),
- Dot3Rgba = ((int)0X86af),
- Compile = ((int)0X1300),
- Vertex23BitPgi = ((int)0X00000004),
- PointSizeMaxSgis = ((int)0X8127),
- DetailTextureLevelSgis = ((int)0X809a),
- ColorArrayListStrideIbm = ((int)103082),
- TextureWrapRExt = ((int)0X8072),
- MaxVertexAttribsArb = ((int)0X8869),
- VertexArrayRangeNv = ((int)0X851d),
- Rgb5Ext = ((int)0X8050),
- SampleBuffersArb = ((int)0X80a8),
- VertexPreclipSgix = ((int)0X83ee),
- Luminance16 = ((int)0X8042),
- ClipPlane2 = ((int)0X3002),
- MaxMatrixPaletteStackDepthArb = ((int)0X8841),
- Luminance12 = ((int)0X8041),
- BumpTexUnitsAti = ((int)0X8778),
- MaxConvolutionWidthExt = ((int)0X801a),
- SeparateSpecularColorExt = ((int)0X81fa),
- MaxPixelMapTable = ((int)0X0d34),
- FragmentColorMaterialSgix = ((int)0X8401),
- OffsetTexture2DMatrixNv = ((int)0X86e1),
- ArrayObjectOffsetAti = ((int)0X8767),
- OutputTextureCoord18Ext = ((int)0X87af),
- FloatVec4 = ((int)0X8b52),
- DrawBuffer13Arb = ((int)0X8832),
- CalligraphicFragmentSgix = ((int)0X8183),
- StencilIndex = ((int)0X1901),
- FogFuncSgis = ((int)0X812a),
- TextureDepth = ((int)0X8071),
- Texture4DBindingSgis = ((int)0X814f),
- StaticDraw = ((int)0X88e4),
- SignedIdentityNv = ((int)0X853c),
- Matrix31 = ((int)0X88df),
- TransposeColorMatrix = ((int)0X84e6),
- LuminanceAlpha32fArb = ((int)0X8819),
- StencilIndex16Ext = ((int)0X8d49),
- FeedbackBufferSize = ((int)0X0df1),
- Luminance6Alpha2 = ((int)0X8044),
- OutputTextureCoord4Ext = ((int)0X87a1),
- SampleCoverageArb = ((int)0X80a0),
- Rgb5 = ((int)0X8050),
- ResampleZeroFillOml = ((int)0X8987),
- MaxDeformationOrderSgix = ((int)0X8197),
- VertexDataHintPgi = ((int)0X1a22a),
- LineToken = ((int)0X0702),
- EyePlane = ((int)0X2502),
- TriangleStripAdjacencyExt = ((int)0X000d),
- UnpackSwapBytes = ((int)0X0cf0),
- VertexShaderOptimizedExt = ((int)0X87d4),
- DrawBuffer12Arb = ((int)0X8831),
- UnsignedShort1555Rev = ((int)0X8366),
- TextureNormalExt = ((int)0X85af),
- CndAti = ((int)0X896a),
- HistogramBlueSizeExt = ((int)0X802a),
- QueryResultArb = ((int)0X8866),
- HalfFloatArb = ((int)0X140b),
- VariantArrayPointerExt = ((int)0X87e9),
- Combine = ((int)0X8570),
- OcclusionTestResultHp = ((int)0X8166),
- InstrumentMeasurementsSgix = ((int)0X8181),
- MapStencil = ((int)0X0d11),
- MaxRectangleTextureSizeArb = ((int)0X84f8),
- Texture31Arb = ((int)0X84df),
- Rgb2Ext = ((int)0X804e),
- UnpackResampleOml = ((int)0X8985),
- FullStippleHintPgi = ((int)0X1a219),
- StaticDrawArb = ((int)0X88e4),
- PixelUnpackBufferBindingExt = ((int)0X88ef),
- ObjectLinear = ((int)0X2401),
- Add = ((int)0X0104),
- BufferAccess = ((int)0X88bb),
- HiloNv = ((int)0X86f4),
- Texture5 = ((int)0X84c5),
- Emission = ((int)0X1600),
- TextureMaterialFaceExt = ((int)0X8351),
- Matrix4Nv = ((int)0X8634),
- Intensity16IccSgix = ((int)0X846a),
- DepthComponent32Sgix = ((int)0X81a7),
- SwizzleStrqDqAti = ((int)0X897b),
- VectorExt = ((int)0X87bf),
- Texture30Arb = ((int)0X84de),
- BoolVec3Arb = ((int)0X8b58),
- ProgramResultComponentsNv = ((int)0X8907),
- PostTextureFilterBiasRangeSgix = ((int)0X817b),
- GeometryVerticesOutExt = ((int)0X8dda),
- TextureLuminanceTypeArb = ((int)0X8c14),
- Line = ((int)0X1b01),
- LightModelLocalViewer = ((int)0X0b51),
- RenderbufferBlueSizeExt = ((int)0X8d52),
- MaxTextureCoords = ((int)0X8871),
- BumpEnvmapAti = ((int)0X877b),
- PixelUnpackBufferBinding = ((int)0X88ef),
- ActiveAttributeMaxLength = ((int)0X8b8a),
- VertexArrayRangePointerNv = ((int)0X8521),
- Sampler1D = ((int)0X8b5d),
- ProxyPostImageTransformColorTableHp = ((int)0X8163),
- Matrix7Nv = ((int)0X8637),
- CullVertexEyePositionExt = ((int)0X81ab),
- Sampler1DArb = ((int)0X8b5d),
- ZeroExt = ((int)0X87dd),
- VertexShaderExt = ((int)0X8780),
- Rgba8iExt = ((int)0X8d8e),
- OutputTextureCoord3Ext = ((int)0X87a0),
- SmoothLineWidthGranularity = ((int)0X0b23),
- Matrix22 = ((int)0X88d6),
- TextureClipmapDepthSgix = ((int)0X8176),
- SignedRgb8UnsignedAlpha8Nv = ((int)0X870d),
- AlphaTestRef = ((int)0X0bc2),
- OneMinusSrcColor = ((int)0X0301),
- PackInvertMesa = ((int)0X8758),
- FogCoordinateArrayTypeExt = ((int)0X8454),
- ConvolutionFilterScaleExt = ((int)0X8014),
- MaxBindableUniformSizeExt = ((int)0X8ded),
- TexturePostSpecularHp = ((int)0X8168),
- CompressedLuminanceLatc1Ext = ((int)0X8c70),
- QuadraticAttenuation = ((int)0X1209),
- NormalMapNv = ((int)0X8511),
- Modelview31Arb = ((int)0X873f),
- TextureCubeMapNegativeZExt = ((int)0X851a),
- Texcoord2BitPgi = ((int)0X20000000),
- R3G3B2 = ((int)0X2a10),
- Spare1Nv = ((int)0X852f),
- CombineRgbArb = ((int)0X8571),
- TextureDepthSizeArb = ((int)0X884a),
- ColorAttachment9Ext = ((int)0X8ce9),
- Texture1Arb = ((int)0X84c1),
- PnTrianglesTesselationLevelAti = ((int)0X87f4),
- ClampReadColorArb = ((int)0X891c),
- TextureInternalFormat = ((int)0X1003),
- SampleAlphaToCoverageArb = ((int)0X809e),
- CullVertexIbm = ((int)103050),
- MaxCombinedTextureImageUnitsArb = ((int)0X8b4d),
- ReadFramebufferExt = ((int)0X8ca8),
- Gl422RevExt = ((int)0X80cd),
- ArrayElementLockCountExt = ((int)0X81a9),
- Reg11Ati = ((int)0X892c),
- PointSpriteArb = ((int)0X8861),
- CompressedRgbS3tcDxt1Ext = ((int)0X83f0),
- IntSampler1DArrayExt = ((int)0X8dce),
- FloatRNv = ((int)0X8880),
- NormalArrayExt = ((int)0X8075),
- MirrorClampToBorderExt = ((int)0X8912),
- NegativeYExt = ((int)0X87da),
- Matrix25 = ((int)0X88d9),
- R1uiC4ubV3fSun = ((int)0X85c5),
- MaxTextureStackDepth = ((int)0X0d39),
- ActiveVaryingMaxLengthNv = ((int)0X8c82),
- SampleAlphaToCoverage = ((int)0X809e),
- NativeGraphicsHandlePgi = ((int)0X1a202),
- TextureAlphaSizeExt = ((int)0X805f),
- HiScaleNv = ((int)0X870e),
- Histogram = ((int)0X8024),
- Srgb8Alpha8Ext = ((int)0X8c43),
- MaxVertexBindableUniformsExt = ((int)0X8de2),
- NearestMipmapNearest = ((int)0X2700),
- ResampleDecimateOml = ((int)0X8989),
- FramebufferIncompleteDimensionsExt = ((int)0X8cd9),
- TextureCubeMapPositiveZ = ((int)0X8519),
- PnTrianglesNormalModeQuadraticAti = ((int)0X87f8),
- TextureCubeMapPositiveX = ((int)0X8515),
- TextureCubeMapPositiveY = ((int)0X8517),
- SwizzleStrDrAti = ((int)0X8978),
- AttribArrayTypeNv = ((int)0X8625),
- Con26Ati = ((int)0X895b),
- DrawFramebufferExt = ((int)0X8ca9),
- PixelTexGenAlphaNoReplaceSgix = ((int)0X8188),
- EvalVertexAttrib15Nv = ((int)0X86d5),
- ObjectActiveUniformMaxLengthArb = ((int)0X8b87),
- Reg2Ati = ((int)0X8923),
- T4fV4f = ((int)0X2a28),
- AlphaTestFunc = ((int)0X0bc1),
- SwizzleStrqAti = ((int)0X897a),
- PixelTextureSgis = ((int)0X8353),
- RgbaSignedComponentsExt = ((int)0X8c3c),
- EvalTriangular2DNv = ((int)0X86c1),
- DependentHiloTexture2DNv = ((int)0X8858),
- Con11Ati = ((int)0X894c),
- ProgramNativeTemporaries = ((int)0X88a6),
- PixelMapGToG = ((int)0X0c77),
- CurrentRasterTextureCoords = ((int)0X0b06),
- Operand2AlphaArb = ((int)0X859a),
- ColorArrayType = ((int)0X8082),
- PnTrianglesAti = ((int)0X87f0),
- One = ((int)1),
- IuiV3fExt = ((int)0X81ae),
- NormalizedRangeExt = ((int)0X87e0),
- MaxRenderbufferSizeExt = ((int)0X84e8),
- IndexMaterialExt = ((int)0X81b8),
- CompBitAti = ((int)0X00000002),
- NormalArrayParallelPointersIntel = ((int)0X83f6),
- ObjectPlane = ((int)0X2501),
- TextureIntensitySize = ((int)0X8061),
- DtBiasNv = ((int)0X8717),
- TriangleListSun = ((int)0X81d7),
- MaxProgramTotalOutputComponentsNv = ((int)0X8c28),
- PostColorMatrixRedScaleSgi = ((int)0X80b4),
- PassThroughNv = ((int)0X86e6),
- Con12Ati = ((int)0X894d),
- Src1Alpha = ((int)0X8589),
- PixelSubsample4444Sgix = ((int)0X85a2),
- Render = ((int)0X1c00),
- Sampler2D = ((int)0X8b5e),
- AccumClearValue = ((int)0X0b80),
- EdgeFlagArrayPointerExt = ((int)0X8093),
- FogCoordSrc = ((int)0X8450),
- Operand0AlphaArb = ((int)0X8598),
- ColorSum = ((int)0X8458),
- T2fC3fV3f = ((int)0X2a2a),
- Gl4Pass2Ext = ((int)0X80a6),
- DepthPassInstrumentCountersSgix = ((int)0X8311),
- NormalArrayTypeExt = ((int)0X807e),
- OpRoundExt = ((int)0X8790),
- Luminance8 = ((int)0X8040),
- UniformBufferExt = ((int)0X8dee),
- UnsignedShort4444 = ((int)0X8033),
- DeleteStatus = ((int)0X8b80),
- RgbaFloat32Ati = ((int)0X8814),
- ScissorBit = ((int)0X00080000),
- T4fC4fN3fV4f = ((int)0X2a2d),
- SwizzleStqDqAti = ((int)0X8979),
- Int = ((int)0X1404),
- TextureBorderValuesNv = ((int)0X871a),
- PixelMapIToG = ((int)0X0c73),
- FloatR16Nv = ((int)0X8884),
- EvalVertexAttrib4Nv = ((int)0X86ca),
- GreenMinClampIngr = ((int)0X8561),
- BackPrimaryColorNv = ((int)0X8c77),
- UnsignedIdentityNv = ((int)0X8536),
- VertexShader = ((int)0X8b31),
- UnsignedShort1555RevExt = ((int)0X8366),
- LightModelAmbient = ((int)0X0b53),
- BoolVec3 = ((int)0X8b58),
- InterlaceSgix = ((int)0X8094),
- DrawBuffer14Ati = ((int)0X8833),
- StencilTagBitsExt = ((int)0X88f2),
- PixelTransform2DStackDepthExt = ((int)0X8336),
- WeightArrayBufferBinding = ((int)0X889e),
- MatrixExt = ((int)0X87c0),
- MaxGeometryTotalOutputComponentsExt = ((int)0X8de1),
- PolygonSmoothHint = ((int)0X0c53),
- MaxRationalEvalOrderNv = ((int)0X86d7),
- SrcAlphaSaturate = ((int)0X0308),
- TableTooLarge = ((int)0X8031),
- ElementArrayBufferBindingArb = ((int)0X8895),
- FramebufferIncompleteAttachmentExt = ((int)0X8cd6),
- Srgb8 = ((int)0X8c41),
- IndexTestRefExt = ((int)0X81b7),
- Float32UnsignedInt248RevNv = ((int)0X8dad),
- Con22Ati = ((int)0X8957),
- HistogramFormat = ((int)0X8027),
- FragmentColorMaterialParameterSgix = ((int)0X8403),
- ReadWrite = ((int)0X88ba),
- MaxArrayTextureLayersExt = ((int)0X88ff),
- NegativeZExt = ((int)0X87db),
- TextureBufferExt = ((int)0X8c2a),
- IntVec2 = ((int)0X8b53),
- IntVec3 = ((int)0X8b54),
- Rgb4Ext = ((int)0X804f),
- ConstEyeNv = ((int)0X86e5),
- DrawBuffer1Arb = ((int)0X8826),
- IntVec4 = ((int)0X8b55),
- ProxyTextureCubeMapArb = ((int)0X851b),
- Point = ((int)0X1b00),
- ClipPlane3 = ((int)0X3003),
- DepthComponent16 = ((int)0X81a5),
- LightModelSpecularVectorApple = ((int)0X85b0),
- PixelMapRToR = ((int)0X0c76),
- Luminance6Alpha2Ext = ((int)0X8044),
- Matrix29 = ((int)0X88dd),
- Matrix19 = ((int)0X88d3),
- IndexBitPgi = ((int)0X00080000),
- ResampleReplicateSgix = ((int)0X842e),
- Con3Ati = ((int)0X8944),
- PrimaryColorNv = ((int)0X852c),
- UnsignedIntS8S888Nv = ((int)0X86da),
- MaxProgramOutputVerticesNv = ((int)0X8c27),
- TextureCubeMap = ((int)0X8513),
- RenderbufferSamplesExt = ((int)0X8cab),
- Rgb8iExt = ((int)0X8d8f),
- DepthClearValue = ((int)0X0b73),
- SecondaryInterpolatorAti = ((int)0X896d),
- ColorAttachment1Ext = ((int)0X8ce1),
- TextureLightingModeHp = ((int)0X8167),
- ProxyTexture4DSgis = ((int)0X8135),
- UnsignedShort565Reversed = ((int)0X8364),
- NormalArrayBufferBindingArb = ((int)0X8897),
- TangentArrayPointerExt = ((int)0X8442),
- Operand0Alpha = ((int)0X8598),
- TextureCompressed = ((int)0X86a1),
- Luminance4 = ((int)0X803f),
- Con24Ati = ((int)0X8959),
- PixelTransform2DMatrixExt = ((int)0X8338),
- Luminance16iExt = ((int)0X8d8c),
- PostConvolutionColorTable = ((int)0X80d1),
- GenerateMipmapHint = ((int)0X8192),
- PhongWin = ((int)0X80ea),
- TextureDeformationBitSgix = ((int)0X00000001),
- LuminanceAlpha32uiExt = ((int)0X8d75),
- PackLsbFirst = ((int)0X0d01),
- OpRecipSqrtExt = ((int)0X8795),
- ProxyPostConvolutionColorTable = ((int)0X80d4),
- SecondaryColorNv = ((int)0X852d),
- MaxVertexShaderInvariantsExt = ((int)0X87c7),
- ConvolutionFormat = ((int)0X8017),
- Rgba32uiExt = ((int)0X8d70),
- ModulateAddAti = ((int)0X8744),
- TextureEnvMode = ((int)0X2200),
- SamplePatternExt = ((int)0X80ac),
- Select = ((int)0X1c02),
- TextureClipmapLodOffsetSgix = ((int)0X8175),
- DepthStencilNv = ((int)0X84f9),
- Rgba16iExt = ((int)0X8d88),
- UnpackSkipImagesExt = ((int)0X806d),
- MapColor = ((int)0X0d10),
- Max4DTextureSizeSgis = ((int)0X8138),
- VertexArrayParallelPointersIntel = ((int)0X83f5),
- OutputTextureCoord9Ext = ((int)0X87a6),
- OffsetProjectiveTexture2DScaleNv = ((int)0X8851),
- ReplaceMiddleSun = ((int)0X0002),
- MaxProgramNativeAddressRegisters = ((int)0X88b3),
- CompressedSluminanceAlpha = ((int)0X8c4b),
- OutputTextureCoord28Ext = ((int)0X87b9),
- BlueMinClampIngr = ((int)0X8562),
- ResampleAverageOml = ((int)0X8988),
- EvalVertexAttrib8Nv = ((int)0X86ce),
- PostColorMatrixAlphaBias = ((int)0X80bb),
- None = ((int)0),
- OneMinusConstantAlphaExt = ((int)0X8004),
- UnsignedIntSamplerCubeExt = ((int)0X8dd4),
- AlwaysSoftHintPgi = ((int)0X1a20d),
- Nor = ((int)0X1508),
- BiasBitAti = ((int)0X00000008),
- StencilBackWritemask = ((int)0X8ca5),
- TextureGreenTypeArb = ((int)0X8c11),
- MatrixIndexArrayStrideArb = ((int)0X8848),
- NegativeWExt = ((int)0X87dc),
- TextureMaxLodSgis = ((int)0X813b),
- LineBit = ((int)0X00000004),
- PixelMagFilterExt = ((int)0X8331),
- PostConvolutionGreenBiasExt = ((int)0X8021),
- Src2Alpha = ((int)0X858a),
- Modelview7Arb = ((int)0X8727),
- RgbScale = ((int)0X8573),
- PrimitiveRestartIndexNv = ((int)0X8559),
- FramebufferIncompleteReadBufferExt = ((int)0X8cdc),
- Con6Ati = ((int)0X8947),
- ProgramResidentNv = ((int)0X8647),
- MaxGeometryUniformComponentsExt = ((int)0X8ddf),
- ReflectionMapNv = ((int)0X8512),
- Rgb4S3tc = ((int)0X83a1),
- CompressedIntensity = ((int)0X84ec),
- FragmentShader = ((int)0X8b30),
- StencilBackPassDepthPass = ((int)0X8803),
- SignedRgbaNv = ((int)0X86fb),
- Con19Ati = ((int)0X8954),
- StencilBits = ((int)0X0d57),
- Dsdt8Nv = ((int)0X8709),
- TextureWrapQSgis = ((int)0X8137),
- FloatMat2 = ((int)0X8b5a),
- TextureCoordArrayBufferBindingArb = ((int)0X889a),
- Map1Normal = ((int)0X0d92),
- PostColorMatrixAlphaBiasSgi = ((int)0X80bb),
- RgbScaleExt = ((int)0X8573),
- UnsignedIntSampler3DExt = ((int)0X8dd3),
- PolygonOffsetPoint = ((int)0X2a01),
- TextureBorderColor = ((int)0X1004),
- TextureBindingCubeMapArb = ((int)0X8514),
- MaxPixelTransform2DStackDepthExt = ((int)0X8337),
- TextureClipmapVirtualDepthSgix = ((int)0X8174),
- IntVec2Arb = ((int)0X8b53),
- ObjectSubtypeArb = ((int)0X8b4f),
- DrawBuffer8Arb = ((int)0X882d),
- Con20Ati = ((int)0X8955),
- MaxTransformFeedbackInterleavedAttribsNv = ((int)0X8c8a),
- Modelview0MatrixExt = ((int)0X0ba6),
- TextureGenMode = ((int)0X2500),
- VertexSourceAti = ((int)0X8774),
- PolygonToken = ((int)0X0703),
- PostConvolutionAlphaBias = ((int)0X8023),
- AccumBlueBits = ((int)0X0d5a),
- DrawBuffer10Arb = ((int)0X882f),
- SubpixelBits = ((int)0X0d50),
- Dot3Ati = ((int)0X8966),
- Texture1DStackMesax = ((int)0X8759),
- Map1VertexAttrib64Nv = ((int)0X8666),
- MaxAsyncHistogramSgix = ((int)0X832d),
- AlphaFloat16Ati = ((int)0X881c),
- BinormalArrayPointerExt = ((int)0X8443),
- ColorArrayParallelPointersIntel = ((int)0X83f7),
- SamplerCube = ((int)0X8b60),
- Samples3Dfx = ((int)0X86b4),
- Source2RgbExt = ((int)0X8582),
- CurrentFogCoord = ((int)0X8453),
- DynamicReadArb = ((int)0X88e9),
- CompressedLuminanceAlphaLatc2Ext = ((int)0X8c72),
- MaxFragmentLightsSgix = ((int)0X8404),
- DepthPassInstrumentSgix = ((int)0X8310),
- Sampler2DArrayExt = ((int)0X8dc1),
- OutputTextureCoord15Ext = ((int)0X87ac),
- TransposeProjectionMatrixArb = ((int)0X84e4),
- Con29Ati = ((int)0X895e),
- ColorArrayStride = ((int)0X8083),
- Map1Index = ((int)0X0d91),
- NumGeneralCombinersNv = ((int)0X854e),
- Luminance4Ext = ((int)0X803f),
- CurrentProgram = ((int)0X8b8d),
- And = ((int)0X1501),
- OutputTextureCoord5Ext = ((int)0X87a2),
- CurrentRasterDistance = ((int)0X0b09),
- Con25Ati = ((int)0X895a),
- Gl4Bytes = ((int)0X1409),
- Load = ((int)0X0101),
- DualLuminance16Sgis = ((int)0X8117),
- Min = ((int)0X8007),
- Sluminance = ((int)0X8c46),
- NativeGraphicsEndHintPgi = ((int)0X1a204),
- MaxTextureImageUnitsArb = ((int)0X8872),
- FrontFace = ((int)0X0b46),
- DrawBuffer2Arb = ((int)0X8827),
- ResampleDecimateSgix = ((int)0X8430),
- DependentArTexture2DNv = ((int)0X86e9),
- PostColorMatrixRedBias = ((int)0X80b8),
- ColorTableLuminanceSize = ((int)0X80de),
- Map1VertexAttrib04Nv = ((int)0X8660),
- PixelMapIToR = ((int)0X0c72),
- NormalArrayPointerExt = ((int)0X808f),
- DoubleExt = ((int)0X140a),
- ProxyTexture2DExt = ((int)0X8064),
- ColorSumArb = ((int)0X8458),
- CurrentBinormalExt = ((int)0X843c),
- Modelview0StackDepthExt = ((int)0X0ba3),
- NegativeXExt = ((int)0X87d9),
- TextureCompressedImageSize = ((int)0X86a0),
- InterleavedAttribsNv = ((int)0X8c8c),
- DrawBuffer5Arb = ((int)0X882a),
- ShaderOperationNv = ((int)0X86df),
- ProgramTexInstructionsArb = ((int)0X8806),
- PointFadeThresholdSizeExt = ((int)0X8128),
- SpriteObjectAlignedSgix = ((int)0X814d),
- FogStart = ((int)0X0b63),
- TextureStencilSizeExt = ((int)0X88f1),
- MaxAsyncTexImageSgix = ((int)0X835f),
- ColorTableBlueSize = ((int)0X80dc),
- SignedIntensityNv = ((int)0X8707),
- RenderbufferStencilSizeExt = ((int)0X8d55),
- OneMinusConstantColor = ((int)0X8002),
- Texture7Arb = ((int)0X84c7),
- ProgramStringNv = ((int)0X8628),
- ColorTableGreenSize = ((int)0X80db),
- TextureGenR = ((int)0X0c62),
- CompressedRgba = ((int)0X84ee),
- SignedHilo8Nv = ((int)0X885f),
- ColorWritemask = ((int)0X0c23),
- BumpTargetAti = ((int)0X877c),
- ClampToBorderArb = ((int)0X812d),
- ResampleZeroFillSgix = ((int)0X842f),
- TransformFeedbackBufferSizeNv = ((int)0X8c85),
- FragmentLightModelNormalInterpolationSgix = ((int)0X840b),
- MaxVertexUnitsArb = ((int)0X86a4),
- PointSmoothHint = ((int)0X0c51),
- OutputTextureCoord22Ext = ((int)0X87b3),
- MaxVertexHintPgi = ((int)0X1a22d),
- MultisampleBitExt = ((int)0X20000000),
- StencilValueMask = ((int)0X0b93),
- CurrentRasterPosition = ((int)0X0b07),
- Sampler2DRectShadowArb = ((int)0X8b64),
- CullVertexObjectPositionExt = ((int)0X81ac),
- LuminanceIntegerExt = ((int)0X8d9c),
- AlwaysFastHintPgi = ((int)0X1a20c),
- FloatVec2 = ((int)0X8b50),
- FloatVec3 = ((int)0X8b51),
- TextureShaderNv = ((int)0X86de),
- OutputTextureCoord0Ext = ((int)0X879d),
- PostConvolutionColorTableSgi = ((int)0X80d1),
- VertexProgramPointSizeNv = ((int)0X8642),
- Light0 = ((int)0X4000),
- Gl4XBitAti = ((int)0X00000002),
- GreenMaxClampIngr = ((int)0X8565),
- Map1VertexAttrib124Nv = ((int)0X866c),
- TextureCubeMapNegativeY = ((int)0X8518),
- ArrayEnabled = ((int)0X8622),
- ClipPlane4 = ((int)0X3004),
- R1uiN3fV3fSun = ((int)0X85c7),
- PrimitivesGeneratedNv = ((int)0X8c87),
- VertexAttribArray0Nv = ((int)0X8650),
- SluminanceExt = ((int)0X8c46),
- TextureColorWritemaskSgis = ((int)0X81ef),
- StencilBackFailAti = ((int)0X8801),
- Ambient = ((int)0X1200),
- TexturePreSpecularHp = ((int)0X8169),
- Con21Ati = ((int)0X8956),
- OutputTextureCoord1Ext = ((int)0X879e),
- EmbossMapNv = ((int)0X855f),
- ConstantBorder = ((int)0X8151),
- NearestMipmapLinear = ((int)0X2702),
- Con5Ati = ((int)0X8946),
- ActiveTexture = ((int)0X84e0),
- EdgeFlagArrayCountExt = ((int)0X808d),
- PostTextureFilterScaleSgix = ((int)0X817a),
- FogCoordArrayBufferBinding = ((int)0X889d),
- ProgramNativeTexIndirectionsArb = ((int)0X880a),
- Replace = ((int)0X1e01),
- PointSprite = ((int)0X8861),
- UnsignedShort = ((int)0X1403),
- ConstantColorExt = ((int)0X8001),
- PerspectiveCorrectionHint = ((int)0X0c50),
- Normalize = ((int)0X0ba1),
- PostImageTransformColorTableHp = ((int)0X8162),
- QuarterBitAti = ((int)0X00000010),
- Map1VertexAttrib44Nv = ((int)0X8664),
- Fog = ((int)0X0b60),
- GeometryProgramNv = ((int)0X8c26),
- MatrixIndexArraySizeArb = ((int)0X8846),
- OutputTextureCoord6Ext = ((int)0X87a3),
- VertexArrayStorageHintApple = ((int)0X851f),
- RgbaS3tc = ((int)0X83a2),
- IndexArrayStrideExt = ((int)0X8086),
- HistogramExt = ((int)0X8024),
- VertexProgram = ((int)0X8620),
- CompressedLuminanceArb = ((int)0X84ea),
- NumCompressedTextureFormatsArb = ((int)0X86a2),
- GreenIntegerExt = ((int)0X8d95),
- ClipVolumeClippingHintExt = ((int)0X80f0),
- DrawBuffer15Arb = ((int)0X8834),
- UnsignedInt248Nv = ((int)0X84fa),
- CompressedRgbaFxt13Dfx = ((int)0X86b1),
- Noop = ((int)0X1505),
- Domain = ((int)0X0a02),
- Con23Ati = ((int)0X8958),
- ProgramInstruction = ((int)0X88a0),
- PixelPackBufferArb = ((int)0X88eb),
- TextureFilterControl = ((int)0X8500),
- LuminanceAlpha16uiExt = ((int)0X8d7b),
- Texture1DArrayExt = ((int)0X8c18),
- Texture1DStackBindingMesax = ((int)0X875d),
- PreviousArb = ((int)0X8578),
- ExpandNegateNv = ((int)0X8539),
- VibranceBiasNv = ((int)0X8719),
- VertexArrayBindingApple = ((int)0X85b5),
- ColorMatrix = ((int)0X80b1),
- T2fV3f = ((int)0X2a27),
- Luminance16fArb = ((int)0X881e),
- PrimaryColor = ((int)0X8577),
- FogCoordinateArrayListStrideIbm = ((int)103086),
- TextureBufferFormatExt = ((int)0X8c2e),
- MaxProgramParameterBufferBindingsNv = ((int)0X8da0),
- FogCoord = ((int)0X8451),
- MaxPaletteMatricesArb = ((int)0X8842),
- ObjectLinkStatusArb = ((int)0X8b82),
- MaxProgramLoopDepthNv = ((int)0X88f7),
- Lighting = ((int)0X0b50),
- ImageTransform2DHp = ((int)0X8161),
- SampleCoverageInvert = ((int)0X80ab),
- OrInverted = ((int)0X150d),
- MaxVertexVaryingComponentsExt = ((int)0X8dde),
- IndexArrayListStrideIbm = ((int)103083),
- ColorTableIntensitySize = ((int)0X80df),
- Map1VertexAttrib104Nv = ((int)0X866a),
- ColorTableAlphaSizeSgi = ((int)0X80dd),
- StreamReadArb = ((int)0X88e1),
- DetailTexture2DBindingSgis = ((int)0X8096),
- Reg26Ati = ((int)0X893b),
- VertexAttribArray2Nv = ((int)0X8652),
- HistogramWidthExt = ((int)0X8026),
- PolygonStippleBit = ((int)0X00000010),
- VertexArray = ((int)0X8074),
- HistogramLuminanceSize = ((int)0X802c),
- PnTrianglesNormalModeAti = ((int)0X87f3),
- ReplaceExt = ((int)0X8062),
- TrianglesAdjacencyExt = ((int)0X000c),
- ObjectActiveAttributeMaxLengthArb = ((int)0X8b8a),
- TextureLuminanceSize = ((int)0X8060),
- DetailTextureModeSgis = ((int)0X809b),
- PixelTexGenModeSgix = ((int)0X832b),
- EvalVertexAttrib14Nv = ((int)0X86d4),
- Alpha16iExt = ((int)0X8d8a),
- IntSampler2DArrayExt = ((int)0X8dcf),
- NormalArrayType = ((int)0X807e),
- Texture4 = ((int)0X84c4),
- StorageCachedApple = ((int)0X85be),
- FramebufferBindingExt = ((int)0X8ca6),
- CurrentTangentExt = ((int)0X843b),
- DepthAttachmentExt = ((int)0X8d00),
- OpMultiplyMatrixExt = ((int)0X8798),
- SamplerBufferExt = ((int)0X8dc2),
- PixelTileCacheIncrementSgix = ((int)0X813f),
- TransposeNv = ((int)0X862c),
- MaxClipPlanes = ((int)0X0d32),
- DotProductTexture1DNv = ((int)0X885c),
- OutputTextureCoord2Ext = ((int)0X879f),
- SignedRgbUnsignedAlphaNv = ((int)0X870c),
- FramebufferIncompleteMultisampleExt = ((int)0X8d56),
- ArrayBufferArb = ((int)0X8892),
- CurrentNormal = ((int)0X0b02),
- DistanceAttenuationExt = ((int)0X8129),
- Light7 = ((int)0X4007),
- Intensity8uiExt = ((int)0X8d7f),
- VertexShaderBindingExt = ((int)0X8781),
- TextureCompareFuncArb = ((int)0X884d),
- SingleColor = ((int)0X81f9),
- OpFloorExt = ((int)0X878f),
- Renderer = ((int)0X1f01),
- Texture4Arb = ((int)0X84c4),
- MaxProgramTexelOffsetNv = ((int)0X8905),
- ExpandNormalNv = ((int)0X8538),
- FragmentLight0Sgix = ((int)0X840c),
- OpIndexExt = ((int)0X8782),
- Alpha32uiExt = ((int)0X8d72),
- DualLuminance8Sgis = ((int)0X8115),
- UnsignedShort565Rev = ((int)0X8364),
- StreamCopyArb = ((int)0X88e2),
- Smooth = ((int)0X1d01),
- ScreenCoordinatesRend = ((int)0X8490),
- FogScaleValueSgix = ((int)0X81fd),
- Modelview6Arb = ((int)0X8726),
- DsdtNv = ((int)0X86f5),
- FloatRg32Nv = ((int)0X8887),
- Source2RgbArb = ((int)0X8582),
- UnpackRowLength = ((int)0X0cf2),
- AllAttribBits = unchecked((int)0Xffffffff),
- StrictLightingHintPgi = ((int)0X1a217),
- DetailTextureFuncPointsSgis = ((int)0X809c),
- OutputTextureCoord8Ext = ((int)0X87a5),
- CurrentMatrixStackDepthArb = ((int)0X8640),
- Reg1Ati = ((int)0X8922),
- RenderMode = ((int)0X0c40),
- MirrorClampExt = ((int)0X8742),
- Matrix6Nv = ((int)0X8636),
- ScaleByFourNv = ((int)0X853f),
- ClampToBorderSgis = ((int)0X812d),
- OutputTextureCoord30Ext = ((int)0X87bb),
- VertexStateProgramNv = ((int)0X8621),
- MaxProgramAddressRegisters = ((int)0X88b1),
- StackOverflow = ((int)0X0503),
- Map2VertexAttrib124Nv = ((int)0X867c),
- MaxTransformFeedbackSeparateAttribsNv = ((int)0X8c8b),
- CurrentAttribNv = ((int)0X8626),
- OneMinusDstAlpha = ((int)0X0305),
- FuncReverseSubtract = ((int)0X800b),
- Srgb8Ext = ((int)0X8c41),
- FragmentLight5Sgix = ((int)0X8411),
- TextureBinding2DArrayExt = ((int)0X8c1d),
- TextureBlueSize = ((int)0X805e),
- Matrix3 = ((int)0X88c3),
- Fastest = ((int)0X1101),
- MultisampleSgis = ((int)0X809d),
- QuadAlpha4Sgis = ((int)0X811e),
- Rgb10A2 = ((int)0X8059),
- PixelTileGridWidthSgix = ((int)0X8142),
- Map1Vertex4 = ((int)0X0d98),
- TextureClipmapCenterSgix = ((int)0X8171),
+ Map1TextureCoord4 = ((int)0X0d96),
Map1Vertex3 = ((int)0X0d97),
- StaticAti = ((int)0X8760),
- VariantExt = ((int)0X87c1),
- OpMovExt = ((int)0X8799),
- Multisample3Dfx = ((int)0X86b2),
- ScissorBox = ((int)0X0c10),
- SubtractArb = ((int)0X84e7),
- DepthScale = ((int)0X0d1e),
- TextureMaxLod = ((int)0X813b),
- DrawBuffer14 = ((int)0X8833),
- MultisampleBitArb = ((int)0X20000000),
- ActiveUniformMaxLength = ((int)0X8b87),
- ObjectValidateStatusArb = ((int)0X8b83),
- Du8dv8Ati = ((int)0X877a),
- ReplacementCodeSun = ((int)0X81d8),
- CompressedRgbaS3tcDxt1Ext = ((int)0X83f1),
- PointFadeThresholdSizeArb = ((int)0X8128),
- ObjectDeleteStatusArb = ((int)0X8b80),
- GeometryInputTypeExt = ((int)0X8ddb),
- ProgramAttribComponentsNv = ((int)0X8906),
- UnsignedInt5999RevExt = ((int)0X8c3e),
- IndexOffset = ((int)0X0d13),
- Matrix0Nv = ((int)0X8630),
- Con31Ati = ((int)0X8960),
- HalfBiasNegateNv = ((int)0X853b),
- DotProductTexture3DNv = ((int)0X86ef),
- Dither = ((int)0X0bd0),
- Short = ((int)0X1402),
- CompileAndExecute = ((int)0X1301),
- ArrayStride = ((int)0X8624),
- ProgramNativeAddressRegisters = ((int)0X88b2),
- Texture7 = ((int)0X84c7),
- NumInputInterpolatorComponentsAti = ((int)0X8973),
- PostConvolutionRedBiasExt = ((int)0X8020),
- SrgbAlpha = ((int)0X8c42),
- DepthComponent16Sgix = ((int)0X81a5),
- PixelPackBufferBindingExt = ((int)0X88ed),
- OutputTextureCoord26Ext = ((int)0X87b7),
- YcbcrMesa = ((int)0X8757),
- QuadLuminance4Sgis = ((int)0X8120),
- NumInstructionsPerPassAti = ((int)0X8971),
- Texcoord1BitPgi = ((int)0X10000000),
- Rgba16Ext = ((int)0X805b),
- SaturateBitAti = ((int)0X00000040),
- Alpha8Ext = ((int)0X803c),
- UnsignedInt = ((int)0X1405),
- Matrix3Nv = ((int)0X8633),
- MaxVertexAttribs = ((int)0X8869),
- MaxTextureCoordsNv = ((int)0X8871),
- RgbaFloatModeArb = ((int)0X8820),
- R1uiC3fV3fSun = ((int)0X85c6),
- FormatSubsample244244Oml = ((int)0X8983),
- VertexAttribArray15Nv = ((int)0X865f),
- TextureLightExt = ((int)0X8350),
- UnsignedShort565RevExt = ((int)0X8364),
- Con27Ati = ((int)0X895c),
- AlphaIntegerExt = ((int)0X8d97),
- Texture25Arb = ((int)0X84d9),
- MaxTrackMatricesNv = ((int)0X862f),
- DepthComponent16Arb = ((int)0X81a5),
- MovAti = ((int)0X8961),
- Bool = ((int)0X8b56),
- ModulateSignedAddAti = ((int)0X8745),
- StaticCopyArb = ((int)0X88e6),
- UnsignedIntSampler2DArrayExt = ((int)0X8dd7),
- Source3RgbNv = ((int)0X8583),
- TextureBindingBufferExt = ((int)0X8c2c),
- IuiN3fV3fExt = ((int)0X81b0),
- SecondaryColorArrayListIbm = ((int)103077),
- Texture2DArrayExt = ((int)0X8c1a),
- Texture16 = ((int)0X84d0),
- Texture17 = ((int)0X84d1),
- Texture14 = ((int)0X84ce),
- SpriteEyeAlignedSgix = ((int)0X814e),
- Source1AlphaExt = ((int)0X8589),
- OpExpBase2Ext = ((int)0X8791),
- Source3AlphaNv = ((int)0X858b),
- Texture10 = ((int)0X84ca),
- ProxyTextureRectangleNv = ((int)0X84f7),
- Rgba32iExt = ((int)0X8d82),
- InvariantDatatypeExt = ((int)0X87eb),
- Texture24Arb = ((int)0X84d8),
- Texture19 = ((int)0X84d3),
- ActiveStencilFaceExt = ((int)0X8911),
- ImageRotateOriginXHp = ((int)0X815a),
- DynamicCopy = ((int)0X88ea),
- CurrentFogCoordinateExt = ((int)0X8453),
- Con4Ati = ((int)0X8945),
- Matrix5Nv = ((int)0X8635),
- FogFuncPointsSgis = ((int)0X812b),
- FragmentShaderAti = ((int)0X8920),
- SmoothPointSizeGranularity = ((int)0X0b13),
- TextureColorTableSgi = ((int)0X80bc),
- GreenScale = ((int)0X0d18),
- TextureMatrix = ((int)0X0ba8),
- Texture2DBindingExt = ((int)0X8069),
- PrimitiveIdNv = ((int)0X8c7c),
- Modelview = ((int)0X1700),
- VertexArrayExt = ((int)0X8074),
- SampleCoverageValue = ((int)0X80aa),
- ShadingLanguageVersionArb = ((int)0X8b8c),
- MaxCubeMapTextureSizeExt = ((int)0X851c),
- BinormalArrayTypeExt = ((int)0X8440),
- MulAti = ((int)0X8964),
- ElementArrayTypeApple = ((int)0X8769),
- DotProductPassThroughNv = ((int)0X885b),
- ColorAttachment4Ext = ((int)0X8ce4),
- CurrentRasterNormalSgix = ((int)0X8406),
- TrackMatrixTransformNv = ((int)0X8649),
- UnsignedInt2101010Reversed = ((int)0X8368),
- ColorArrayPointer = ((int)0X8090),
- DiscardAti = ((int)0X8763),
- FloatClearColorValueNv = ((int)0X888d),
- ColorArraySize = ((int)0X8081),
- Spare0PlusSecondaryColorNv = ((int)0X8532),
- PixelCountAvailableNv = ((int)0X8867),
- RedIntegerExt = ((int)0X8d94),
- Color3BitPgi = ((int)0X00010000),
- Map1VertexAttrib134Nv = ((int)0X866d),
- TextureMagFilter = ((int)0X2800),
- EdgeFlagArrayPointer = ((int)0X8093),
- Texture26Arb = ((int)0X84da),
- FeedbackBufferType = ((int)0X0df2),
- ConvolutionFilterBias = ((int)0X8015),
- SampleAlphaToOneArb = ((int)0X809f),
- Rgba4S3tc = ((int)0X83a3),
- Rgb5A1 = ((int)0X8057),
- MaxProgramNativeTemporaries = ((int)0X88a7),
- MatColorIndexesBitPgi = ((int)0X01000000),
- BufferSize = ((int)0X8764),
- MaxTextureImageUnits = ((int)0X8872),
- Luminance = ((int)0X1909),
- VertexAttribArray11Nv = ((int)0X865b),
- GreenBits = ((int)0X0d53),
- Map1TextureCoord1 = ((int)0X0d93),
- BgrExt = ((int)0X80e0),
- PackCmykHintExt = ((int)0X800e),
- DepthComponent24Sgix = ((int)0X81a6),
- PixelMapIToBSize = ((int)0X0cb4),
- PointSmooth = ((int)0X0b10),
- RgbaIntegerModeExt = ((int)0X8d9e),
- VertexAttribArray7Nv = ((int)0X8657),
- Rgba12 = ((int)0X805a),
- DrawBuffer6Ati = ((int)0X882b),
- TransformFeedbackBufferNv = ((int)0X8c8e),
- TextureMinLod = ((int)0X813a),
- NearestClipmapNearestSgix = ((int)0X844d),
- DontCare = ((int)0X1100),
- ObjectActiveAttributesArb = ((int)0X8b89),
- UnsignedIntVec3Ext = ((int)0X8dc7),
- MaxProgramNativeAluInstructionsArb = ((int)0X880e),
- LightEnvModeSgix = ((int)0X8407),
- VertexAttribArray13Nv = ((int)0X865d),
- Luminance8Ext = ((int)0X8040),
- VertexIdNv = ((int)0X8c7b),
- AverageExt = ((int)0X8335),
- VertexAttribArray14Nv = ((int)0X865e),
- CompareRToTexture = ((int)0X884e),
- SluminanceAlphaExt = ((int)0X8c44),
- Sampler2DArb = ((int)0X8b5e),
- Rgb8 = ((int)0X8051),
- MaxOptimizedVertexShaderLocalsExt = ((int)0X87ce),
- AttribArraySizeNv = ((int)0X8623),
- MatrixPaletteArb = ((int)0X8840),
- PrimaryColorExt = ((int)0X8577),
- ScissorTest = ((int)0X0c11),
- PackSkipVolumesSgis = ((int)0X8130),
- ProxyTexture2DArrayExt = ((int)0X8c1b),
- RgbFloat32Ati = ((int)0X8815),
- Sampler1DShadow = ((int)0X8b61),
- Sluminance8Alpha8 = ((int)0X8c45),
- UnsignedIntVec2Ext = ((int)0X8dc6),
- StencilIndex8Ext = ((int)0X8d48),
- TypeRgbaFloatAti = ((int)0X8820),
- PixelTileGridDepthSgix = ((int)0X8144),
- Con30Ati = ((int)0X895f),
- Coeff = ((int)0X0a00),
- Nicest = ((int)0X1102),
- CombinerMappingNv = ((int)0X8543),
- FogCoordinateExt = ((int)0X8451),
- SampleAlphaToMaskSgis = ((int)0X809e),
- Reg7Ati = ((int)0X8928),
- UnsignedShort4444RevExt = ((int)0X8365),
- TextureMaxLevel = ((int)0X813d),
- IntSampler3DExt = ((int)0X8dcb),
- Gl422AverageExt = ((int)0X80ce),
- Rgb16iExt = ((int)0X8d89),
- Modelview1Arb = ((int)0X850a),
- Operand2RgbArb = ((int)0X8592),
- SecondaryColorArrayListStrideIbm = ((int)103087),
- LinearSharpenAlphaSgis = ((int)0X80ae),
- UnsignedNormalizedArb = ((int)0X8c17),
+ Map1Vertex4 = ((int)0X0d98),
+ Map2Color4 = ((int)0X0db0),
+ Map2Index = ((int)0X0db1),
Map2Normal = ((int)0X0db2),
- Texture23Arb = ((int)0X84d7),
- SecondaryColorArrayPointerExt = ((int)0X845d),
- Samples = ((int)0X80a9),
- VertexAttribArray12Nv = ((int)0X865c),
- PnTrianglesPointModeCubicAti = ((int)0X87f6),
- FogHint = ((int)0X0c54),
- MaxTrackMatrixStackDepthNv = ((int)0X862e),
- ZExt = ((int)0X87d7),
- Light5 = ((int)0X4005),
- ViewportBit = ((int)0X00000800),
- CurrentMatrixStackDepthNv = ((int)0X8640),
- EyePointSgis = ((int)0X81f4),
- RenderbufferGreenSizeExt = ((int)0X8d51),
- Ycrcb422Sgix = ((int)0X81bb),
- HistogramWidth = ((int)0X8026),
- UnsignedShort88Apple = ((int)0X85ba),
- UnsignedIntVec4Ext = ((int)0X8dc8),
- Texture23 = ((int)0X84d7),
- ShaderSourceLength = ((int)0X8b88),
- LightModelColorControl = ((int)0X81f8),
- TransposeModelviewMatrixArb = ((int)0X84e3),
- IndexTestFuncExt = ((int)0X81b6),
- DsdtMagNv = ((int)0X86f6),
- MinmaxSink = ((int)0X8030),
- StreamCopy = ((int)0X88e2),
- UpperLeft = ((int)0X8ca2),
- OffsetHiloTexture2DNv = ((int)0X8854),
- PackAlignment = ((int)0X0d05),
- PixelFragmentAlphaSourceSgis = ((int)0X8355),
- OffsetProjectiveTextureRectangleNv = ((int)0X8852),
- OutputTextureCoord23Ext = ((int)0X87b4),
- Reg31Ati = ((int)0X8940),
- ObjectAttachedObjectsArb = ((int)0X8b85),
- Green = ((int)0X1904),
- NumCompressedTextureFormats = ((int)0X86a2),
- Matrix27 = ((int)0X88db),
- CombinerComponentUsageNv = ((int)0X8544),
- SelectionBufferPointer = ((int)0X0df3),
- TextureMinLodSgis = ((int)0X813a),
- IntSamplerCubeExt = ((int)0X8dcc),
- RenderbufferCoverageSamplesNv = ((int)0X8cab),
- PixelPackBufferBinding = ((int)0X88ed),
- CombinerScaleNv = ((int)0X8548),
- FragmentDepth = ((int)0X8452),
- ProgramErrorStringArb = ((int)0X8874),
- FramebufferIncompleteMissingAttachmentExt = ((int)0X8cd7),
- BumpNumTexUnitsAti = ((int)0X8777),
- UnsignedIntSampler2DRectExt = ((int)0X8dd5),
- SliceAccumSun = ((int)0X85cc),
- Luminance16Alpha16Ext = ((int)0X8048),
- ObjectInfoLogLengthArb = ((int)0X8b84),
- Matrix15 = ((int)0X88cf),
- EyeLinear = ((int)0X2400),
- PostConvolutionRedScale = ((int)0X801c),
- N3fV3f = ((int)0X2a25),
- MatrixMode = ((int)0X0ba0),
- PackSwapBytes = ((int)0X0d00),
- RenderbufferExt = ((int)0X8d41),
- MaxTextureLodBias = ((int)0X84fd),
- CmykaExt = ((int)0X800d),
- CompressedRgb = ((int)0X84ed),
- DrawBuffer5Ati = ((int)0X882a),
- TextureCubeMapNegativeXExt = ((int)0X8516),
- ProgramTexIndirectionsArb = ((int)0X8807),
- MaxProgramAttribs = ((int)0X88ad),
- Intensity32iExt = ((int)0X8d85),
- SecondaryColorArray = ((int)0X845e),
- SmoothLineWidthRange = ((int)0X0b22),
- PointSizeMinSgis = ((int)0X8126),
- TangentArrayExt = ((int)0X8439),
- T2fC4ubV3f = ((int)0X2a29),
- ObjectBufferUsageAti = ((int)0X8765),
- FloatMat3 = ((int)0X8b5b),
- Repeat = ((int)0X2901),
- Lequal = ((int)0X0203),
- GeometryDeformationSgix = ((int)0X8194),
- LuminanceAlpha32iExt = ((int)0X8d87),
- Rgba12Ext = ((int)0X805a),
- AccumAlphaBits = ((int)0X0d5b),
- TextureClipmapFrameSgix = ((int)0X8172),
- QuadMeshSun = ((int)0X8614),
- PolygonOffsetFactorExt = ((int)0X8038),
- TextureLodBias = ((int)0X8501),
- CombineAlphaExt = ((int)0X8572),
- TransposeCurrentMatrixArb = ((int)0X88b7),
- BlendSrcAlpha = ((int)0X80cb),
- UnpackCmykHintExt = ((int)0X800f),
- StencilTest = ((int)0X0b90),
- CurrentTextureCoords = ((int)0X0b03),
- TextureCompareModeArb = ((int)0X884c),
- OpMinExt = ((int)0X878b),
- NativeGraphicsBeginHintPgi = ((int)0X1a203),
- PostColorMatrixBlueScaleSgi = ((int)0X80b6),
- TextureWrapT = ((int)0X2803),
- CurrentRasterIndex = ((int)0X0b05),
- Matrix20 = ((int)0X88d4),
- Matrix30 = ((int)0X88de),
- PostColorMatrixGreenBiasSgi = ((int)0X80b9),
- VertexShaderInstructionsExt = ((int)0X87cf),
- Luminance16Alpha16 = ((int)0X8048),
- TransposeProjectionMatrix = ((int)0X84e4),
- StencilBackRef = ((int)0X8ca3),
- Texture9 = ((int)0X84c9),
- TextureCoordArrayListIbm = ((int)103074),
- PostColorMatrixColorTableSgi = ((int)0X80d2),
- GeometryShaderExt = ((int)0X8dd9),
- Back = ((int)0X0405),
- LinkStatus = ((int)0X8b82),
- FramebufferExt = ((int)0X8d40),
- Intensity12 = ((int)0X804c),
- FragmentMaterialExt = ((int)0X8349),
- T2fN3fV3f = ((int)0X2a2b),
- PixelSubsample4242Sgix = ((int)0X85a4),
- TextureCoordArrayExt = ((int)0X8078),
- Combiner7Nv = ((int)0X8557),
- VertexStream1Ati = ((int)0X876d),
- Modelview3Arb = ((int)0X8723),
- Source1AlphaArb = ((int)0X8589),
- BoolVec4Arb = ((int)0X8b59),
- PointSize = ((int)0X0b11),
- IndexShift = ((int)0X0d12),
- LinearClipmapLinearSgix = ((int)0X8170),
- VertexWeightArrayStrideExt = ((int)0X850f),
- CombinerCdDotProductNv = ((int)0X8546),
- VertexArrayRangeLengthApple = ((int)0X851e),
- BackRight = ((int)0X0403),
- ClientVertexArrayBit = ((int)0X00000002),
- Operand1AlphaArb = ((int)0X8599),
- TextureHiSizeNv = ((int)0X871b),
- MaxEvalOrder = ((int)0X0d30),
- PackSkipPixels = ((int)0X0d04),
- Intensity4Ext = ((int)0X804a),
- PointFadeThresholdSizeSgis = ((int)0X8128),
- MaxAsyncReadPixelsSgix = ((int)0X8361),
- ProxyTexture2DStackMesax = ((int)0X875c),
- NormalArrayStride = ((int)0X807f),
- PixelMapBToBSize = ((int)0X0cb8),
- MaxProgramAluInstructionsArb = ((int)0X880b),
- MaxElementsVerticesExt = ((int)0X80e8),
- FloatRgNv = ((int)0X8881),
- ProgramLength = ((int)0X8627),
- MapTessellationNv = ((int)0X86c2),
- Intensity16iExt = ((int)0X8d8b),
- PostColorMatrixBlueBias = ((int)0X80ba),
- ColorTableSgi = ((int)0X80d0),
- SrgbAlphaExt = ((int)0X8c42),
- EyeRadialNv = ((int)0X855b),
- BgraIntegerExt = ((int)0X8d9b),
- EvalVertexAttrib2Nv = ((int)0X86c8),
- PixelTexGenQRoundSgix = ((int)0X8185),
- SharpenTextureFuncPointsSgis = ((int)0X80b0),
- QueryResultAvailable = ((int)0X8867),
- QuadLuminance8Sgis = ((int)0X8121),
- ShadingLanguageVersion = ((int)0X8b8c),
- MaxCombinedTextureImageUnits = ((int)0X8b4d),
- CompareRToTextureArb = ((int)0X884e),
- Texture4DsizeSgis = ((int)0X8136),
- CurrentBit = ((int)0X00000001),
- Operand0Rgb = ((int)0X8590),
- Byte = ((int)0X1400),
- IndexArrayPointer = ((int)0X8091),
- CoordReplace = ((int)0X8862),
- Matrix17 = ((int)0X88d1),
- BgrIntegerExt = ((int)0X8d9a),
- BoolVec2 = ((int)0X8b57),
- Texture3Arb = ((int)0X84c3),
- Convolution2DExt = ((int)0X8011),
- VertexPreclipHintSgix = ((int)0X83ef),
- ReferencePlaneEquationSgix = ((int)0X817e),
- CurrentColor = ((int)0X0b00),
- Operand0RgbExt = ((int)0X8590),
- Luminance4Alpha4Ext = ((int)0X8043),
- OneMinusDstColor = ((int)0X0307),
- ProxyTextureCubeMap = ((int)0X851b),
- HalfFloatNv = ((int)0X140b),
+ Map2TextureCoord1 = ((int)0X0db3),
+ Map2TextureCoord2 = ((int)0X0db4),
+ Map2TextureCoord3 = ((int)0X0db5),
+ Map2TextureCoord4 = ((int)0X0db6),
+ Map2Vertex3 = ((int)0X0db7),
+ Map2Vertex4 = ((int)0X0db8),
+ Map1GridDomain = ((int)0X0dd0),
Map1GridSegments = ((int)0X0dd1),
- VertexStream4Ati = ((int)0X8770),
- ScaleByTwoNv = ((int)0X853e),
+ Map2GridDomain = ((int)0X0dd2),
+ Map2GridSegments = ((int)0X0dd3),
+ Texture1D = ((int)0X0de0),
+ Texture2D = ((int)0X0de1),
+ FeedbackBufferPointer = ((int)0X0df0),
+ FeedbackBufferSize = ((int)0X0df1),
+ FeedbackBufferType = ((int)0X0df2),
+ SelectionBufferPointer = ((int)0X0df3),
+ SelectionBufferSize = ((int)0X0df4),
+ TextureWidth = ((int)0X1000),
+ Texcoord1BitPgi = ((int)0X10000000),
+ TextureHeight = ((int)0X1001),
+ TextureComponents = ((int)0X1003),
+ TextureInternalFormat = ((int)0X1003),
+ TextureBorderColor = ((int)0X1004),
TextureBorder = ((int)0X1005),
- Matrix2 = ((int)0X88c2),
+ DontCare = ((int)0X1100),
+ Fastest = ((int)0X1101),
+ Nicest = ((int)0X1102),
+ Ambient = ((int)0X1200),
+ Diffuse = ((int)0X1201),
+ Specular = ((int)0X1202),
+ Position = ((int)0X1203),
+ SpotDirection = ((int)0X1204),
+ SpotExponent = ((int)0X1205),
+ SpotCutoff = ((int)0X1206),
+ ConstantAttenuation = ((int)0X1207),
+ LinearAttenuation = ((int)0X1208),
+ QuadraticAttenuation = ((int)0X1209),
+ Compile = ((int)0X1300),
+ CompileAndExecute = ((int)0X1301),
+ Byte = ((int)0X1400),
+ UnsignedByte = ((int)0X1401),
+ Short = ((int)0X1402),
+ UnsignedShort = ((int)0X1403),
+ Int = ((int)0X1404),
+ UnsignedInt = ((int)0X1405),
+ Float = ((int)0X1406),
+ Gl2Bytes = ((int)0X1407),
+ Gl3Bytes = ((int)0X1408),
+ Gl4Bytes = ((int)0X1409),
+ Double = ((int)0X140a),
+ DoubleExt = ((int)0X140a),
+ HalfFloat = ((int)0X140b),
+ HalfFloatArb = ((int)0X140b),
+ HalfFloatNv = ((int)0X140b),
+ Clear = ((int)0X1500),
+ And = ((int)0X1501),
+ AndReverse = ((int)0X1502),
+ Copy = ((int)0X1503),
+ AndInverted = ((int)0X1504),
+ Noop = ((int)0X1505),
+ Xor = ((int)0X1506),
+ Or = ((int)0X1507),
+ Nor = ((int)0X1508),
+ Equiv = ((int)0X1509),
+ Invert = ((int)0X150a),
+ OrReverse = ((int)0X150b),
+ CopyInverted = ((int)0X150c),
+ OrInverted = ((int)0X150d),
+ Nand = ((int)0X150e),
+ Set = ((int)0X150f),
+ Emission = ((int)0X1600),
+ Shininess = ((int)0X1601),
+ AmbientAndDiffuse = ((int)0X1602),
+ ColorIndexes = ((int)0X1603),
+ Modelview = ((int)0X1700),
+ Modelview0Arb = ((int)0X1700),
+ Modelview0Ext = ((int)0X1700),
+ Projection = ((int)0X1701),
+ Texture = ((int)0X1702),
+ Color = ((int)0X1800),
+ Depth = ((int)0X1801),
+ Stencil = ((int)0X1802),
+ ColorIndex = ((int)0X1900),
+ StencilIndex = ((int)0X1901),
+ DepthComponent = ((int)0X1902),
+ Red = ((int)0X1903),
+ Green = ((int)0X1904),
+ Blue = ((int)0X1905),
+ Alpha = ((int)0X1906),
+ Rgb = ((int)0X1907),
+ Rgba = ((int)0X1908),
+ Luminance = ((int)0X1909),
+ LuminanceAlpha = ((int)0X190a),
+ RasterPositionUnclippedIbm = ((int)0X19262),
+ Bitmap = ((int)0X1a00),
+ PreferDoublebufferHintPgi = ((int)0X1a1f8),
+ ConserveMemoryHintPgi = ((int)0X1a1fd),
+ ReclaimMemoryHintPgi = ((int)0X1a1fe),
+ NativeGraphicsHandlePgi = ((int)0X1a202),
+ NativeGraphicsBeginHintPgi = ((int)0X1a203),
+ NativeGraphicsEndHintPgi = ((int)0X1a204),
+ AlwaysFastHintPgi = ((int)0X1a20c),
+ AlwaysSoftHintPgi = ((int)0X1a20d),
+ AllowDrawObjHintPgi = ((int)0X1a20e),
+ AllowDrawWinHintPgi = ((int)0X1a20f),
+ AllowDrawFrgHintPgi = ((int)0X1a210),
+ AllowDrawMemHintPgi = ((int)0X1a211),
+ StrictDepthfuncHintPgi = ((int)0X1a216),
+ StrictLightingHintPgi = ((int)0X1a217),
+ StrictScissorHintPgi = ((int)0X1a218),
+ FullStippleHintPgi = ((int)0X1a219),
+ ClipNearHintPgi = ((int)0X1a220),
+ ClipFarHintPgi = ((int)0X1a221),
+ WideLineHintPgi = ((int)0X1a222),
+ BackNormalsHintPgi = ((int)0X1a223),
+ VertexDataHintPgi = ((int)0X1a22a),
+ VertexConsistentHintPgi = ((int)0X1a22b),
+ MaterialSideHintPgi = ((int)0X1a22c),
+ MaxVertexHintPgi = ((int)0X1a22d),
+ Point = ((int)0X1b00),
+ Line = ((int)0X1b01),
+ Fill = ((int)0X1b02),
+ Render = ((int)0X1c00),
+ Feedback = ((int)0X1c01),
+ Select = ((int)0X1c02),
+ Flat = ((int)0X1d00),
+ Smooth = ((int)0X1d01),
+ Keep = ((int)0X1e00),
+ Replace = ((int)0X1e01),
+ Incr = ((int)0X1e02),
+ Decr = ((int)0X1e03),
+ Vendor = ((int)0X1f00),
+ Renderer = ((int)0X1f01),
+ Version = ((int)0X1f02),
+ Extensions = ((int)0X1f03),
+ S = ((int)0X2000),
+ MultisampleBit = ((int)0X20000000),
+ MultisampleBit3Dfx = ((int)0X20000000),
+ MultisampleBitArb = ((int)0X20000000),
+ MultisampleBitExt = ((int)0X20000000),
+ Texcoord2BitPgi = ((int)0X20000000),
+ T = ((int)0X2001),
+ R = ((int)0X2002),
+ Q = ((int)0X2003),
+ Modulate = ((int)0X2100),
+ Decal = ((int)0X2101),
+ TextureEnvMode = ((int)0X2200),
+ TextureEnvColor = ((int)0X2201),
+ TextureEnv = ((int)0X2300),
+ EyeLinear = ((int)0X2400),
+ ObjectLinear = ((int)0X2401),
+ SphereMap = ((int)0X2402),
+ TextureGenMode = ((int)0X2500),
+ ObjectPlane = ((int)0X2501),
+ EyePlane = ((int)0X2502),
+ Nearest = ((int)0X2600),
+ Linear = ((int)0X2601),
+ NearestMipmapNearest = ((int)0X2700),
+ LinearMipmapNearest = ((int)0X2701),
+ NearestMipmapLinear = ((int)0X2702),
+ LinearMipmapLinear = ((int)0X2703),
+ TextureMagFilter = ((int)0X2800),
+ TextureMinFilter = ((int)0X2801),
+ TextureWrapS = ((int)0X2802),
+ TextureWrapT = ((int)0X2803),
+ Clamp = ((int)0X2900),
+ Repeat = ((int)0X2901),
+ PolygonOffsetUnits = ((int)0X2a00),
+ PolygonOffsetPoint = ((int)0X2a01),
+ PolygonOffsetLine = ((int)0X2a02),
+ R3G3B2 = ((int)0X2a10),
+ V2f = ((int)0X2a20),
+ V3f = ((int)0X2a21),
+ C4ubV2f = ((int)0X2a22),
+ C4ubV3f = ((int)0X2a23),
+ C3fV3f = ((int)0X2a24),
+ N3fV3f = ((int)0X2a25),
+ C4fN3fV3f = ((int)0X2a26),
+ T2fV3f = ((int)0X2a27),
+ T4fV4f = ((int)0X2a28),
+ T2fC4ubV3f = ((int)0X2a29),
+ T2fC3fV3f = ((int)0X2a2a),
+ T2fN3fV3f = ((int)0X2a2b),
+ T2fC4fN3fV3f = ((int)0X2a2c),
+ T4fC4fN3fV4f = ((int)0X2a2d),
+ ClipDistance0 = ((int)0X3000),
+ ClipPlane0 = ((int)0X3000),
+ ClipDistance1 = ((int)0X3001),
+ ClipPlane1 = ((int)0X3001),
+ ClipDistance2 = ((int)0X3002),
+ ClipPlane2 = ((int)0X3002),
+ ClipDistance3 = ((int)0X3003),
+ ClipPlane3 = ((int)0X3003),
+ ClipDistance4 = ((int)0X3004),
+ ClipPlane4 = ((int)0X3004),
+ ClipDistance5 = ((int)0X3005),
+ ClipPlane5 = ((int)0X3005),
+ Light0 = ((int)0X4000),
+ Texcoord3BitPgi = ((int)0X40000000),
+ Light1 = ((int)0X4001),
+ Light2 = ((int)0X4002),
+ Light3 = ((int)0X4003),
+ Light4 = ((int)0X4004),
+ Light5 = ((int)0X4005),
+ Light6 = ((int)0X4006),
+ Light7 = ((int)0X4007),
+ AbgrExt = ((int)0X8000),
+ Texcoord4BitPgi = unchecked((int)0X80000000),
+ ConstantColor = ((int)0X8001),
+ ConstantColorExt = ((int)0X8001),
+ OneMinusConstantColor = ((int)0X8002),
+ OneMinusConstantColorExt = ((int)0X8002),
+ ConstantAlpha = ((int)0X8003),
+ ConstantAlphaExt = ((int)0X8003),
+ OneMinusConstantAlpha = ((int)0X8004),
+ OneMinusConstantAlphaExt = ((int)0X8004),
+ BlendColor = ((int)0X8005),
+ BlendColorExt = ((int)0X8005),
+ FuncAdd = ((int)0X8006),
+ FuncAddExt = ((int)0X8006),
+ Min = ((int)0X8007),
+ MinExt = ((int)0X8007),
+ Max = ((int)0X8008),
+ MaxExt = ((int)0X8008),
+ BlendEquation = ((int)0X8009),
+ BlendEquationExt = ((int)0X8009),
+ BlendEquationRgb = ((int)0X8009),
+ BlendEquationRgbExt = ((int)0X8009),
+ FuncSubtract = ((int)0X800a),
+ FuncSubtractExt = ((int)0X800a),
+ FuncReverseSubtract = ((int)0X800b),
+ FuncReverseSubtractExt = ((int)0X800b),
+ CmykExt = ((int)0X800c),
+ CmykaExt = ((int)0X800d),
+ PackCmykHintExt = ((int)0X800e),
+ UnpackCmykHintExt = ((int)0X800f),
+ Convolution1D = ((int)0X8010),
+ Convolution1DExt = ((int)0X8010),
+ Convolution2D = ((int)0X8011),
+ Convolution2DExt = ((int)0X8011),
+ Separable2D = ((int)0X8012),
+ Separable2DExt = ((int)0X8012),
+ ConvolutionBorderMode = ((int)0X8013),
+ ConvolutionBorderModeExt = ((int)0X8013),
+ ConvolutionFilterScale = ((int)0X8014),
+ ConvolutionFilterScaleExt = ((int)0X8014),
+ ConvolutionFilterBias = ((int)0X8015),
+ ConvolutionFilterBiasExt = ((int)0X8015),
+ Reduce = ((int)0X8016),
+ ReduceExt = ((int)0X8016),
+ ConvolutionFormat = ((int)0X8017),
+ ConvolutionFormatExt = ((int)0X8017),
+ ConvolutionWidth = ((int)0X8018),
+ ConvolutionWidthExt = ((int)0X8018),
+ ConvolutionHeight = ((int)0X8019),
+ ConvolutionHeightExt = ((int)0X8019),
+ MaxConvolutionWidth = ((int)0X801a),
+ MaxConvolutionWidthExt = ((int)0X801a),
+ MaxConvolutionHeight = ((int)0X801b),
+ MaxConvolutionHeightExt = ((int)0X801b),
+ PostConvolutionRedScale = ((int)0X801c),
+ PostConvolutionRedScaleExt = ((int)0X801c),
+ PostConvolutionGreenScale = ((int)0X801d),
+ PostConvolutionGreenScaleExt = ((int)0X801d),
+ PostConvolutionBlueScale = ((int)0X801e),
+ PostConvolutionBlueScaleExt = ((int)0X801e),
+ PostConvolutionAlphaScale = ((int)0X801f),
+ PostConvolutionAlphaScaleExt = ((int)0X801f),
+ PostConvolutionRedBias = ((int)0X8020),
+ PostConvolutionRedBiasExt = ((int)0X8020),
+ PostConvolutionGreenBias = ((int)0X8021),
+ PostConvolutionGreenBiasExt = ((int)0X8021),
+ PostConvolutionBlueBias = ((int)0X8022),
+ PostConvolutionBlueBiasExt = ((int)0X8022),
+ PostConvolutionAlphaBias = ((int)0X8023),
+ PostConvolutionAlphaBiasExt = ((int)0X8023),
+ Histogram = ((int)0X8024),
+ HistogramExt = ((int)0X8024),
+ ProxyHistogram = ((int)0X8025),
+ ProxyHistogramExt = ((int)0X8025),
+ HistogramWidth = ((int)0X8026),
+ HistogramWidthExt = ((int)0X8026),
+ HistogramFormat = ((int)0X8027),
+ HistogramFormatExt = ((int)0X8027),
+ HistogramRedSize = ((int)0X8028),
+ HistogramRedSizeExt = ((int)0X8028),
+ HistogramGreenSize = ((int)0X8029),
+ HistogramGreenSizeExt = ((int)0X8029),
+ HistogramBlueSize = ((int)0X802a),
+ HistogramBlueSizeExt = ((int)0X802a),
+ HistogramAlphaSize = ((int)0X802b),
+ HistogramAlphaSizeExt = ((int)0X802b),
+ HistogramLuminanceSize = ((int)0X802c),
+ HistogramLuminanceSizeExt = ((int)0X802c),
+ HistogramSink = ((int)0X802d),
+ HistogramSinkExt = ((int)0X802d),
+ Minmax = ((int)0X802e),
+ MinmaxExt = ((int)0X802e),
+ MinmaxFormat = ((int)0X802f),
+ MinmaxFormatExt = ((int)0X802f),
+ MinmaxSink = ((int)0X8030),
+ MinmaxSinkExt = ((int)0X8030),
+ TableTooLarge = ((int)0X8031),
+ TableTooLargeExt = ((int)0X8031),
+ UnsignedByte332 = ((int)0X8032),
+ UnsignedByte332Ext = ((int)0X8032),
+ UnsignedShort4444 = ((int)0X8033),
+ UnsignedShort4444Ext = ((int)0X8033),
+ UnsignedShort5551 = ((int)0X8034),
+ UnsignedShort5551Ext = ((int)0X8034),
+ UnsignedInt8888 = ((int)0X8035),
+ UnsignedInt8888Ext = ((int)0X8035),
+ UnsignedInt1010102 = ((int)0X8036),
+ UnsignedInt1010102Ext = ((int)0X8036),
+ PolygonOffsetExt = ((int)0X8037),
+ PolygonOffsetFill = ((int)0X8037),
+ PolygonOffsetFactor = ((int)0X8038),
+ PolygonOffsetFactorExt = ((int)0X8038),
+ PolygonOffsetBiasExt = ((int)0X8039),
+ RescaleNormal = ((int)0X803a),
+ RescaleNormalExt = ((int)0X803a),
+ Alpha4 = ((int)0X803b),
+ Alpha4Ext = ((int)0X803b),
+ Alpha8 = ((int)0X803c),
+ Alpha8Ext = ((int)0X803c),
+ Alpha12 = ((int)0X803d),
+ Alpha12Ext = ((int)0X803d),
+ Alpha16 = ((int)0X803e),
+ Alpha16Ext = ((int)0X803e),
+ Luminance4 = ((int)0X803f),
+ Luminance4Ext = ((int)0X803f),
+ Luminance8 = ((int)0X8040),
+ Luminance8Ext = ((int)0X8040),
+ Luminance12 = ((int)0X8041),
+ Luminance12Ext = ((int)0X8041),
+ Luminance16 = ((int)0X8042),
+ Luminance16Ext = ((int)0X8042),
+ Luminance4Alpha4 = ((int)0X8043),
+ Luminance4Alpha4Ext = ((int)0X8043),
+ Luminance6Alpha2 = ((int)0X8044),
+ Luminance6Alpha2Ext = ((int)0X8044),
+ Luminance8Alpha8 = ((int)0X8045),
+ Luminance8Alpha8Ext = ((int)0X8045),
+ Luminance12Alpha4 = ((int)0X8046),
+ Luminance12Alpha4Ext = ((int)0X8046),
+ Luminance12Alpha12 = ((int)0X8047),
+ Luminance12Alpha12Ext = ((int)0X8047),
+ Luminance16Alpha16 = ((int)0X8048),
+ Luminance16Alpha16Ext = ((int)0X8048),
+ Intensity = ((int)0X8049),
+ IntensityExt = ((int)0X8049),
+ Intensity4 = ((int)0X804a),
+ Intensity4Ext = ((int)0X804a),
+ Intensity8 = ((int)0X804b),
+ Intensity8Ext = ((int)0X804b),
+ Intensity12 = ((int)0X804c),
+ Intensity12Ext = ((int)0X804c),
+ Intensity16 = ((int)0X804d),
+ Intensity16Ext = ((int)0X804d),
+ Rgb2Ext = ((int)0X804e),
+ Rgb4 = ((int)0X804f),
+ Rgb4Ext = ((int)0X804f),
+ Rgb5 = ((int)0X8050),
+ Rgb5Ext = ((int)0X8050),
+ Rgb8 = ((int)0X8051),
+ Rgb8Ext = ((int)0X8051),
+ Rgb10 = ((int)0X8052),
+ Rgb10Ext = ((int)0X8052),
+ Rgb12 = ((int)0X8053),
+ Rgb12Ext = ((int)0X8053),
+ Rgb16 = ((int)0X8054),
+ Rgb16Ext = ((int)0X8054),
+ Rgba2 = ((int)0X8055),
+ Rgba2Ext = ((int)0X8055),
+ Rgba4 = ((int)0X8056),
+ Rgba4Ext = ((int)0X8056),
+ Rgb5A1 = ((int)0X8057),
+ Rgb5A1Ext = ((int)0X8057),
+ Rgba8 = ((int)0X8058),
+ Rgba8Ext = ((int)0X8058),
+ Rgb10A2 = ((int)0X8059),
+ Rgb10A2Ext = ((int)0X8059),
+ Rgba12 = ((int)0X805a),
+ Rgba12Ext = ((int)0X805a),
+ Rgba16 = ((int)0X805b),
+ Rgba16Ext = ((int)0X805b),
+ TextureRedSize = ((int)0X805c),
+ TextureRedSizeExt = ((int)0X805c),
+ TextureGreenSize = ((int)0X805d),
+ TextureGreenSizeExt = ((int)0X805d),
+ TextureBlueSize = ((int)0X805e),
+ TextureBlueSizeExt = ((int)0X805e),
+ TextureAlphaSize = ((int)0X805f),
+ TextureAlphaSizeExt = ((int)0X805f),
+ TextureLuminanceSize = ((int)0X8060),
+ TextureLuminanceSizeExt = ((int)0X8060),
+ TextureIntensitySize = ((int)0X8061),
+ TextureIntensitySizeExt = ((int)0X8061),
+ ReplaceExt = ((int)0X8062),
+ ProxyTexture1D = ((int)0X8063),
+ ProxyTexture1DExt = ((int)0X8063),
+ ProxyTexture2D = ((int)0X8064),
+ ProxyTexture2DExt = ((int)0X8064),
+ TextureTooLargeExt = ((int)0X8065),
+ TexturePriority = ((int)0X8066),
+ TexturePriorityExt = ((int)0X8066),
+ TextureResident = ((int)0X8067),
+ TextureResidentExt = ((int)0X8067),
+ Texture1DBindingExt = ((int)0X8068),
+ TextureBinding1D = ((int)0X8068),
+ Texture2DBindingExt = ((int)0X8069),
+ TextureBinding2D = ((int)0X8069),
+ Texture3DBindingExt = ((int)0X806a),
+ TextureBinding3D = ((int)0X806a),
+ PackSkipImages = ((int)0X806b),
+ PackSkipImagesExt = ((int)0X806b),
+ PackImageHeight = ((int)0X806c),
+ PackImageHeightExt = ((int)0X806c),
+ UnpackSkipImages = ((int)0X806d),
+ UnpackSkipImagesExt = ((int)0X806d),
+ UnpackImageHeight = ((int)0X806e),
+ UnpackImageHeightExt = ((int)0X806e),
+ Texture3D = ((int)0X806f),
+ Texture3DExt = ((int)0X806f),
+ ProxyTexture3D = ((int)0X8070),
+ ProxyTexture3DExt = ((int)0X8070),
+ TextureDepth = ((int)0X8071),
+ TextureDepthExt = ((int)0X8071),
+ TextureWrapR = ((int)0X8072),
+ TextureWrapRExt = ((int)0X8072),
+ Max3DTextureSize = ((int)0X8073),
+ Max3DTextureSizeExt = ((int)0X8073),
+ VertexArray = ((int)0X8074),
+ VertexArrayExt = ((int)0X8074),
+ NormalArray = ((int)0X8075),
+ NormalArrayExt = ((int)0X8075),
+ ColorArray = ((int)0X8076),
+ ColorArrayExt = ((int)0X8076),
+ IndexArray = ((int)0X8077),
+ IndexArrayExt = ((int)0X8077),
+ TextureCoordArray = ((int)0X8078),
+ TextureCoordArrayExt = ((int)0X8078),
+ EdgeFlagArray = ((int)0X8079),
+ EdgeFlagArrayExt = ((int)0X8079),
+ VertexArraySize = ((int)0X807a),
+ VertexArraySizeExt = ((int)0X807a),
+ VertexArrayType = ((int)0X807b),
+ VertexArrayTypeExt = ((int)0X807b),
+ VertexArrayStride = ((int)0X807c),
+ VertexArrayStrideExt = ((int)0X807c),
+ VertexArrayCountExt = ((int)0X807d),
+ NormalArrayType = ((int)0X807e),
+ NormalArrayTypeExt = ((int)0X807e),
+ NormalArrayStride = ((int)0X807f),
+ NormalArrayStrideExt = ((int)0X807f),
+ NormalArrayCountExt = ((int)0X8080),
+ ColorArraySize = ((int)0X8081),
+ ColorArraySizeExt = ((int)0X8081),
+ ColorArrayType = ((int)0X8082),
+ ColorArrayTypeExt = ((int)0X8082),
+ ColorArrayStride = ((int)0X8083),
+ ColorArrayStrideExt = ((int)0X8083),
+ ColorArrayCountExt = ((int)0X8084),
+ IndexArrayType = ((int)0X8085),
+ IndexArrayTypeExt = ((int)0X8085),
+ IndexArrayStride = ((int)0X8086),
+ IndexArrayStrideExt = ((int)0X8086),
+ IndexArrayCountExt = ((int)0X8087),
+ TextureCoordArraySize = ((int)0X8088),
+ TextureCoordArraySizeExt = ((int)0X8088),
+ TextureCoordArrayType = ((int)0X8089),
+ TextureCoordArrayTypeExt = ((int)0X8089),
+ TextureCoordArrayStride = ((int)0X808a),
+ TextureCoordArrayStrideExt = ((int)0X808a),
+ TextureCoordArrayCountExt = ((int)0X808b),
+ EdgeFlagArrayStride = ((int)0X808c),
+ EdgeFlagArrayStrideExt = ((int)0X808c),
+ EdgeFlagArrayCountExt = ((int)0X808d),
+ VertexArrayPointer = ((int)0X808e),
+ VertexArrayPointerExt = ((int)0X808e),
+ NormalArrayPointer = ((int)0X808f),
+ NormalArrayPointerExt = ((int)0X808f),
+ ColorArrayPointer = ((int)0X8090),
+ ColorArrayPointerExt = ((int)0X8090),
+ IndexArrayPointer = ((int)0X8091),
+ IndexArrayPointerExt = ((int)0X8091),
+ TextureCoordArrayPointer = ((int)0X8092),
+ TextureCoordArrayPointerExt = ((int)0X8092),
+ EdgeFlagArrayPointer = ((int)0X8093),
+ EdgeFlagArrayPointerExt = ((int)0X8093),
+ InterlaceSgix = ((int)0X8094),
+ DetailTexture2DSgis = ((int)0X8095),
+ DetailTexture2DBindingSgis = ((int)0X8096),
+ LinearDetailSgis = ((int)0X8097),
+ LinearDetailAlphaSgis = ((int)0X8098),
+ LinearDetailColorSgis = ((int)0X8099),
+ DetailTextureLevelSgis = ((int)0X809a),
+ DetailTextureModeSgis = ((int)0X809b),
+ DetailTextureFuncPointsSgis = ((int)0X809c),
+ Multisample = ((int)0X809d),
+ MultisampleArb = ((int)0X809d),
+ MultisampleExt = ((int)0X809d),
+ MultisampleSgis = ((int)0X809d),
+ SampleAlphaToCoverage = ((int)0X809e),
+ SampleAlphaToCoverageArb = ((int)0X809e),
+ SampleAlphaToMaskExt = ((int)0X809e),
+ SampleAlphaToMaskSgis = ((int)0X809e),
+ SampleAlphaToOne = ((int)0X809f),
+ SampleAlphaToOneArb = ((int)0X809f),
+ SampleAlphaToOneExt = ((int)0X809f),
+ SampleAlphaToOneSgis = ((int)0X809f),
+ SampleCoverage = ((int)0X80a0),
+ SampleCoverageArb = ((int)0X80a0),
+ SampleMaskExt = ((int)0X80a0),
+ SampleMaskSgis = ((int)0X80a0),
+ Gl1PassExt = ((int)0X80a1),
+ Gl1PassSgis = ((int)0X80a1),
+ Gl2Pass0Ext = ((int)0X80a2),
+ Gl2Pass0Sgis = ((int)0X80a2),
+ Gl2Pass1Ext = ((int)0X80a3),
+ Gl2Pass1Sgis = ((int)0X80a3),
+ Gl4Pass0Ext = ((int)0X80a4),
+ Gl4Pass0Sgis = ((int)0X80a4),
+ Gl4Pass1Ext = ((int)0X80a5),
+ Gl4Pass1Sgis = ((int)0X80a5),
+ Gl4Pass2Ext = ((int)0X80a6),
+ Gl4Pass2Sgis = ((int)0X80a6),
+ Gl4Pass3Ext = ((int)0X80a7),
+ Gl4Pass3Sgis = ((int)0X80a7),
+ SampleBuffers = ((int)0X80a8),
+ SampleBuffersArb = ((int)0X80a8),
+ SampleBuffersExt = ((int)0X80a8),
+ SampleBuffersSgis = ((int)0X80a8),
+ Samples = ((int)0X80a9),
+ SamplesArb = ((int)0X80a9),
+ SamplesExt = ((int)0X80a9),
+ SamplesSgis = ((int)0X80a9),
+ SampleCoverageValue = ((int)0X80aa),
+ SampleCoverageValueArb = ((int)0X80aa),
+ SampleMaskValueExt = ((int)0X80aa),
+ SampleMaskValueSgis = ((int)0X80aa),
+ SampleCoverageInvert = ((int)0X80ab),
+ SampleCoverageInvertArb = ((int)0X80ab),
+ SampleMaskInvertExt = ((int)0X80ab),
+ SampleMaskInvertSgis = ((int)0X80ab),
+ SamplePatternExt = ((int)0X80ac),
+ SamplePatternSgis = ((int)0X80ac),
+ LinearSharpenSgis = ((int)0X80ad),
+ LinearSharpenAlphaSgis = ((int)0X80ae),
+ LinearSharpenColorSgis = ((int)0X80af),
+ SharpenTextureFuncPointsSgis = ((int)0X80b0),
+ ColorMatrix = ((int)0X80b1),
+ ColorMatrixSgi = ((int)0X80b1),
+ ColorMatrixStackDepth = ((int)0X80b2),
+ ColorMatrixStackDepthSgi = ((int)0X80b2),
+ MaxColorMatrixStackDepth = ((int)0X80b3),
+ MaxColorMatrixStackDepthSgi = ((int)0X80b3),
+ PostColorMatrixRedScale = ((int)0X80b4),
+ PostColorMatrixRedScaleSgi = ((int)0X80b4),
+ PostColorMatrixGreenScale = ((int)0X80b5),
+ PostColorMatrixGreenScaleSgi = ((int)0X80b5),
+ PostColorMatrixBlueScale = ((int)0X80b6),
+ PostColorMatrixBlueScaleSgi = ((int)0X80b6),
+ PostColorMatrixAlphaScale = ((int)0X80b7),
+ PostColorMatrixAlphaScaleSgi = ((int)0X80b7),
+ PostColorMatrixRedBias = ((int)0X80b8),
+ PostColorMatrixRedBiasSgi = ((int)0X80b8),
+ PostColorMatrixGreenBias = ((int)0X80b9),
+ PostColorMatrixGreenBiasSgi = ((int)0X80b9),
+ PostColorMatrixBlueBias = ((int)0X80ba),
+ PostColorMatrixBlueBiasSgi = ((int)0X80ba),
+ PostColorMatrixAlphaBias = ((int)0X80bb),
+ PostColorMatrixAlphaBiasSgi = ((int)0X80bb),
+ TextureColorTableSgi = ((int)0X80bc),
+ ProxyTextureColorTableSgi = ((int)0X80bd),
+ TextureEnvBiasSgix = ((int)0X80be),
+ ShadowAmbientSgix = ((int)0X80bf),
+ TextureCompareFailValue = ((int)0X80bf),
+ TextureCompareFailValueArb = ((int)0X80bf),
+ BlendDstRgb = ((int)0X80c8),
+ BlendDstRgbExt = ((int)0X80c8),
+ BlendSrcRgb = ((int)0X80c9),
+ BlendSrcRgbExt = ((int)0X80c9),
+ BlendDstAlpha = ((int)0X80ca),
+ BlendDstAlphaExt = ((int)0X80ca),
+ BlendSrcAlpha = ((int)0X80cb),
+ BlendSrcAlphaExt = ((int)0X80cb),
+ Gl422Ext = ((int)0X80cc),
+ Gl422RevExt = ((int)0X80cd),
+ Gl422AverageExt = ((int)0X80ce),
+ Gl422RevAverageExt = ((int)0X80cf),
+ ColorTable = ((int)0X80d0),
+ ColorTableSgi = ((int)0X80d0),
+ PostConvolutionColorTable = ((int)0X80d1),
+ PostConvolutionColorTableSgi = ((int)0X80d1),
+ PostColorMatrixColorTable = ((int)0X80d2),
+ PostColorMatrixColorTableSgi = ((int)0X80d2),
+ ProxyColorTable = ((int)0X80d3),
+ ProxyColorTableSgi = ((int)0X80d3),
+ ProxyPostConvolutionColorTable = ((int)0X80d4),
+ ProxyPostConvolutionColorTableSgi = ((int)0X80d4),
+ ProxyPostColorMatrixColorTable = ((int)0X80d5),
+ ProxyPostColorMatrixColorTableSgi = ((int)0X80d5),
+ ColorTableScale = ((int)0X80d6),
+ ColorTableScaleSgi = ((int)0X80d6),
+ ColorTableBias = ((int)0X80d7),
+ ColorTableBiasSgi = ((int)0X80d7),
+ ColorTableFormat = ((int)0X80d8),
+ ColorTableFormatSgi = ((int)0X80d8),
+ ColorTableWidth = ((int)0X80d9),
+ ColorTableWidthSgi = ((int)0X80d9),
+ ColorTableRedSize = ((int)0X80da),
+ ColorTableRedSizeSgi = ((int)0X80da),
+ ColorTableGreenSize = ((int)0X80db),
+ ColorTableGreenSizeSgi = ((int)0X80db),
+ ColorTableBlueSize = ((int)0X80dc),
+ ColorTableBlueSizeSgi = ((int)0X80dc),
+ ColorTableAlphaSize = ((int)0X80dd),
+ ColorTableAlphaSizeSgi = ((int)0X80dd),
+ ColorTableLuminanceSize = ((int)0X80de),
+ ColorTableLuminanceSizeSgi = ((int)0X80de),
+ ColorTableIntensitySize = ((int)0X80df),
+ ColorTableIntensitySizeSgi = ((int)0X80df),
+ Bgr = ((int)0X80e0),
+ BgrExt = ((int)0X80e0),
+ Bgra = ((int)0X80e1),
+ BgraExt = ((int)0X80e1),
+ ColorIndex1Ext = ((int)0X80e2),
+ ColorIndex2Ext = ((int)0X80e3),
+ ColorIndex4Ext = ((int)0X80e4),
+ ColorIndex8Ext = ((int)0X80e5),
+ ColorIndex12Ext = ((int)0X80e6),
+ ColorIndex16Ext = ((int)0X80e7),
+ MaxElementsVertices = ((int)0X80e8),
+ MaxElementsVerticesExt = ((int)0X80e8),
+ MaxElementsIndices = ((int)0X80e9),
+ MaxElementsIndicesExt = ((int)0X80e9),
+ PhongWin = ((int)0X80ea),
+ PhongHintWin = ((int)0X80eb),
+ FogSpecularTextureWin = ((int)0X80ec),
+ TextureIndexSizeExt = ((int)0X80ed),
+ ClipVolumeClippingHintExt = ((int)0X80f0),
+ DualAlpha4Sgis = ((int)0X8110),
+ DualAlpha8Sgis = ((int)0X8111),
+ DualAlpha12Sgis = ((int)0X8112),
+ DualAlpha16Sgis = ((int)0X8113),
+ DualLuminance4Sgis = ((int)0X8114),
+ DualLuminance8Sgis = ((int)0X8115),
+ DualLuminance12Sgis = ((int)0X8116),
+ DualLuminance16Sgis = ((int)0X8117),
+ DualIntensity4Sgis = ((int)0X8118),
+ DualIntensity8Sgis = ((int)0X8119),
+ DualIntensity12Sgis = ((int)0X811a),
+ DualIntensity16Sgis = ((int)0X811b),
+ DualLuminanceAlpha4Sgis = ((int)0X811c),
+ DualLuminanceAlpha8Sgis = ((int)0X811d),
+ QuadAlpha4Sgis = ((int)0X811e),
+ QuadAlpha8Sgis = ((int)0X811f),
+ QuadLuminance4Sgis = ((int)0X8120),
+ QuadLuminance8Sgis = ((int)0X8121),
+ QuadIntensity4Sgis = ((int)0X8122),
+ QuadIntensity8Sgis = ((int)0X8123),
+ DualTextureSelectSgis = ((int)0X8124),
+ QuadTextureSelectSgis = ((int)0X8125),
+ PointSizeMin = ((int)0X8126),
+ PointSizeMinArb = ((int)0X8126),
+ PointSizeMinExt = ((int)0X8126),
+ PointSizeMinSgis = ((int)0X8126),
+ PointSizeMax = ((int)0X8127),
+ PointSizeMaxArb = ((int)0X8127),
+ PointSizeMaxExt = ((int)0X8127),
+ PointSizeMaxSgis = ((int)0X8127),
+ PointFadeThresholdSize = ((int)0X8128),
+ PointFadeThresholdSizeArb = ((int)0X8128),
+ PointFadeThresholdSizeExt = ((int)0X8128),
+ PointFadeThresholdSizeSgis = ((int)0X8128),
+ DistanceAttenuationExt = ((int)0X8129),
+ DistanceAttenuationSgis = ((int)0X8129),
+ PointDistanceAttenuation = ((int)0X8129),
+ PointDistanceAttenuationArb = ((int)0X8129),
+ FogFuncSgis = ((int)0X812a),
+ FogFuncPointsSgis = ((int)0X812b),
+ MaxFogFuncPointsSgis = ((int)0X812c),
+ ClampToBorder = ((int)0X812d),
+ ClampToBorderArb = ((int)0X812d),
+ ClampToBorderSgis = ((int)0X812d),
+ TextureMultiBufferHintSgix = ((int)0X812e),
+ ClampToEdge = ((int)0X812f),
+ ClampToEdgeSgis = ((int)0X812f),
+ PackSkipVolumesSgis = ((int)0X8130),
+ PackImageDepthSgis = ((int)0X8131),
+ UnpackSkipVolumesSgis = ((int)0X8132),
+ UnpackImageDepthSgis = ((int)0X8133),
+ Texture4DSgis = ((int)0X8134),
+ ProxyTexture4DSgis = ((int)0X8135),
+ Texture4DsizeSgis = ((int)0X8136),
+ TextureWrapQSgis = ((int)0X8137),
+ Max4DTextureSizeSgis = ((int)0X8138),
+ PixelTexGenSgix = ((int)0X8139),
+ TextureMinLod = ((int)0X813a),
+ TextureMinLodSgis = ((int)0X813a),
+ TextureMaxLod = ((int)0X813b),
+ TextureMaxLodSgis = ((int)0X813b),
+ TextureBaseLevel = ((int)0X813c),
+ TextureBaseLevelSgis = ((int)0X813c),
+ TextureMaxLevel = ((int)0X813d),
+ TextureMaxLevelSgis = ((int)0X813d),
+ PixelTileBestAlignmentSgix = ((int)0X813e),
+ PixelTileCacheIncrementSgix = ((int)0X813f),
+ PixelTileWidthSgix = ((int)0X8140),
+ PixelTileHeightSgix = ((int)0X8141),
+ PixelTileGridWidthSgix = ((int)0X8142),
+ PixelTileGridHeightSgix = ((int)0X8143),
+ PixelTileGridDepthSgix = ((int)0X8144),
+ PixelTileCacheSizeSgix = ((int)0X8145),
+ Filter4Sgis = ((int)0X8146),
+ TextureFilter4SizeSgis = ((int)0X8147),
+ SpriteSgix = ((int)0X8148),
+ SpriteModeSgix = ((int)0X8149),
+ SpriteAxisSgix = ((int)0X814a),
+ SpriteTranslationSgix = ((int)0X814b),
+ SpriteAxialSgix = ((int)0X814c),
+ SpriteObjectAlignedSgix = ((int)0X814d),
+ SpriteEyeAlignedSgix = ((int)0X814e),
+ Texture4DBindingSgis = ((int)0X814f),
+ IgnoreBorderHp = ((int)0X8150),
+ ConstantBorder = ((int)0X8151),
+ ConstantBorderHp = ((int)0X8151),
+ ReplicateBorder = ((int)0X8153),
+ ReplicateBorderHp = ((int)0X8153),
+ ConvolutionBorderColor = ((int)0X8154),
+ ConvolutionBorderColorHp = ((int)0X8154),
+ ImageScaleXHp = ((int)0X8155),
+ ImageScaleYHp = ((int)0X8156),
+ ImageTranslateXHp = ((int)0X8157),
+ ImageTranslateYHp = ((int)0X8158),
+ ImageRotateAngleHp = ((int)0X8159),
+ ImageRotateOriginXHp = ((int)0X815a),
+ ImageRotateOriginYHp = ((int)0X815b),
+ ImageMagFilterHp = ((int)0X815c),
+ ImageMinFilterHp = ((int)0X815d),
+ ImageCubicWeightHp = ((int)0X815e),
+ CubicHp = ((int)0X815f),
+ AverageHp = ((int)0X8160),
+ ImageTransform2DHp = ((int)0X8161),
+ PostImageTransformColorTableHp = ((int)0X8162),
+ ProxyPostImageTransformColorTableHp = ((int)0X8163),
+ OcclusionTestHp = ((int)0X8165),
+ OcclusionTestResultHp = ((int)0X8166),
+ TextureLightingModeHp = ((int)0X8167),
+ TexturePostSpecularHp = ((int)0X8168),
+ TexturePreSpecularHp = ((int)0X8169),
+ LinearClipmapLinearSgix = ((int)0X8170),
+ TextureClipmapCenterSgix = ((int)0X8171),
+ TextureClipmapFrameSgix = ((int)0X8172),
+ TextureClipmapOffsetSgix = ((int)0X8173),
+ TextureClipmapVirtualDepthSgix = ((int)0X8174),
+ TextureClipmapLodOffsetSgix = ((int)0X8175),
+ TextureClipmapDepthSgix = ((int)0X8176),
+ MaxClipmapDepthSgix = ((int)0X8177),
+ MaxClipmapVirtualDepthSgix = ((int)0X8178),
+ PostTextureFilterBiasSgix = ((int)0X8179),
+ PostTextureFilterScaleSgix = ((int)0X817a),
+ PostTextureFilterBiasRangeSgix = ((int)0X817b),
+ PostTextureFilterScaleRangeSgix = ((int)0X817c),
+ ReferencePlaneSgix = ((int)0X817d),
+ ReferencePlaneEquationSgix = ((int)0X817e),
+ IrInstrument1Sgix = ((int)0X817f),
+ InstrumentBufferPointerSgix = ((int)0X8180),
+ InstrumentMeasurementsSgix = ((int)0X8181),
+ ListPrioritySgix = ((int)0X8182),
+ CalligraphicFragmentSgix = ((int)0X8183),
+ PixelTexGenQCeilingSgix = ((int)0X8184),
+ PixelTexGenQRoundSgix = ((int)0X8185),
+ PixelTexGenQFloorSgix = ((int)0X8186),
+ PixelTexGenAlphaReplaceSgix = ((int)0X8187),
+ PixelTexGenAlphaNoReplaceSgix = ((int)0X8188),
+ PixelTexGenAlphaLsSgix = ((int)0X8189),
+ PixelTexGenAlphaMsSgix = ((int)0X818a),
+ FramezoomSgix = ((int)0X818b),
+ FramezoomFactorSgix = ((int)0X818c),
+ MaxFramezoomFactorSgix = ((int)0X818d),
+ TextureLodBiasSSgix = ((int)0X818e),
+ TextureLodBiasTSgix = ((int)0X818f),
+ TextureLodBiasRSgix = ((int)0X8190),
+ GenerateMipmap = ((int)0X8191),
+ GenerateMipmapSgis = ((int)0X8191),
+ GenerateMipmapHint = ((int)0X8192),
+ GenerateMipmapHintSgis = ((int)0X8192),
+ GeometryDeformationSgix = ((int)0X8194),
+ TextureDeformationSgix = ((int)0X8195),
+ DeformationsMaskSgix = ((int)0X8196),
+ MaxDeformationOrderSgix = ((int)0X8197),
+ FogOffsetSgix = ((int)0X8198),
+ FogOffsetValueSgix = ((int)0X8199),
+ TextureCompareSgix = ((int)0X819a),
+ TextureCompareOperatorSgix = ((int)0X819b),
+ TextureLequalRSgix = ((int)0X819c),
+ TextureGequalRSgix = ((int)0X819d),
+ DepthComponent16 = ((int)0X81a5),
+ DepthComponent16Arb = ((int)0X81a5),
+ DepthComponent16Sgix = ((int)0X81a5),
+ DepthComponent24 = ((int)0X81a6),
+ DepthComponent24Arb = ((int)0X81a6),
+ DepthComponent24Sgix = ((int)0X81a6),
+ DepthComponent32 = ((int)0X81a7),
+ DepthComponent32Arb = ((int)0X81a7),
+ DepthComponent32Sgix = ((int)0X81a7),
+ ArrayElementLockFirstExt = ((int)0X81a8),
+ ArrayElementLockCountExt = ((int)0X81a9),
+ CullVertexExt = ((int)0X81aa),
+ CullVertexEyePositionExt = ((int)0X81ab),
+ CullVertexObjectPositionExt = ((int)0X81ac),
+ IuiV2fExt = ((int)0X81ad),
+ IuiV3fExt = ((int)0X81ae),
+ IuiN3fV2fExt = ((int)0X81af),
+ IuiN3fV3fExt = ((int)0X81b0),
+ T2fIuiV2fExt = ((int)0X81b1),
+ T2fIuiV3fExt = ((int)0X81b2),
+ T2fIuiN3fV2fExt = ((int)0X81b3),
+ T2fIuiN3fV3fExt = ((int)0X81b4),
+ IndexTestExt = ((int)0X81b5),
+ IndexTestFuncExt = ((int)0X81b6),
+ IndexTestRefExt = ((int)0X81b7),
+ IndexMaterialExt = ((int)0X81b8),
+ IndexMaterialParameterExt = ((int)0X81b9),
+ IndexMaterialFaceExt = ((int)0X81ba),
+ Ycrcb422Sgix = ((int)0X81bb),
+ Ycrcb444Sgix = ((int)0X81bc),
+ WrapBorderSun = ((int)0X81d4),
+ UnpackConstantDataSunx = ((int)0X81d5),
+ TextureConstantDataSunx = ((int)0X81d6),
+ TriangleListSun = ((int)0X81d7),
+ ReplacementCodeSun = ((int)0X81d8),
+ GlobalAlphaSun = ((int)0X81d9),
+ GlobalAlphaFactorSun = ((int)0X81da),
+ TextureColorWritemaskSgis = ((int)0X81ef),
+ EyeDistanceToPointSgis = ((int)0X81f0),
+ ObjectDistanceToPointSgis = ((int)0X81f1),
+ EyeDistanceToLineSgis = ((int)0X81f2),
+ ObjectDistanceToLineSgis = ((int)0X81f3),
+ EyePointSgis = ((int)0X81f4),
+ ObjectPointSgis = ((int)0X81f5),
+ EyeLineSgis = ((int)0X81f6),
+ ObjectLineSgis = ((int)0X81f7),
+ LightModelColorControl = ((int)0X81f8),
+ LightModelColorControlExt = ((int)0X81f8),
+ SingleColor = ((int)0X81f9),
+ SingleColorExt = ((int)0X81f9),
+ SeparateSpecularColor = ((int)0X81fa),
+ SeparateSpecularColorExt = ((int)0X81fa),
+ SharedTexturePaletteExt = ((int)0X81fb),
+ FogScaleSgix = ((int)0X81fc),
+ FogScaleValueSgix = ((int)0X81fd),
+ TextFragmentShaderAti = ((int)0X8200),
+ FramebufferAttachmentColorEncoding = ((int)0X8210),
+ FramebufferAttachmentComponentType = ((int)0X8211),
+ FramebufferAttachmentRedSize = ((int)0X8212),
+ FramebufferAttachmentGreenSize = ((int)0X8213),
+ FramebufferAttachmentBlueSize = ((int)0X8214),
+ FramebufferAttachmentAlphaSize = ((int)0X8215),
+ FramebufferAttachmentDepthSize = ((int)0X8216),
+ FramebufferAttachmentStencilSize = ((int)0X8217),
+ FramebufferDefault = ((int)0X8218),
+ FramebufferUndefined = ((int)0X8219),
+ DepthStencilAttachment = ((int)0X821a),
+ MajorVersion = ((int)0X821b),
+ MinorVersion = ((int)0X821c),
+ NumExtensions = ((int)0X821d),
+ ContextFlags = ((int)0X821e),
+ Index = ((int)0X8222),
+ DepthBuffer = ((int)0X8223),
+ StencilBuffer = ((int)0X8224),
+ CompressedRed = ((int)0X8225),
+ CompressedRg = ((int)0X8226),
+ Rg = ((int)0X8227),
+ RgInteger = ((int)0X8228),
+ R8 = ((int)0X8229),
+ R16 = ((int)0X822a),
+ Rg8 = ((int)0X822b),
+ Rg16 = ((int)0X822c),
+ R16f = ((int)0X822d),
+ R32f = ((int)0X822e),
+ Rg16f = ((int)0X822f),
+ Rg32f = ((int)0X8230),
+ R8i = ((int)0X8231),
+ R8ui = ((int)0X8232),
+ R16i = ((int)0X8233),
+ R16ui = ((int)0X8234),
+ R32i = ((int)0X8235),
+ R32ui = ((int)0X8236),
+ Rg8i = ((int)0X8237),
+ Rg8ui = ((int)0X8238),
+ Rg16i = ((int)0X8239),
+ Rg16ui = ((int)0X823a),
+ Rg32i = ((int)0X823b),
+ Rg32ui = ((int)0X823c),
+ DepthPassInstrumentSgix = ((int)0X8310),
+ DepthPassInstrumentCountersSgix = ((int)0X8311),
+ DepthPassInstrumentMaxSgix = ((int)0X8312),
+ ConvolutionHintSgix = ((int)0X8316),
+ YcrcbSgix = ((int)0X8318),
+ YcrcbaSgix = ((int)0X8319),
+ AlphaMinSgix = ((int)0X8320),
+ AlphaMaxSgix = ((int)0X8321),
+ ScalebiasHintSgix = ((int)0X8322),
+ AsyncMarkerSgix = ((int)0X8329),
+ PixelTexGenModeSgix = ((int)0X832b),
+ AsyncHistogramSgix = ((int)0X832c),
+ MaxAsyncHistogramSgix = ((int)0X832d),
+ PixelTransform2DExt = ((int)0X8330),
+ PixelMagFilterExt = ((int)0X8331),
+ PixelMinFilterExt = ((int)0X8332),
+ PixelCubicWeightExt = ((int)0X8333),
+ CubicExt = ((int)0X8334),
+ AverageExt = ((int)0X8335),
+ PixelTransform2DStackDepthExt = ((int)0X8336),
+ MaxPixelTransform2DStackDepthExt = ((int)0X8337),
+ PixelTransform2DMatrixExt = ((int)0X8338),
+ FragmentMaterialExt = ((int)0X8349),
+ FragmentNormalExt = ((int)0X834a),
+ FragmentColorExt = ((int)0X834c),
+ AttenuationExt = ((int)0X834d),
+ ShadowAttenuationExt = ((int)0X834e),
+ TextureApplicationModeExt = ((int)0X834f),
+ TextureLightExt = ((int)0X8350),
+ TextureMaterialFaceExt = ((int)0X8351),
+ TextureMaterialParameterExt = ((int)0X8352),
+ PixelTextureSgis = ((int)0X8353),
+ PixelFragmentRgbSourceSgis = ((int)0X8354),
+ PixelFragmentAlphaSourceSgis = ((int)0X8355),
+ PixelGroupColorSgis = ((int)0X8356),
+ AsyncTexImageSgix = ((int)0X835c),
+ AsyncDrawPixelsSgix = ((int)0X835d),
+ AsyncReadPixelsSgix = ((int)0X835e),
+ MaxAsyncTexImageSgix = ((int)0X835f),
+ MaxAsyncDrawPixelsSgix = ((int)0X8360),
+ MaxAsyncReadPixelsSgix = ((int)0X8361),
+ UnsignedByte233Rev = ((int)0X8362),
+ UnsignedByte233Reversed = ((int)0X8362),
+ UnsignedByte233RevExt = ((int)0X8362),
+ UnsignedShort565 = ((int)0X8363),
+ UnsignedShort565Ext = ((int)0X8363),
+ UnsignedShort565Rev = ((int)0X8364),
+ UnsignedShort565Reversed = ((int)0X8364),
+ UnsignedShort565RevExt = ((int)0X8364),
+ UnsignedShort4444Rev = ((int)0X8365),
+ UnsignedShort4444Reversed = ((int)0X8365),
+ UnsignedShort4444RevExt = ((int)0X8365),
+ UnsignedShort1555Rev = ((int)0X8366),
+ UnsignedShort1555Reversed = ((int)0X8366),
+ UnsignedShort1555RevExt = ((int)0X8366),
+ UnsignedInt8888Rev = ((int)0X8367),
+ UnsignedInt8888Reversed = ((int)0X8367),
+ UnsignedInt8888RevExt = ((int)0X8367),
+ UnsignedInt2101010Rev = ((int)0X8368),
+ UnsignedInt2101010Reversed = ((int)0X8368),
+ UnsignedInt2101010RevExt = ((int)0X8368),
+ TextureMaxClampSSgix = ((int)0X8369),
+ TextureMaxClampTSgix = ((int)0X836a),
+ TextureMaxClampRSgix = ((int)0X836b),
+ FogFactorToAlphaSgix = ((int)0X836f),
+ MirroredRepeat = ((int)0X8370),
+ MirroredRepeatArb = ((int)0X8370),
+ MirroredRepeatIbm = ((int)0X8370),
+ RgbS3tc = ((int)0X83a0),
+ Rgb4S3tc = ((int)0X83a1),
+ RgbaS3tc = ((int)0X83a2),
+ Rgba4S3tc = ((int)0X83a3),
+ VertexPreclipSgix = ((int)0X83ee),
+ VertexPreclipHintSgix = ((int)0X83ef),
+ CompressedRgbS3tcDxt1Ext = ((int)0X83f0),
+ CompressedRgbaS3tcDxt1Ext = ((int)0X83f1),
+ CompressedRgbaS3tcDxt3Ext = ((int)0X83f2),
+ CompressedRgbaS3tcDxt5Ext = ((int)0X83f3),
+ ParallelArraysIntel = ((int)0X83f4),
+ VertexArrayParallelPointersIntel = ((int)0X83f5),
+ NormalArrayParallelPointersIntel = ((int)0X83f6),
+ ColorArrayParallelPointersIntel = ((int)0X83f7),
+ TextureCoordArrayParallelPointersIntel = ((int)0X83f8),
+ FragmentLightingSgix = ((int)0X8400),
+ FragmentColorMaterialSgix = ((int)0X8401),
+ FragmentColorMaterialFaceSgix = ((int)0X8402),
+ FragmentColorMaterialParameterSgix = ((int)0X8403),
+ MaxFragmentLightsSgix = ((int)0X8404),
+ MaxActiveLightsSgix = ((int)0X8405),
+ CurrentRasterNormalSgix = ((int)0X8406),
+ LightEnvModeSgix = ((int)0X8407),
+ FragmentLightModelLocalViewerSgix = ((int)0X8408),
+ FragmentLightModelTwoSideSgix = ((int)0X8409),
+ FragmentLightModelAmbientSgix = ((int)0X840a),
+ FragmentLightModelNormalInterpolationSgix = ((int)0X840b),
+ FragmentLight0Sgix = ((int)0X840c),
+ FragmentLight1Sgix = ((int)0X840d),
+ FragmentLight2Sgix = ((int)0X840e),
+ FragmentLight3Sgix = ((int)0X840f),
+ FragmentLight4Sgix = ((int)0X8410),
+ FragmentLight5Sgix = ((int)0X8411),
+ FragmentLight6Sgix = ((int)0X8412),
+ FragmentLight7Sgix = ((int)0X8413),
+ PackResampleSgix = ((int)0X842c),
+ UnpackResampleSgix = ((int)0X842d),
+ ResampleReplicateSgix = ((int)0X842e),
+ ResampleZeroFillSgix = ((int)0X842f),
+ ResampleDecimateSgix = ((int)0X8430),
+ TangentArrayExt = ((int)0X8439),
+ BinormalArrayExt = ((int)0X843a),
+ CurrentTangentExt = ((int)0X843b),
+ CurrentBinormalExt = ((int)0X843c),
+ TangentArrayTypeExt = ((int)0X843e),
+ TangentArrayStrideExt = ((int)0X843f),
+ BinormalArrayTypeExt = ((int)0X8440),
+ BinormalArrayStrideExt = ((int)0X8441),
+ TangentArrayPointerExt = ((int)0X8442),
+ BinormalArrayPointerExt = ((int)0X8443),
+ Map1TangentExt = ((int)0X8444),
+ Map2TangentExt = ((int)0X8445),
+ Map1BinormalExt = ((int)0X8446),
+ Map2BinormalExt = ((int)0X8447),
+ NearestClipmapNearestSgix = ((int)0X844d),
+ NearestClipmapLinearSgix = ((int)0X844e),
+ LinearClipmapNearestSgix = ((int)0X844f),
+ FogCoordinateSourceExt = ((int)0X8450),
+ FogCoordSrc = ((int)0X8450),
+ FogCoord = ((int)0X8451),
+ FogCoordinateExt = ((int)0X8451),
+ FragmentDepth = ((int)0X8452),
+ FragmentDepthExt = ((int)0X8452),
+ CurrentFogCoord = ((int)0X8453),
+ CurrentFogCoordinateExt = ((int)0X8453),
+ FogCoordArrayType = ((int)0X8454),
+ FogCoordinateArrayTypeExt = ((int)0X8454),
+ FogCoordArrayStride = ((int)0X8455),
+ FogCoordinateArrayStrideExt = ((int)0X8455),
+ FogCoordArrayPointer = ((int)0X8456),
+ FogCoordinateArrayPointerExt = ((int)0X8456),
+ FogCoordArray = ((int)0X8457),
+ FogCoordinateArrayExt = ((int)0X8457),
+ ColorSum = ((int)0X8458),
+ ColorSumArb = ((int)0X8458),
+ ColorSumExt = ((int)0X8458),
+ CurrentSecondaryColor = ((int)0X8459),
+ CurrentSecondaryColorExt = ((int)0X8459),
+ SecondaryColorArraySize = ((int)0X845a),
+ SecondaryColorArraySizeExt = ((int)0X845a),
+ SecondaryColorArrayType = ((int)0X845b),
+ SecondaryColorArrayTypeExt = ((int)0X845b),
+ SecondaryColorArrayStride = ((int)0X845c),
+ SecondaryColorArrayStrideExt = ((int)0X845c),
+ SecondaryColorArrayPointer = ((int)0X845d),
+ SecondaryColorArrayPointerExt = ((int)0X845d),
+ SecondaryColorArray = ((int)0X845e),
+ SecondaryColorArrayExt = ((int)0X845e),
+ CurrentRasterSecondaryColor = ((int)0X845f),
+ RgbIccSgix = ((int)0X8460),
+ RgbaIccSgix = ((int)0X8461),
+ AlphaIccSgix = ((int)0X8462),
+ LuminanceIccSgix = ((int)0X8463),
+ IntensityIccSgix = ((int)0X8464),
+ LuminanceAlphaIccSgix = ((int)0X8465),
+ R5G6B5IccSgix = ((int)0X8466),
+ R5G6B5A8IccSgix = ((int)0X8467),
+ Alpha16IccSgix = ((int)0X8468),
+ Luminance16IccSgix = ((int)0X8469),
+ Intensity16IccSgix = ((int)0X846a),
+ Luminance16Alpha8IccSgix = ((int)0X846b),
+ AliasedPointSizeRange = ((int)0X846d),
+ AliasedLineWidthRange = ((int)0X846e),
+ ScreenCoordinatesRend = ((int)0X8490),
+ InvertedScreenWRend = ((int)0X8491),
+ Texture0 = ((int)0X84c0),
+ Texture0Arb = ((int)0X84c0),
+ Texture1 = ((int)0X84c1),
+ Texture1Arb = ((int)0X84c1),
+ Texture2 = ((int)0X84c2),
+ Texture2Arb = ((int)0X84c2),
+ Texture3 = ((int)0X84c3),
+ Texture3Arb = ((int)0X84c3),
+ Texture4 = ((int)0X84c4),
+ Texture4Arb = ((int)0X84c4),
+ Texture5 = ((int)0X84c5),
+ Texture5Arb = ((int)0X84c5),
+ Texture6 = ((int)0X84c6),
+ Texture6Arb = ((int)0X84c6),
+ Texture7 = ((int)0X84c7),
+ Texture7Arb = ((int)0X84c7),
+ Texture8 = ((int)0X84c8),
+ Texture8Arb = ((int)0X84c8),
+ Texture9 = ((int)0X84c9),
+ Texture9Arb = ((int)0X84c9),
+ Texture10 = ((int)0X84ca),
+ Texture10Arb = ((int)0X84ca),
+ Texture11 = ((int)0X84cb),
+ Texture11Arb = ((int)0X84cb),
+ Texture12 = ((int)0X84cc),
+ Texture12Arb = ((int)0X84cc),
+ Texture13 = ((int)0X84cd),
+ Texture13Arb = ((int)0X84cd),
+ Texture14 = ((int)0X84ce),
+ Texture14Arb = ((int)0X84ce),
+ Texture15 = ((int)0X84cf),
+ Texture15Arb = ((int)0X84cf),
+ Texture16 = ((int)0X84d0),
+ Texture16Arb = ((int)0X84d0),
+ Texture17 = ((int)0X84d1),
+ Texture17Arb = ((int)0X84d1),
+ Texture18 = ((int)0X84d2),
+ Texture18Arb = ((int)0X84d2),
+ Texture19 = ((int)0X84d3),
+ Texture19Arb = ((int)0X84d3),
+ Texture20 = ((int)0X84d4),
+ Texture20Arb = ((int)0X84d4),
+ Texture21 = ((int)0X84d5),
+ Texture21Arb = ((int)0X84d5),
+ Texture22 = ((int)0X84d6),
+ Texture22Arb = ((int)0X84d6),
+ Texture23 = ((int)0X84d7),
+ Texture23Arb = ((int)0X84d7),
+ Texture24 = ((int)0X84d8),
+ Texture24Arb = ((int)0X84d8),
+ Texture25 = ((int)0X84d9),
+ Texture25Arb = ((int)0X84d9),
+ Texture26 = ((int)0X84da),
+ Texture26Arb = ((int)0X84da),
+ Texture27 = ((int)0X84db),
+ Texture27Arb = ((int)0X84db),
+ Texture28 = ((int)0X84dc),
+ Texture28Arb = ((int)0X84dc),
+ Texture29 = ((int)0X84dd),
+ Texture29Arb = ((int)0X84dd),
+ Texture30 = ((int)0X84de),
+ Texture30Arb = ((int)0X84de),
+ Texture31 = ((int)0X84df),
+ Texture31Arb = ((int)0X84df),
+ ActiveTexture = ((int)0X84e0),
+ ActiveTextureArb = ((int)0X84e0),
+ ClientActiveTexture = ((int)0X84e1),
+ ClientActiveTextureArb = ((int)0X84e1),
+ MaxTextureUnits = ((int)0X84e2),
+ MaxTextureUnitsArb = ((int)0X84e2),
+ TransposeModelviewMatrix = ((int)0X84e3),
+ TransposeModelviewMatrixArb = ((int)0X84e3),
+ TransposeProjectionMatrix = ((int)0X84e4),
+ TransposeProjectionMatrixArb = ((int)0X84e4),
+ TransposeTextureMatrix = ((int)0X84e5),
+ TransposeTextureMatrixArb = ((int)0X84e5),
+ TransposeColorMatrix = ((int)0X84e6),
+ TransposeColorMatrixArb = ((int)0X84e6),
+ Subtract = ((int)0X84e7),
+ SubtractArb = ((int)0X84e7),
+ MaxRenderbufferSize = ((int)0X84e8),
+ MaxRenderbufferSizeExt = ((int)0X84e8),
+ CompressedAlpha = ((int)0X84e9),
+ CompressedAlphaArb = ((int)0X84e9),
+ CompressedLuminance = ((int)0X84ea),
+ CompressedLuminanceArb = ((int)0X84ea),
+ CompressedLuminanceAlpha = ((int)0X84eb),
+ CompressedLuminanceAlphaArb = ((int)0X84eb),
+ CompressedIntensity = ((int)0X84ec),
+ CompressedIntensityArb = ((int)0X84ec),
+ CompressedRgb = ((int)0X84ed),
+ CompressedRgbArb = ((int)0X84ed),
+ CompressedRgba = ((int)0X84ee),
+ CompressedRgbaArb = ((int)0X84ee),
+ TextureCompressionHint = ((int)0X84ef),
+ TextureCompressionHintArb = ((int)0X84ef),
+ AllCompletedNv = ((int)0X84f2),
+ FenceStatusNv = ((int)0X84f3),
+ FenceConditionNv = ((int)0X84f4),
+ TextureRectangleArb = ((int)0X84f5),
+ TextureRectangleNv = ((int)0X84f5),
+ TextureBindingRectangleArb = ((int)0X84f6),
+ TextureBindingRectangleNv = ((int)0X84f6),
+ ProxyTextureRectangleArb = ((int)0X84f7),
+ ProxyTextureRectangleNv = ((int)0X84f7),
+ MaxRectangleTextureSizeArb = ((int)0X84f8),
+ MaxRectangleTextureSizeNv = ((int)0X84f8),
+ DepthStencil = ((int)0X84f9),
+ DepthStencilExt = ((int)0X84f9),
+ DepthStencilNv = ((int)0X84f9),
+ UnsignedInt248 = ((int)0X84fa),
+ UnsignedInt248Ext = ((int)0X84fa),
+ UnsignedInt248Nv = ((int)0X84fa),
+ MaxTextureLodBias = ((int)0X84fd),
+ MaxTextureLodBiasExt = ((int)0X84fd),
+ TextureMaxAnisotropyExt = ((int)0X84fe),
+ MaxTextureMaxAnisotropyExt = ((int)0X84ff),
+ TextureFilterControl = ((int)0X8500),
+ TextureFilterControlExt = ((int)0X8500),
+ TextureLodBias = ((int)0X8501),
+ TextureLodBiasExt = ((int)0X8501),
+ Modelview1StackDepthExt = ((int)0X8502),
+ Combine4Nv = ((int)0X8503),
+ MaxShininessNv = ((int)0X8504),
+ MaxSpotExponentNv = ((int)0X8505),
+ Modelview1MatrixExt = ((int)0X8506),
+ IncrWrap = ((int)0X8507),
+ IncrWrapExt = ((int)0X8507),
+ DecrWrap = ((int)0X8508),
+ DecrWrapExt = ((int)0X8508),
+ VertexWeightingExt = ((int)0X8509),
+ Modelview1Arb = ((int)0X850a),
+ Modelview1Ext = ((int)0X850a),
+ CurrentVertexWeightExt = ((int)0X850b),
+ VertexWeightArrayExt = ((int)0X850c),
+ VertexWeightArraySizeExt = ((int)0X850d),
+ VertexWeightArrayTypeExt = ((int)0X850e),
+ VertexWeightArrayStrideExt = ((int)0X850f),
+ VertexWeightArrayPointerExt = ((int)0X8510),
+ NormalMap = ((int)0X8511),
+ NormalMapArb = ((int)0X8511),
+ NormalMapExt = ((int)0X8511),
+ NormalMapNv = ((int)0X8511),
+ ReflectionMap = ((int)0X8512),
+ ReflectionMapArb = ((int)0X8512),
+ ReflectionMapExt = ((int)0X8512),
+ ReflectionMapNv = ((int)0X8512),
+ TextureCubeMap = ((int)0X8513),
+ TextureCubeMapArb = ((int)0X8513),
+ TextureCubeMapExt = ((int)0X8513),
+ TextureBindingCubeMap = ((int)0X8514),
+ TextureBindingCubeMapArb = ((int)0X8514),
+ TextureBindingCubeMapExt = ((int)0X8514),
+ TextureCubeMapPositiveX = ((int)0X8515),
+ TextureCubeMapPositiveXArb = ((int)0X8515),
+ TextureCubeMapPositiveXExt = ((int)0X8515),
+ TextureCubeMapNegativeX = ((int)0X8516),
+ TextureCubeMapNegativeXArb = ((int)0X8516),
+ TextureCubeMapNegativeXExt = ((int)0X8516),
+ TextureCubeMapPositiveY = ((int)0X8517),
+ TextureCubeMapPositiveYArb = ((int)0X8517),
+ TextureCubeMapPositiveYExt = ((int)0X8517),
+ TextureCubeMapNegativeY = ((int)0X8518),
+ TextureCubeMapNegativeYArb = ((int)0X8518),
+ TextureCubeMapNegativeYExt = ((int)0X8518),
+ TextureCubeMapPositiveZ = ((int)0X8519),
+ TextureCubeMapPositiveZArb = ((int)0X8519),
+ TextureCubeMapPositiveZExt = ((int)0X8519),
+ TextureCubeMapNegativeZ = ((int)0X851a),
+ TextureCubeMapNegativeZArb = ((int)0X851a),
+ TextureCubeMapNegativeZExt = ((int)0X851a),
+ ProxyTextureCubeMap = ((int)0X851b),
+ ProxyTextureCubeMapArb = ((int)0X851b),
+ ProxyTextureCubeMapExt = ((int)0X851b),
+ MaxCubeMapTextureSize = ((int)0X851c),
+ MaxCubeMapTextureSizeArb = ((int)0X851c),
+ MaxCubeMapTextureSizeExt = ((int)0X851c),
+ VertexArrayRangeApple = ((int)0X851d),
+ VertexArrayRangeNv = ((int)0X851d),
+ VertexArrayRangeLengthApple = ((int)0X851e),
+ VertexArrayRangeLengthNv = ((int)0X851e),
+ VertexArrayRangeValidNv = ((int)0X851f),
+ VertexArrayStorageHintApple = ((int)0X851f),
+ MaxVertexArrayRangeElementNv = ((int)0X8520),
+ VertexArrayRangePointerApple = ((int)0X8521),
+ VertexArrayRangePointerNv = ((int)0X8521),
+ RegisterCombinersNv = ((int)0X8522),
VariableANv = ((int)0X8523),
+ VariableBNv = ((int)0X8524),
+ VariableCNv = ((int)0X8525),
+ VariableDNv = ((int)0X8526),
+ VariableENv = ((int)0X8527),
+ VariableFNv = ((int)0X8528),
+ VariableGNv = ((int)0X8529),
+ ConstantColor0Nv = ((int)0X852a),
+ ConstantColor1Nv = ((int)0X852b),
+ PrimaryColorNv = ((int)0X852c),
+ SecondaryColorNv = ((int)0X852d),
+ Spare0Nv = ((int)0X852e),
+ Spare1Nv = ((int)0X852f),
+ DiscardNv = ((int)0X8530),
+ ETimesFNv = ((int)0X8531),
+ Spare0PlusSecondaryColorNv = ((int)0X8532),
+ VertexArrayRangeWithoutFlushNv = ((int)0X8533),
+ MultisampleFilterHintNv = ((int)0X8534),
+ PerStageConstantsNv = ((int)0X8535),
+ UnsignedIdentityNv = ((int)0X8536),
+ UnsignedInvertNv = ((int)0X8537),
+ ExpandNormalNv = ((int)0X8538),
+ ExpandNegateNv = ((int)0X8539),
+ HalfBiasNormalNv = ((int)0X853a),
+ HalfBiasNegateNv = ((int)0X853b),
+ SignedIdentityNv = ((int)0X853c),
+ SignedNegateNv = ((int)0X853d),
+ ScaleByTwoNv = ((int)0X853e),
+ ScaleByFourNv = ((int)0X853f),
+ ScaleByOneHalfNv = ((int)0X8540),
+ BiasByNegativeOneHalfNv = ((int)0X8541),
+ CombinerInputNv = ((int)0X8542),
+ CombinerMappingNv = ((int)0X8543),
+ CombinerComponentUsageNv = ((int)0X8544),
+ CombinerAbDotProductNv = ((int)0X8545),
+ CombinerCdDotProductNv = ((int)0X8546),
+ CombinerMuxSumNv = ((int)0X8547),
+ CombinerScaleNv = ((int)0X8548),
+ CombinerBiasNv = ((int)0X8549),
+ CombinerAbOutputNv = ((int)0X854a),
+ CombinerCdOutputNv = ((int)0X854b),
+ CombinerSumOutputNv = ((int)0X854c),
+ MaxGeneralCombinersNv = ((int)0X854d),
+ NumGeneralCombinersNv = ((int)0X854e),
+ ColorSumClampNv = ((int)0X854f),
+ Combiner0Nv = ((int)0X8550),
+ Combiner1Nv = ((int)0X8551),
+ Combiner2Nv = ((int)0X8552),
+ Combiner3Nv = ((int)0X8553),
+ Combiner4Nv = ((int)0X8554),
+ Combiner5Nv = ((int)0X8555),
+ Combiner6Nv = ((int)0X8556),
+ Combiner7Nv = ((int)0X8557),
+ PrimitiveRestartNv = ((int)0X8558),
+ PrimitiveRestartIndexNv = ((int)0X8559),
+ FogDistanceModeNv = ((int)0X855a),
+ EyeRadialNv = ((int)0X855b),
+ EyePlaneAbsoluteNv = ((int)0X855c),
+ EmbossLightNv = ((int)0X855d),
+ EmbossConstantNv = ((int)0X855e),
+ EmbossMapNv = ((int)0X855f),
+ RedMinClampIngr = ((int)0X8560),
+ GreenMinClampIngr = ((int)0X8561),
+ BlueMinClampIngr = ((int)0X8562),
+ AlphaMinClampIngr = ((int)0X8563),
+ RedMaxClampIngr = ((int)0X8564),
+ GreenMaxClampIngr = ((int)0X8565),
+ BlueMaxClampIngr = ((int)0X8566),
+ AlphaMaxClampIngr = ((int)0X8567),
+ InterlaceReadIngr = ((int)0X8568),
+ Combine = ((int)0X8570),
+ CombineArb = ((int)0X8570),
+ CombineExt = ((int)0X8570),
+ CombineRgb = ((int)0X8571),
+ CombineRgbArb = ((int)0X8571),
+ CombineRgbExt = ((int)0X8571),
+ CombineAlpha = ((int)0X8572),
+ CombineAlphaArb = ((int)0X8572),
+ CombineAlphaExt = ((int)0X8572),
+ RgbScale = ((int)0X8573),
+ RgbScaleArb = ((int)0X8573),
+ RgbScaleExt = ((int)0X8573),
+ AddSigned = ((int)0X8574),
+ AddSignedArb = ((int)0X8574),
+ AddSignedExt = ((int)0X8574),
+ Interpolate = ((int)0X8575),
+ InterpolateArb = ((int)0X8575),
+ InterpolateExt = ((int)0X8575),
+ Constant = ((int)0X8576),
+ ConstantArb = ((int)0X8576),
+ ConstantExt = ((int)0X8576),
+ PrimaryColor = ((int)0X8577),
+ PrimaryColorArb = ((int)0X8577),
+ PrimaryColorExt = ((int)0X8577),
+ Previous = ((int)0X8578),
+ PreviousArb = ((int)0X8578),
+ PreviousExt = ((int)0X8578),
+ Source0Rgb = ((int)0X8580),
+ Source0RgbArb = ((int)0X8580),
+ Source0RgbExt = ((int)0X8580),
+ Source1RgbArb = ((int)0X8581),
+ Source1RgbExt = ((int)0X8581),
+ Src1Rgb = ((int)0X8581),
+ Source2RgbArb = ((int)0X8582),
+ Source2RgbExt = ((int)0X8582),
+ Src2Rgb = ((int)0X8582),
+ Source3RgbNv = ((int)0X8583),
+ Source0AlphaArb = ((int)0X8588),
+ Source0AlphaExt = ((int)0X8588),
+ Src0Alpha = ((int)0X8588),
+ Source1AlphaArb = ((int)0X8589),
+ Source1AlphaExt = ((int)0X8589),
+ Src1Alpha = ((int)0X8589),
+ Source2AlphaArb = ((int)0X858a),
+ Source2AlphaExt = ((int)0X858a),
+ Src2Alpha = ((int)0X858a),
+ Source3AlphaNv = ((int)0X858b),
+ Operand0Rgb = ((int)0X8590),
+ Operand0RgbArb = ((int)0X8590),
+ Operand0RgbExt = ((int)0X8590),
+ Operand1Rgb = ((int)0X8591),
+ Operand1RgbArb = ((int)0X8591),
+ Operand1RgbExt = ((int)0X8591),
+ Operand2Rgb = ((int)0X8592),
+ Operand2RgbArb = ((int)0X8592),
+ Operand2RgbExt = ((int)0X8592),
+ Operand3RgbNv = ((int)0X8593),
+ Operand0Alpha = ((int)0X8598),
+ Operand0AlphaArb = ((int)0X8598),
+ Operand0AlphaExt = ((int)0X8598),
+ Operand1Alpha = ((int)0X8599),
+ Operand1AlphaArb = ((int)0X8599),
+ Operand1AlphaExt = ((int)0X8599),
+ Operand2Alpha = ((int)0X859a),
+ Operand2AlphaArb = ((int)0X859a),
+ Operand2AlphaExt = ((int)0X859a),
+ Operand3AlphaNv = ((int)0X859b),
+ PackSubsampleRateSgix = ((int)0X85a0),
+ UnpackSubsampleRateSgix = ((int)0X85a1),
+ PixelSubsample4444Sgix = ((int)0X85a2),
+ PixelSubsample2424Sgix = ((int)0X85a3),
+ PixelSubsample4242Sgix = ((int)0X85a4),
+ PerturbExt = ((int)0X85ae),
+ TextureNormalExt = ((int)0X85af),
+ LightModelSpecularVectorApple = ((int)0X85b0),
+ TransformHintApple = ((int)0X85b1),
+ UnpackClientStorageApple = ((int)0X85b2),
+ VertexArrayBinding = ((int)0X85b5),
+ VertexArrayBindingApple = ((int)0X85b5),
+ Ycbcr422Apple = ((int)0X85b9),
+ UnsignedShort88Apple = ((int)0X85ba),
+ UnsignedShort88Mesa = ((int)0X85ba),
+ UnsignedShort88RevApple = ((int)0X85bb),
+ UnsignedShort88RevMesa = ((int)0X85bb),
+ StorageCachedApple = ((int)0X85be),
+ StorageSharedApple = ((int)0X85bf),
+ ReplacementCodeArraySun = ((int)0X85c0),
+ ReplacementCodeArrayTypeSun = ((int)0X85c1),
+ ReplacementCodeArrayStrideSun = ((int)0X85c2),
+ ReplacementCodeArrayPointerSun = ((int)0X85c3),
+ R1uiV3fSun = ((int)0X85c4),
+ R1uiC4ubV3fSun = ((int)0X85c5),
+ R1uiC3fV3fSun = ((int)0X85c6),
+ R1uiN3fV3fSun = ((int)0X85c7),
+ R1uiC4fN3fV3fSun = ((int)0X85c8),
+ R1uiT2fV3fSun = ((int)0X85c9),
+ R1uiT2fN3fV3fSun = ((int)0X85ca),
+ R1uiT2fC4fN3fV3fSun = ((int)0X85cb),
+ SliceAccumSun = ((int)0X85cc),
+ QuadMeshSun = ((int)0X8614),
+ TriangleMeshSun = ((int)0X8615),
+ VertexProgram = ((int)0X8620),
+ VertexProgramNv = ((int)0X8620),
+ VertexStateProgramNv = ((int)0X8621),
+ ArrayEnabled = ((int)0X8622),
+ ArraySize = ((int)0X8623),
+ AttribArraySizeNv = ((int)0X8623),
+ ArrayStride = ((int)0X8624),
+ AttribArrayStrideNv = ((int)0X8624),
+ ArrayType = ((int)0X8625),
+ AttribArrayTypeNv = ((int)0X8625),
+ CurrentAttribNv = ((int)0X8626),
+ CurrentVertexAttrib = ((int)0X8626),
+ ProgramLength = ((int)0X8627),
+ ProgramLengthNv = ((int)0X8627),
+ ProgramString = ((int)0X8628),
+ ProgramStringNv = ((int)0X8628),
+ ModelviewProjectionNv = ((int)0X8629),
+ IdentityNv = ((int)0X862a),
+ InverseNv = ((int)0X862b),
+ TransposeNv = ((int)0X862c),
+ InverseTransposeNv = ((int)0X862d),
+ MaxProgramMatrixStackDepthArb = ((int)0X862e),
+ MaxTrackMatrixStackDepthNv = ((int)0X862e),
+ MaxProgramMatricesArb = ((int)0X862f),
+ MaxTrackMatricesNv = ((int)0X862f),
+ Matrix0Nv = ((int)0X8630),
+ Matrix1Nv = ((int)0X8631),
+ Matrix2Nv = ((int)0X8632),
+ Matrix3Nv = ((int)0X8633),
+ Matrix4Nv = ((int)0X8634),
+ Matrix5Nv = ((int)0X8635),
+ Matrix6Nv = ((int)0X8636),
+ Matrix7Nv = ((int)0X8637),
+ CurrentMatrixStackDepthArb = ((int)0X8640),
+ CurrentMatrixStackDepthNv = ((int)0X8640),
+ CurrentMatrixArb = ((int)0X8641),
+ CurrentMatrixNv = ((int)0X8641),
+ ProgramPointSizeArb = ((int)0X8642),
+ ProgramPointSizeExt = ((int)0X8642),
+ VertexProgramPointSize = ((int)0X8642),
+ VertexProgramPointSizeArb = ((int)0X8642),
+ VertexProgramPointSizeNv = ((int)0X8642),
+ VertexProgramTwoSide = ((int)0X8643),
+ VertexProgramTwoSideArb = ((int)0X8643),
+ VertexProgramTwoSideNv = ((int)0X8643),
+ ProgramParameterNv = ((int)0X8644),
+ ArrayPointer = ((int)0X8645),
+ AttribArrayPointerNv = ((int)0X8645),
+ ProgramTargetNv = ((int)0X8646),
+ ProgramResidentNv = ((int)0X8647),
+ TrackMatrixNv = ((int)0X8648),
+ TrackMatrixTransformNv = ((int)0X8649),
+ VertexProgramBindingNv = ((int)0X864a),
+ ProgramErrorPositionArb = ((int)0X864b),
+ ProgramErrorPositionNv = ((int)0X864b),
+ OffsetTextureRectangleNv = ((int)0X864c),
+ OffsetTextureRectangleScaleNv = ((int)0X864d),
+ DotProductTextureRectangleNv = ((int)0X864e),
+ DepthClampNv = ((int)0X864f),
+ VertexAttribArray0Nv = ((int)0X8650),
+ VertexAttribArray1Nv = ((int)0X8651),
+ VertexAttribArray2Nv = ((int)0X8652),
+ VertexAttribArray3Nv = ((int)0X8653),
+ VertexAttribArray4Nv = ((int)0X8654),
+ VertexAttribArray5Nv = ((int)0X8655),
+ VertexAttribArray6Nv = ((int)0X8656),
+ VertexAttribArray7Nv = ((int)0X8657),
+ VertexAttribArray8Nv = ((int)0X8658),
+ VertexAttribArray9Nv = ((int)0X8659),
+ VertexAttribArray10Nv = ((int)0X865a),
+ VertexAttribArray11Nv = ((int)0X865b),
+ VertexAttribArray12Nv = ((int)0X865c),
+ VertexAttribArray13Nv = ((int)0X865d),
+ VertexAttribArray14Nv = ((int)0X865e),
+ VertexAttribArray15Nv = ((int)0X865f),
+ Map1VertexAttrib04Nv = ((int)0X8660),
+ Map1VertexAttrib14Nv = ((int)0X8661),
+ Map1VertexAttrib24Nv = ((int)0X8662),
+ Map1VertexAttrib34Nv = ((int)0X8663),
+ Map1VertexAttrib44Nv = ((int)0X8664),
+ Map1VertexAttrib54Nv = ((int)0X8665),
+ Map1VertexAttrib64Nv = ((int)0X8666),
+ Map1VertexAttrib74Nv = ((int)0X8667),
+ Map1VertexAttrib84Nv = ((int)0X8668),
+ Map1VertexAttrib94Nv = ((int)0X8669),
+ Map1VertexAttrib104Nv = ((int)0X866a),
+ Map1VertexAttrib114Nv = ((int)0X866b),
+ Map1VertexAttrib124Nv = ((int)0X866c),
+ Map1VertexAttrib134Nv = ((int)0X866d),
+ Map1VertexAttrib144Nv = ((int)0X866e),
+ Map1VertexAttrib154Nv = ((int)0X866f),
+ Map2VertexAttrib04Nv = ((int)0X8670),
+ Map2VertexAttrib14Nv = ((int)0X8671),
+ Map2VertexAttrib24Nv = ((int)0X8672),
+ Map2VertexAttrib34Nv = ((int)0X8673),
+ Map2VertexAttrib44Nv = ((int)0X8674),
+ Map2VertexAttrib54Nv = ((int)0X8675),
+ Map2VertexAttrib64Nv = ((int)0X8676),
+ Map2VertexAttrib74Nv = ((int)0X8677),
+ ProgramBinding = ((int)0X8677),
+ Map2VertexAttrib84Nv = ((int)0X8678),
+ Map2VertexAttrib94Nv = ((int)0X8679),
+ Map2VertexAttrib104Nv = ((int)0X867a),
+ Map2VertexAttrib114Nv = ((int)0X867b),
+ Map2VertexAttrib124Nv = ((int)0X867c),
+ Map2VertexAttrib134Nv = ((int)0X867d),
+ Map2VertexAttrib144Nv = ((int)0X867e),
+ Map2VertexAttrib154Nv = ((int)0X867f),
+ TextureCompressedImageSize = ((int)0X86a0),
+ TextureCompressedImageSizeArb = ((int)0X86a0),
+ TextureCompressed = ((int)0X86a1),
+ TextureCompressedArb = ((int)0X86a1),
+ NumCompressedTextureFormats = ((int)0X86a2),
+ NumCompressedTextureFormatsArb = ((int)0X86a2),
+ CompressedTextureFormats = ((int)0X86a3),
+ CompressedTextureFormatsArb = ((int)0X86a3),
+ MaxVertexUnitsArb = ((int)0X86a4),
+ ActiveVertexUnitsArb = ((int)0X86a5),
+ WeightSumUnityArb = ((int)0X86a6),
+ VertexBlendArb = ((int)0X86a7),
+ CurrentWeightArb = ((int)0X86a8),
+ WeightArrayTypeArb = ((int)0X86a9),
+ WeightArrayStrideArb = ((int)0X86aa),
+ WeightArraySizeArb = ((int)0X86ab),
+ WeightArrayPointerArb = ((int)0X86ac),
+ WeightArrayArb = ((int)0X86ad),
+ Dot3Rgb = ((int)0X86ae),
+ Dot3RgbArb = ((int)0X86ae),
+ Dot3Rgba = ((int)0X86af),
+ Dot3RgbaArb = ((int)0X86af),
+ CompressedRgbFxt13Dfx = ((int)0X86b0),
+ CompressedRgbaFxt13Dfx = ((int)0X86b1),
+ Multisample3Dfx = ((int)0X86b2),
+ SampleBuffers3Dfx = ((int)0X86b3),
+ Samples3Dfx = ((int)0X86b4),
+ Eval2DNv = ((int)0X86c0),
+ EvalTriangular2DNv = ((int)0X86c1),
+ MapTessellationNv = ((int)0X86c2),
+ MapAttribUOrderNv = ((int)0X86c3),
+ MapAttribVOrderNv = ((int)0X86c4),
+ EvalFractionalTessellationNv = ((int)0X86c5),
+ EvalVertexAttrib0Nv = ((int)0X86c6),
+ EvalVertexAttrib1Nv = ((int)0X86c7),
+ EvalVertexAttrib2Nv = ((int)0X86c8),
+ EvalVertexAttrib3Nv = ((int)0X86c9),
+ EvalVertexAttrib4Nv = ((int)0X86ca),
+ EvalVertexAttrib5Nv = ((int)0X86cb),
+ EvalVertexAttrib6Nv = ((int)0X86cc),
+ EvalVertexAttrib7Nv = ((int)0X86cd),
+ EvalVertexAttrib8Nv = ((int)0X86ce),
+ EvalVertexAttrib9Nv = ((int)0X86cf),
+ EvalVertexAttrib10Nv = ((int)0X86d0),
+ EvalVertexAttrib11Nv = ((int)0X86d1),
+ EvalVertexAttrib12Nv = ((int)0X86d2),
+ EvalVertexAttrib13Nv = ((int)0X86d3),
+ EvalVertexAttrib14Nv = ((int)0X86d4),
+ EvalVertexAttrib15Nv = ((int)0X86d5),
+ MaxMapTessellationNv = ((int)0X86d6),
+ MaxRationalEvalOrderNv = ((int)0X86d7),
+ RgbaUnsignedDotProductMappingNv = ((int)0X86d9),
+ UnsignedIntS8S888Nv = ((int)0X86da),
+ UnsignedInt88S8S8RevNv = ((int)0X86db),
+ DsdtMagIntensityNv = ((int)0X86dc),
+ ShaderConsistentNv = ((int)0X86dd),
+ TextureShaderNv = ((int)0X86de),
+ ShaderOperationNv = ((int)0X86df),
+ CullModesNv = ((int)0X86e0),
+ OffsetTexture2DMatrixNv = ((int)0X86e1),
+ OffsetTextureMatrixNv = ((int)0X86e1),
+ OffsetTexture2DScaleNv = ((int)0X86e2),
+ OffsetTextureScaleNv = ((int)0X86e2),
+ OffsetTexture2DBiasNv = ((int)0X86e3),
+ OffsetTextureBiasNv = ((int)0X86e3),
+ PreviousTextureInputNv = ((int)0X86e4),
+ ConstEyeNv = ((int)0X86e5),
+ PassThroughNv = ((int)0X86e6),
+ CullFragmentNv = ((int)0X86e7),
+ OffsetTexture2DNv = ((int)0X86e8),
+ DependentArTexture2DNv = ((int)0X86e9),
+ DependentGbTexture2DNv = ((int)0X86ea),
+ DotProductNv = ((int)0X86ec),
+ DotProductDepthReplaceNv = ((int)0X86ed),
+ DotProductTexture2DNv = ((int)0X86ee),
+ DotProductTexture3DNv = ((int)0X86ef),
+ DotProductTextureCubeMapNv = ((int)0X86f0),
+ DotProductDiffuseCubeMapNv = ((int)0X86f1),
+ DotProductReflectCubeMapNv = ((int)0X86f2),
+ DotProductConstEyeReflectCubeMapNv = ((int)0X86f3),
+ HiloNv = ((int)0X86f4),
+ DsdtNv = ((int)0X86f5),
+ DsdtMagNv = ((int)0X86f6),
+ DsdtMagVibNv = ((int)0X86f7),
+ Hilo16Nv = ((int)0X86f8),
+ SignedHiloNv = ((int)0X86f9),
+ SignedHilo16Nv = ((int)0X86fa),
+ SignedRgbaNv = ((int)0X86fb),
+ SignedRgba8Nv = ((int)0X86fc),
+ SignedRgbNv = ((int)0X86fe),
+ SignedRgb8Nv = ((int)0X86ff),
+ SignedLuminanceNv = ((int)0X8701),
+ SignedLuminance8Nv = ((int)0X8702),
+ SignedLuminanceAlphaNv = ((int)0X8703),
+ SignedLuminance8Alpha8Nv = ((int)0X8704),
+ SignedAlphaNv = ((int)0X8705),
+ SignedAlpha8Nv = ((int)0X8706),
+ SignedIntensityNv = ((int)0X8707),
+ SignedIntensity8Nv = ((int)0X8708),
+ Dsdt8Nv = ((int)0X8709),
+ Dsdt8Mag8Nv = ((int)0X870a),
+ Dsdt8Mag8Intensity8Nv = ((int)0X870b),
+ SignedRgbUnsignedAlphaNv = ((int)0X870c),
+ SignedRgb8UnsignedAlpha8Nv = ((int)0X870d),
+ HiScaleNv = ((int)0X870e),
+ LoScaleNv = ((int)0X870f),
+ DsScaleNv = ((int)0X8710),
+ DtScaleNv = ((int)0X8711),
+ MagnitudeScaleNv = ((int)0X8712),
+ VibranceScaleNv = ((int)0X8713),
+ HiBiasNv = ((int)0X8714),
+ LoBiasNv = ((int)0X8715),
+ DsBiasNv = ((int)0X8716),
+ DtBiasNv = ((int)0X8717),
+ MagnitudeBiasNv = ((int)0X8718),
+ VibranceBiasNv = ((int)0X8719),
+ TextureBorderValuesNv = ((int)0X871a),
+ TextureHiSizeNv = ((int)0X871b),
+ TextureLoSizeNv = ((int)0X871c),
+ TextureDsSizeNv = ((int)0X871d),
+ TextureDtSizeNv = ((int)0X871e),
+ TextureMagSizeNv = ((int)0X871f),
+ Modelview2Arb = ((int)0X8722),
+ Modelview3Arb = ((int)0X8723),
+ Modelview4Arb = ((int)0X8724),
+ Modelview5Arb = ((int)0X8725),
+ Modelview6Arb = ((int)0X8726),
+ Modelview7Arb = ((int)0X8727),
+ Modelview8Arb = ((int)0X8728),
+ Modelview9Arb = ((int)0X8729),
+ Modelview10Arb = ((int)0X872a),
+ Modelview11Arb = ((int)0X872b),
+ Modelview12Arb = ((int)0X872c),
+ Modelview13Arb = ((int)0X872d),
+ Modelview14Arb = ((int)0X872e),
+ Modelview15Arb = ((int)0X872f),
+ Modelview16Arb = ((int)0X8730),
+ Modelview17Arb = ((int)0X8731),
+ Modelview18Arb = ((int)0X8732),
+ Modelview19Arb = ((int)0X8733),
+ Modelview20Arb = ((int)0X8734),
+ Modelview21Arb = ((int)0X8735),
+ Modelview22Arb = ((int)0X8736),
+ Modelview23Arb = ((int)0X8737),
+ Modelview24Arb = ((int)0X8738),
+ Modelview25Arb = ((int)0X8739),
+ Modelview26Arb = ((int)0X873a),
+ Modelview27Arb = ((int)0X873b),
+ Modelview28Arb = ((int)0X873c),
+ Modelview29Arb = ((int)0X873d),
+ Modelview30Arb = ((int)0X873e),
+ Modelview31Arb = ((int)0X873f),
+ Dot3RgbExt = ((int)0X8740),
+ Dot3RgbaExt = ((int)0X8741),
+ MirrorClampAti = ((int)0X8742),
+ MirrorClampExt = ((int)0X8742),
+ MirrorClampToEdgeAti = ((int)0X8743),
+ MirrorClampToEdgeExt = ((int)0X8743),
+ ModulateAddAti = ((int)0X8744),
+ ModulateSignedAddAti = ((int)0X8745),
+ ModulateSubtractAti = ((int)0X8746),
+ YcbcrMesa = ((int)0X8757),
+ PackInvertMesa = ((int)0X8758),
+ Texture1DStackMesax = ((int)0X8759),
+ Texture2DStackMesax = ((int)0X875a),
+ ProxyTexture1DStackMesax = ((int)0X875b),
+ ProxyTexture2DStackMesax = ((int)0X875c),
+ Texture1DStackBindingMesax = ((int)0X875d),
+ Texture2DStackBindingMesax = ((int)0X875e),
+ StaticAti = ((int)0X8760),
+ DynamicAti = ((int)0X8761),
+ PreserveAti = ((int)0X8762),
+ DiscardAti = ((int)0X8763),
+ BufferSize = ((int)0X8764),
+ BufferSizeArb = ((int)0X8764),
+ ObjectBufferSizeAti = ((int)0X8764),
+ BufferUsage = ((int)0X8765),
+ BufferUsageArb = ((int)0X8765),
+ ObjectBufferUsageAti = ((int)0X8765),
+ ArrayObjectBufferAti = ((int)0X8766),
+ ArrayObjectOffsetAti = ((int)0X8767),
+ ElementArrayApple = ((int)0X8768),
+ ElementArrayAti = ((int)0X8768),
+ ElementArrayTypeApple = ((int)0X8769),
+ ElementArrayTypeAti = ((int)0X8769),
+ ElementArrayPointerApple = ((int)0X876a),
+ ElementArrayPointerAti = ((int)0X876a),
+ MaxVertexStreamsAti = ((int)0X876b),
+ VertexStream0Ati = ((int)0X876c),
+ VertexStream1Ati = ((int)0X876d),
+ VertexStream2Ati = ((int)0X876e),
+ VertexStream3Ati = ((int)0X876f),
+ VertexStream4Ati = ((int)0X8770),
+ VertexStream5Ati = ((int)0X8771),
+ VertexStream6Ati = ((int)0X8772),
+ VertexStream7Ati = ((int)0X8773),
+ VertexSourceAti = ((int)0X8774),
+ BumpRotMatrixAti = ((int)0X8775),
+ BumpRotMatrixSizeAti = ((int)0X8776),
+ BumpNumTexUnitsAti = ((int)0X8777),
+ BumpTexUnitsAti = ((int)0X8778),
+ DudvAti = ((int)0X8779),
+ Du8dv8Ati = ((int)0X877a),
+ BumpEnvmapAti = ((int)0X877b),
+ BumpTargetAti = ((int)0X877c),
+ VertexShaderExt = ((int)0X8780),
+ VertexShaderBindingExt = ((int)0X8781),
+ OpIndexExt = ((int)0X8782),
+ OpNegateExt = ((int)0X8783),
+ OpDot3Ext = ((int)0X8784),
+ OpDot4Ext = ((int)0X8785),
+ OpMulExt = ((int)0X8786),
+ OpAddExt = ((int)0X8787),
+ OpMaddExt = ((int)0X8788),
+ OpFracExt = ((int)0X8789),
+ OpMaxExt = ((int)0X878a),
+ OpMinExt = ((int)0X878b),
+ OpSetGeExt = ((int)0X878c),
+ OpSetLtExt = ((int)0X878d),
+ OpClampExt = ((int)0X878e),
+ OpFloorExt = ((int)0X878f),
+ OpRoundExt = ((int)0X8790),
+ OpExpBase2Ext = ((int)0X8791),
+ OpLogBase2Ext = ((int)0X8792),
+ OpPowerExt = ((int)0X8793),
+ OpRecipExt = ((int)0X8794),
+ OpRecipSqrtExt = ((int)0X8795),
+ OpSubExt = ((int)0X8796),
+ OpCrossProductExt = ((int)0X8797),
+ OpMultiplyMatrixExt = ((int)0X8798),
+ OpMovExt = ((int)0X8799),
+ OutputVertexExt = ((int)0X879a),
+ OutputColor0Ext = ((int)0X879b),
+ OutputColor1Ext = ((int)0X879c),
+ OutputTextureCoord0Ext = ((int)0X879d),
+ OutputTextureCoord1Ext = ((int)0X879e),
+ OutputTextureCoord2Ext = ((int)0X879f),
+ OutputTextureCoord3Ext = ((int)0X87a0),
+ OutputTextureCoord4Ext = ((int)0X87a1),
+ OutputTextureCoord5Ext = ((int)0X87a2),
+ OutputTextureCoord6Ext = ((int)0X87a3),
+ OutputTextureCoord7Ext = ((int)0X87a4),
+ OutputTextureCoord8Ext = ((int)0X87a5),
+ OutputTextureCoord9Ext = ((int)0X87a6),
+ OutputTextureCoord10Ext = ((int)0X87a7),
+ OutputTextureCoord11Ext = ((int)0X87a8),
+ OutputTextureCoord12Ext = ((int)0X87a9),
+ OutputTextureCoord13Ext = ((int)0X87aa),
+ OutputTextureCoord14Ext = ((int)0X87ab),
+ OutputTextureCoord15Ext = ((int)0X87ac),
+ OutputTextureCoord16Ext = ((int)0X87ad),
+ OutputTextureCoord17Ext = ((int)0X87ae),
+ OutputTextureCoord18Ext = ((int)0X87af),
+ OutputTextureCoord19Ext = ((int)0X87b0),
+ OutputTextureCoord20Ext = ((int)0X87b1),
+ OutputTextureCoord21Ext = ((int)0X87b2),
+ OutputTextureCoord22Ext = ((int)0X87b3),
+ OutputTextureCoord23Ext = ((int)0X87b4),
+ OutputTextureCoord24Ext = ((int)0X87b5),
+ OutputTextureCoord25Ext = ((int)0X87b6),
+ OutputTextureCoord26Ext = ((int)0X87b7),
+ OutputTextureCoord27Ext = ((int)0X87b8),
+ OutputTextureCoord28Ext = ((int)0X87b9),
+ OutputTextureCoord29Ext = ((int)0X87ba),
+ OutputTextureCoord30Ext = ((int)0X87bb),
+ OutputTextureCoord31Ext = ((int)0X87bc),
+ OutputFogExt = ((int)0X87bd),
+ ScalarExt = ((int)0X87be),
+ VectorExt = ((int)0X87bf),
+ MatrixExt = ((int)0X87c0),
+ VariantExt = ((int)0X87c1),
+ InvariantExt = ((int)0X87c2),
+ LocalConstantExt = ((int)0X87c3),
+ LocalExt = ((int)0X87c4),
+ MaxVertexShaderInstructionsExt = ((int)0X87c5),
+ MaxVertexShaderVariantsExt = ((int)0X87c6),
+ MaxVertexShaderInvariantsExt = ((int)0X87c7),
+ MaxVertexShaderLocalConstantsExt = ((int)0X87c8),
+ MaxVertexShaderLocalsExt = ((int)0X87c9),
+ MaxOptimizedVertexShaderInstructionsExt = ((int)0X87ca),
+ MaxOptimizedVertexShaderVariantsExt = ((int)0X87cb),
+ MaxOptimizedVertexShaderLocalConstantsExt = ((int)0X87cc),
+ MaxOptimizedVertexShaderInvariantsExt = ((int)0X87cd),
+ MaxOptimizedVertexShaderLocalsExt = ((int)0X87ce),
+ VertexShaderInstructionsExt = ((int)0X87cf),
+ VertexShaderVariantsExt = ((int)0X87d0),
+ VertexShaderInvariantsExt = ((int)0X87d1),
+ VertexShaderLocalConstantsExt = ((int)0X87d2),
+ VertexShaderLocalsExt = ((int)0X87d3),
+ VertexShaderOptimizedExt = ((int)0X87d4),
+ XExt = ((int)0X87d5),
+ YExt = ((int)0X87d6),
+ ZExt = ((int)0X87d7),
+ WExt = ((int)0X87d8),
+ NegativeXExt = ((int)0X87d9),
+ NegativeYExt = ((int)0X87da),
+ NegativeZExt = ((int)0X87db),
+ NegativeWExt = ((int)0X87dc),
+ ZeroExt = ((int)0X87dd),
+ OneExt = ((int)0X87de),
+ NegativeOneExt = ((int)0X87df),
+ NormalizedRangeExt = ((int)0X87e0),
+ FullRangeExt = ((int)0X87e1),
+ CurrentVertexExt = ((int)0X87e2),
+ MvpMatrixExt = ((int)0X87e3),
+ VariantValueExt = ((int)0X87e4),
+ VariantDatatypeExt = ((int)0X87e5),
+ VariantArrayStrideExt = ((int)0X87e6),
+ VariantArrayTypeExt = ((int)0X87e7),
+ VariantArrayExt = ((int)0X87e8),
+ VariantArrayPointerExt = ((int)0X87e9),
+ InvariantValueExt = ((int)0X87ea),
+ InvariantDatatypeExt = ((int)0X87eb),
+ LocalConstantValueExt = ((int)0X87ec),
+ LocalConstantDatatypeExt = ((int)0X87ed),
+ PnTrianglesAti = ((int)0X87f0),
+ MaxPnTrianglesTesselationLevelAti = ((int)0X87f1),
+ PnTrianglesPointModeAti = ((int)0X87f2),
+ PnTrianglesNormalModeAti = ((int)0X87f3),
+ PnTrianglesTesselationLevelAti = ((int)0X87f4),
+ PnTrianglesPointModeLinearAti = ((int)0X87f5),
+ PnTrianglesPointModeCubicAti = ((int)0X87f6),
+ PnTrianglesNormalModeLinearAti = ((int)0X87f7),
+ PnTrianglesNormalModeQuadraticAti = ((int)0X87f8),
+ StencilBackFunc = ((int)0X8800),
+ StencilBackFuncAti = ((int)0X8800),
+ StencilBackFail = ((int)0X8801),
+ StencilBackFailAti = ((int)0X8801),
+ StencilBackPassDepthFail = ((int)0X8802),
+ StencilBackPassDepthFailAti = ((int)0X8802),
+ StencilBackPassDepthPass = ((int)0X8803),
+ StencilBackPassDepthPassAti = ((int)0X8803),
+ FragmentProgram = ((int)0X8804),
+ ProgramAluInstructionsArb = ((int)0X8805),
+ ProgramTexInstructionsArb = ((int)0X8806),
+ ProgramTexIndirectionsArb = ((int)0X8807),
+ ProgramNativeAluInstructionsArb = ((int)0X8808),
+ ProgramNativeTexInstructionsArb = ((int)0X8809),
+ ProgramNativeTexIndirectionsArb = ((int)0X880a),
+ MaxProgramAluInstructionsArb = ((int)0X880b),
+ MaxProgramTexInstructionsArb = ((int)0X880c),
+ MaxProgramTexIndirectionsArb = ((int)0X880d),
+ MaxProgramNativeAluInstructionsArb = ((int)0X880e),
+ MaxProgramNativeTexInstructionsArb = ((int)0X880f),
+ MaxProgramNativeTexIndirectionsArb = ((int)0X8810),
+ Rgba32f = ((int)0X8814),
+ Rgba32fArb = ((int)0X8814),
+ RgbaFloat32Ati = ((int)0X8814),
+ Rgb32f = ((int)0X8815),
+ Rgb32fArb = ((int)0X8815),
+ RgbFloat32Ati = ((int)0X8815),
+ Alpha32fArb = ((int)0X8816),
+ AlphaFloat32Ati = ((int)0X8816),
+ Intensity32fArb = ((int)0X8817),
+ IntensityFloat32Ati = ((int)0X8817),
+ Luminance32fArb = ((int)0X8818),
+ LuminanceFloat32Ati = ((int)0X8818),
+ LuminanceAlpha32fArb = ((int)0X8819),
+ LuminanceAlphaFloat32Ati = ((int)0X8819),
+ Rgba16f = ((int)0X881a),
+ Rgba16fArb = ((int)0X881a),
+ RgbaFloat16Ati = ((int)0X881a),
+ Rgb16f = ((int)0X881b),
+ Rgb16fArb = ((int)0X881b),
+ RgbFloat16Ati = ((int)0X881b),
+ Alpha16fArb = ((int)0X881c),
+ AlphaFloat16Ati = ((int)0X881c),
+ Intensity16fArb = ((int)0X881d),
+ IntensityFloat16Ati = ((int)0X881d),
+ Luminance16fArb = ((int)0X881e),
+ LuminanceFloat16Ati = ((int)0X881e),
+ LuminanceAlpha16fArb = ((int)0X881f),
+ LuminanceAlphaFloat16Ati = ((int)0X881f),
+ RgbaFloatMode = ((int)0X8820),
+ RgbaFloatModeArb = ((int)0X8820),
+ TypeRgbaFloatAti = ((int)0X8820),
+ MaxDrawBuffers = ((int)0X8824),
+ MaxDrawBuffersArb = ((int)0X8824),
+ MaxDrawBuffersAti = ((int)0X8824),
+ DrawBuffer0 = ((int)0X8825),
+ DrawBuffer0Arb = ((int)0X8825),
+ DrawBuffer0Ati = ((int)0X8825),
+ DrawBuffer1 = ((int)0X8826),
+ DrawBuffer1Arb = ((int)0X8826),
+ DrawBuffer1Ati = ((int)0X8826),
+ DrawBuffer2 = ((int)0X8827),
+ DrawBuffer2Arb = ((int)0X8827),
+ DrawBuffer2Ati = ((int)0X8827),
+ DrawBuffer3 = ((int)0X8828),
+ DrawBuffer3Arb = ((int)0X8828),
+ DrawBuffer3Ati = ((int)0X8828),
+ DrawBuffer4 = ((int)0X8829),
+ DrawBuffer4Arb = ((int)0X8829),
+ DrawBuffer4Ati = ((int)0X8829),
+ DrawBuffer5 = ((int)0X882a),
+ DrawBuffer5Arb = ((int)0X882a),
+ DrawBuffer5Ati = ((int)0X882a),
+ DrawBuffer6 = ((int)0X882b),
+ DrawBuffer6Arb = ((int)0X882b),
+ DrawBuffer6Ati = ((int)0X882b),
+ DrawBuffer7 = ((int)0X882c),
+ DrawBuffer7Arb = ((int)0X882c),
+ DrawBuffer7Ati = ((int)0X882c),
+ DrawBuffer8 = ((int)0X882d),
+ DrawBuffer8Arb = ((int)0X882d),
+ DrawBuffer8Ati = ((int)0X882d),
+ DrawBuffer9 = ((int)0X882e),
+ DrawBuffer9Arb = ((int)0X882e),
+ DrawBuffer9Ati = ((int)0X882e),
+ DrawBuffer10 = ((int)0X882f),
+ DrawBuffer10Arb = ((int)0X882f),
+ DrawBuffer10Ati = ((int)0X882f),
+ DrawBuffer11 = ((int)0X8830),
+ DrawBuffer11Arb = ((int)0X8830),
+ DrawBuffer11Ati = ((int)0X8830),
+ DrawBuffer12 = ((int)0X8831),
+ DrawBuffer12Arb = ((int)0X8831),
+ DrawBuffer12Ati = ((int)0X8831),
+ DrawBuffer13 = ((int)0X8832),
+ DrawBuffer13Arb = ((int)0X8832),
+ DrawBuffer13Ati = ((int)0X8832),
+ DrawBuffer14 = ((int)0X8833),
+ DrawBuffer14Arb = ((int)0X8833),
+ DrawBuffer14Ati = ((int)0X8833),
+ DrawBuffer15 = ((int)0X8834),
+ DrawBuffer15Arb = ((int)0X8834),
+ DrawBuffer15Ati = ((int)0X8834),
+ ColorClearUnclampedValueAti = ((int)0X8835),
+ BlendEquationAlpha = ((int)0X883d),
+ BlendEquationAlphaExt = ((int)0X883d),
+ MatrixPaletteArb = ((int)0X8840),
+ MaxMatrixPaletteStackDepthArb = ((int)0X8841),
+ MaxPaletteMatricesArb = ((int)0X8842),
+ CurrentPaletteMatrixArb = ((int)0X8843),
+ MatrixIndexArrayArb = ((int)0X8844),
+ CurrentMatrixIndexArb = ((int)0X8845),
+ MatrixIndexArraySizeArb = ((int)0X8846),
+ MatrixIndexArrayTypeArb = ((int)0X8847),
+ MatrixIndexArrayStrideArb = ((int)0X8848),
+ MatrixIndexArrayPointerArb = ((int)0X8849),
+ TextureDepthSize = ((int)0X884a),
+ TextureDepthSizeArb = ((int)0X884a),
+ DepthTextureMode = ((int)0X884b),
+ DepthTextureModeArb = ((int)0X884b),
+ TextureCompareMode = ((int)0X884c),
+ TextureCompareModeArb = ((int)0X884c),
+ TextureCompareFunc = ((int)0X884d),
+ TextureCompareFuncArb = ((int)0X884d),
+ CompareRefDepthToTextureExt = ((int)0X884e),
+ CompareRefToTexture = ((int)0X884e),
+ CompareRToTexture = ((int)0X884e),
+ CompareRToTextureArb = ((int)0X884e),
+ OffsetProjectiveTexture2DNv = ((int)0X8850),
+ OffsetProjectiveTexture2DScaleNv = ((int)0X8851),
+ OffsetProjectiveTextureRectangleNv = ((int)0X8852),
+ OffsetProjectiveTextureRectangleScaleNv = ((int)0X8853),
+ OffsetHiloTexture2DNv = ((int)0X8854),
+ OffsetHiloTextureRectangleNv = ((int)0X8855),
+ OffsetHiloProjectiveTexture2DNv = ((int)0X8856),
+ OffsetHiloProjectiveTextureRectangleNv = ((int)0X8857),
+ DependentHiloTexture2DNv = ((int)0X8858),
+ DependentRgbTexture3DNv = ((int)0X8859),
+ DependentRgbTextureCubeMapNv = ((int)0X885a),
+ DotProductPassThroughNv = ((int)0X885b),
+ DotProductTexture1DNv = ((int)0X885c),
+ DotProductAffineDepthReplaceNv = ((int)0X885d),
+ Hilo8Nv = ((int)0X885e),
+ SignedHilo8Nv = ((int)0X885f),
+ ForceBlueToOneNv = ((int)0X8860),
+ PointSprite = ((int)0X8861),
+ PointSpriteArb = ((int)0X8861),
+ PointSpriteNv = ((int)0X8861),
+ CoordReplace = ((int)0X8862),
+ CoordReplaceArb = ((int)0X8862),
+ CoordReplaceNv = ((int)0X8862),
+ PointSpriteRModeNv = ((int)0X8863),
+ PixelCounterBitsNv = ((int)0X8864),
+ QueryCounterBits = ((int)0X8864),
+ QueryCounterBitsArb = ((int)0X8864),
+ CurrentOcclusionQueryIdNv = ((int)0X8865),
+ CurrentQuery = ((int)0X8865),
+ CurrentQueryArb = ((int)0X8865),
+ PixelCountNv = ((int)0X8866),
+ QueryResult = ((int)0X8866),
+ QueryResultArb = ((int)0X8866),
+ PixelCountAvailableNv = ((int)0X8867),
+ QueryResultAvailable = ((int)0X8867),
+ QueryResultAvailableArb = ((int)0X8867),
+ MaxFragmentProgramLocalParametersNv = ((int)0X8868),
+ MaxVertexAttribs = ((int)0X8869),
+ MaxVertexAttribsArb = ((int)0X8869),
+ ArrayNormalized = ((int)0X886a),
+ DepthStencilToRgbaNv = ((int)0X886e),
+ DepthStencilToBgraNv = ((int)0X886f),
+ FragmentProgramNv = ((int)0X8870),
+ MaxTextureCoords = ((int)0X8871),
+ MaxTextureCoordsArb = ((int)0X8871),
+ MaxTextureCoordsNv = ((int)0X8871),
+ MaxTextureImageUnits = ((int)0X8872),
+ MaxTextureImageUnitsArb = ((int)0X8872),
+ MaxTextureImageUnitsNv = ((int)0X8872),
+ FragmentProgramBindingNv = ((int)0X8873),
+ ProgramErrorStringArb = ((int)0X8874),
+ ProgramErrorStringNv = ((int)0X8874),
+ ProgramFormatAsciiArb = ((int)0X8875),
+ ProgramFormat = ((int)0X8876),
+ WritePixelDataRangeNv = ((int)0X8878),
+ ReadPixelDataRangeNv = ((int)0X8879),
+ WritePixelDataRangeLengthNv = ((int)0X887a),
+ ReadPixelDataRangeLengthNv = ((int)0X887b),
+ WritePixelDataRangePointerNv = ((int)0X887c),
+ ReadPixelDataRangePointerNv = ((int)0X887d),
+ FloatRNv = ((int)0X8880),
+ FloatRgNv = ((int)0X8881),
+ FloatRgbNv = ((int)0X8882),
+ FloatRgbaNv = ((int)0X8883),
+ FloatR16Nv = ((int)0X8884),
+ FloatR32Nv = ((int)0X8885),
+ FloatRg16Nv = ((int)0X8886),
+ FloatRg32Nv = ((int)0X8887),
+ FloatRgb16Nv = ((int)0X8888),
+ FloatRgb32Nv = ((int)0X8889),
+ FloatRgba16Nv = ((int)0X888a),
+ FloatRgba32Nv = ((int)0X888b),
+ TextureFloatComponentsNv = ((int)0X888c),
+ FloatClearColorValueNv = ((int)0X888d),
+ FloatRgbaModeNv = ((int)0X888e),
+ TextureUnsignedRemapModeNv = ((int)0X888f),
+ DepthBoundsTestExt = ((int)0X8890),
+ DepthBoundsExt = ((int)0X8891),
+ ArrayBuffer = ((int)0X8892),
+ ArrayBufferArb = ((int)0X8892),
+ ElementArrayBuffer = ((int)0X8893),
+ ElementArrayBufferArb = ((int)0X8893),
+ ArrayBufferBinding = ((int)0X8894),
+ ArrayBufferBindingArb = ((int)0X8894),
+ ElementArrayBufferBinding = ((int)0X8895),
+ ElementArrayBufferBindingArb = ((int)0X8895),
+ VertexArrayBufferBinding = ((int)0X8896),
+ VertexArrayBufferBindingArb = ((int)0X8896),
+ NormalArrayBufferBinding = ((int)0X8897),
+ NormalArrayBufferBindingArb = ((int)0X8897),
+ ColorArrayBufferBinding = ((int)0X8898),
+ ColorArrayBufferBindingArb = ((int)0X8898),
+ IndexArrayBufferBinding = ((int)0X8899),
+ IndexArrayBufferBindingArb = ((int)0X8899),
+ TextureCoordArrayBufferBinding = ((int)0X889a),
+ TextureCoordArrayBufferBindingArb = ((int)0X889a),
+ EdgeFlagArrayBufferBinding = ((int)0X889b),
+ EdgeFlagArrayBufferBindingArb = ((int)0X889b),
+ SecondaryColorArrayBufferBinding = ((int)0X889c),
+ SecondaryColorArrayBufferBindingArb = ((int)0X889c),
+ FogCoordArrayBufferBinding = ((int)0X889d),
+ FogCoordinateArrayBufferBindingArb = ((int)0X889d),
+ WeightArrayBufferBinding = ((int)0X889e),
+ WeightArrayBufferBindingArb = ((int)0X889e),
+ VertexAttribArrayBufferBinding = ((int)0X889f),
+ VertexAttribArrayBufferBindingArb = ((int)0X889f),
+ ProgramInstruction = ((int)0X88a0),
+ MaxProgramInstructions = ((int)0X88a1),
+ ProgramNativeInstructions = ((int)0X88a2),
+ MaxProgramNativeInstructions = ((int)0X88a3),
+ ProgramTemporaries = ((int)0X88a4),
+ MaxProgramTemporaries = ((int)0X88a5),
+ ProgramNativeTemporaries = ((int)0X88a6),
+ MaxProgramNativeTemporaries = ((int)0X88a7),
+ ProgramParameters = ((int)0X88a8),
+ MaxProgramParameters = ((int)0X88a9),
+ ProgramNativeParameters = ((int)0X88aa),
+ MaxProgramNativeParameters = ((int)0X88ab),
+ ProgramAttribs = ((int)0X88ac),
+ MaxProgramAttribs = ((int)0X88ad),
+ ProgramNativeAttribs = ((int)0X88ae),
+ MaxProgramNativeAttribs = ((int)0X88af),
+ ProgramAddressRegisters = ((int)0X88b0),
+ MaxProgramAddressRegisters = ((int)0X88b1),
+ ProgramNativeAddressRegisters = ((int)0X88b2),
+ MaxProgramNativeAddressRegisters = ((int)0X88b3),
+ MaxProgramLocalParameters = ((int)0X88b4),
+ MaxProgramEnvParameters = ((int)0X88b5),
+ ProgramUnderNativeLimits = ((int)0X88b6),
+ TransposeCurrentMatrixArb = ((int)0X88b7),
+ ReadOnly = ((int)0X88b8),
+ ReadOnlyArb = ((int)0X88b8),
+ WriteOnly = ((int)0X88b9),
+ WriteOnlyArb = ((int)0X88b9),
+ ReadWrite = ((int)0X88ba),
+ ReadWriteArb = ((int)0X88ba),
+ BufferAccess = ((int)0X88bb),
+ BufferAccessArb = ((int)0X88bb),
+ BufferMapped = ((int)0X88bc),
+ BufferMappedArb = ((int)0X88bc),
+ BufferMapPointer = ((int)0X88bd),
+ BufferMapPointerArb = ((int)0X88bd),
+ TimeElapsedExt = ((int)0X88bf),
Matrix0 = ((int)0X88c0),
Matrix1 = ((int)0X88c1),
+ Matrix2 = ((int)0X88c2),
+ Matrix3 = ((int)0X88c3),
+ Matrix4 = ((int)0X88c4),
+ Matrix5 = ((int)0X88c5),
Matrix6 = ((int)0X88c6),
Matrix7 = ((int)0X88c7),
- BlueIntegerExt = ((int)0X8d96),
- Matrix5 = ((int)0X88c5),
- UnsignedShort88RevMesa = ((int)0X85bb),
- MaxProgramNativeInstructions = ((int)0X88a3),
- QuadStrip = ((int)0X0008),
- DepthComponent24 = ((int)0X81a6),
- ClientActiveTextureArb = ((int)0X84e1),
- SharedTexturePaletteExt = ((int)0X81fb),
- NormalMap = ((int)0X8511),
- DependentRgbTextureCubeMapNv = ((int)0X885a),
- ImageTranslateXHp = ((int)0X8157),
- FramebufferAttachmentTextureLevelExt = ((int)0X8cd2),
- DepthFunc = ((int)0X0b74),
- Front = ((int)0X0404),
- Intensity8iExt = ((int)0X8d91),
- V3f = ((int)0X2a21),
- UnsignedShort4444Rev = ((int)0X8365),
- Map2VertexAttrib134Nv = ((int)0X867d),
- Dot3RgbArb = ((int)0X86ae),
- PolygonOffsetExt = ((int)0X8037),
- Operand3RgbNv = ((int)0X8593),
- DrawBuffer6Arb = ((int)0X882b),
- AuxBuffers = ((int)0X0c00),
- Gl3DColor = ((int)0X0602),
- CompressedRedGreenRgtc2Ext = ((int)0X8dbd),
- GreenBitAti = ((int)0X00000002),
- FragmentProgramBindingNv = ((int)0X8873),
- PackResampleSgix = ((int)0X842c),
- Source0Rgb = ((int)0X8580),
- Map2Color4 = ((int)0X0db0),
- SpriteAxialSgix = ((int)0X814c),
- BufferMapPointer = ((int)0X88bd),
- VertexStream6Ati = ((int)0X8772),
- ClientAttribStackDepth = ((int)0X0bb1),
- ObjectCompileStatusArb = ((int)0X8b81),
- TextureBindingRectangleNv = ((int)0X84f6),
- MaxActiveLightsSgix = ((int)0X8405),
- DsBiasNv = ((int)0X8716),
- VertexProgramParameterBufferNv = ((int)0X8da2),
- VariableCNv = ((int)0X8525),
- SampleMaskExt = ((int)0X80a0),
- FuncAddExt = ((int)0X8006),
- MaxVertexShaderLocalsExt = ((int)0X87c9),
- Gl4Pass3Sgis = ((int)0X80a7),
- MultisampleFilterHintNv = ((int)0X8534),
- TransformHintApple = ((int)0X85b1),
- Depth32fStencil8Nv = ((int)0X8dac),
- PostColorMatrixGreenBias = ((int)0X80b9),
- FloatRgb32Nv = ((int)0X8889),
- PackSkipRows = ((int)0X0d03),
- DepthBufferFloatModeNv = ((int)0X8daf),
- PackResampleOml = ((int)0X8984),
- PixelMapIToISize = ((int)0X0cb0),
- FogCoordinateArrayBufferBindingArb = ((int)0X889d),
- LinearMipmapNearest = ((int)0X2701),
- FogBit = ((int)0X00000080),
- TextureCoordArrayTypeExt = ((int)0X8089),
- R5G6B5A8IccSgix = ((int)0X8467),
- Con28Ati = ((int)0X895d),
- ProgramBinding = ((int)0X8677),
- DepthComponent32fNv = ((int)0X8dab),
- Rgba8Ext = ((int)0X8058),
- Modelview30Arb = ((int)0X873e),
- Minmax = ((int)0X802e),
- EdgeFlagArrayBufferBinding = ((int)0X889b),
- Con9Ati = ((int)0X894a),
- DynamicDraw = ((int)0X88e8),
- EvalVertexAttrib7Nv = ((int)0X86cd),
- AsyncTexImageSgix = ((int)0X835c),
- Reg6Ati = ((int)0X8927),
- SamplerCubeShadowExt = ((int)0X8dc5),
- Previous = ((int)0X8578),
- MinmaxSinkExt = ((int)0X8030),
- Equal = ((int)0X0202),
- VariableENv = ((int)0X8527),
- SpotExponent = ((int)0X1205),
- Operand0AlphaExt = ((int)0X8598),
- IndexArrayListIbm = ((int)103073),
- MaxGeneralCombinersNv = ((int)0X854d),
- DynamicAti = ((int)0X8761),
- Rgb16uiExt = ((int)0X8d77),
- VertexArrayRangeWithoutFlushNv = ((int)0X8533),
- MaxConvolutionWidth = ((int)0X801a),
- PixelTileBestAlignmentSgix = ((int)0X813e),
- BufferMapped = ((int)0X88bc),
- VertexStream3Ati = ((int)0X876f),
- BitmapToken = ((int)0X0704),
- TextureClipmapOffsetSgix = ((int)0X8173),
- HistogramSink = ((int)0X802d),
- ProxyPostColorMatrixColorTable = ((int)0X80d5),
- BufferMappedArb = ((int)0X88bc),
- TextureDepthExt = ((int)0X8071),
- PixelFragmentRgbSourceSgis = ((int)0X8354),
- EvalVertexAttrib11Nv = ((int)0X86d1),
- ShadeModel = ((int)0X0b54),
- FogOffsetSgix = ((int)0X8198),
- VariableFNv = ((int)0X8528),
- PointSizeRange = ((int)0X0b12),
- DrawBuffer12Ati = ((int)0X8831),
- FramebufferIncompleteLayerCountExt = ((int)0X8da9),
- Gl4DColorTexture = ((int)0X0604),
+ Matrix8 = ((int)0X88c8),
+ Matrix9 = ((int)0X88c9),
+ Matrix10 = ((int)0X88ca),
+ Matrix11 = ((int)0X88cb),
+ Matrix12 = ((int)0X88cc),
+ Matrix13 = ((int)0X88cd),
+ Matrix14 = ((int)0X88ce),
+ Matrix15 = ((int)0X88cf),
+ Matrix16 = ((int)0X88d0),
+ Matrix17 = ((int)0X88d1),
+ Matrix18 = ((int)0X88d2),
+ Matrix19 = ((int)0X88d3),
+ Matrix20 = ((int)0X88d4),
+ Matrix21 = ((int)0X88d5),
+ Matrix22 = ((int)0X88d6),
+ Matrix23 = ((int)0X88d7),
+ Matrix24 = ((int)0X88d8),
+ Matrix25 = ((int)0X88d9),
Matrix26 = ((int)0X88da),
- LinesAdjacencyExt = ((int)0X000a),
- Map1GridDomain = ((int)0X0dd0),
- ConstantColor0Nv = ((int)0X852a),
- MaxProgramNativeTexInstructionsArb = ((int)0X880f),
- PixelCounterBitsNv = ((int)0X8864),
- OpCrossProductExt = ((int)0X8797),
- FragmentNormalExt = ((int)0X834a),
- TransformFeedbackBufferModeNv = ((int)0X8c7f),
- FragmentProgramParameterBufferNv = ((int)0X8da4),
- VariableGNv = ((int)0X8529),
- VertexArrayStrideExt = ((int)0X807c),
- ProgramTemporaries = ((int)0X88a4),
- MapAttribVOrderNv = ((int)0X86c4),
- TextureCubeMapPositiveXArb = ((int)0X8515),
- VertexAttribArray10Nv = ((int)0X865a),
- TextureCompareFailValueArb = ((int)0X80bf),
- UnpackSkipVolumesSgis = ((int)0X8132),
- PixelTexGenAlphaReplaceSgix = ((int)0X8187),
- VertexStream5Ati = ((int)0X8771),
- QuadTextureSelectSgis = ((int)0X8125),
- PreferDoublebufferHintPgi = ((int)0X1a1f8),
- TextureDeformationSgix = ((int)0X8195),
- ConvolutionFilterBiasExt = ((int)0X8015),
- ClampVertexColorArb = ((int)0X891a),
- Modelview11Arb = ((int)0X872b),
- IntensityIccSgix = ((int)0X8464),
- EdgeFlagArrayListIbm = ((int)103075),
- AverageHp = ((int)0X8160),
- PixelPackBufferBindingArb = ((int)0X88ed),
- Depth = ((int)0X1801),
- VertexStream0Ati = ((int)0X876c),
- PostConvolutionGreenScaleExt = ((int)0X801d),
- Map2VertexAttrib64Nv = ((int)0X8676),
- MatrixIndexArrayArb = ((int)0X8844),
- TextureCoordArrayStrideExt = ((int)0X808a),
- MaxGeometryVaryingComponentsExt = ((int)0X8ddd),
- ProxyTexture1DExt = ((int)0X8063),
- LinearDetailSgis = ((int)0X8097),
- LuminanceAlphaIccSgix = ((int)0X8465),
- RgbS3tc = ((int)0X83a0),
- TextureCubeMapNegativeX = ((int)0X8516),
- Operand0RgbArb = ((int)0X8590),
- TextureCubeMapNegativeZ = ((int)0X851a),
- BlendDst = ((int)0X0be0),
- FragmentColorMaterialFaceSgix = ((int)0X8402),
- ReadOnly = ((int)0X88b8),
- ConvolutionWidthExt = ((int)0X8018),
- DrawBuffer11Ati = ((int)0X8830),
- IgnoreBorderHp = ((int)0X8150),
- CombinerAbDotProductNv = ((int)0X8545),
- PolygonOffsetUnits = ((int)0X2a00),
- ColorAttachment10Ext = ((int)0X8cea),
- Modelview1StackDepthExt = ((int)0X8502),
- TextureCubeMapPositiveZArb = ((int)0X8519),
- FramebufferAttachmentTextureLayerExt = ((int)0X8cd4),
- TextureResident = ((int)0X8067),
- WeightArrayArb = ((int)0X86ad),
- Rgba8 = ((int)0X8058),
- HistogramGreenSizeExt = ((int)0X8029),
+ Matrix27 = ((int)0X88db),
+ Matrix28 = ((int)0X88dc),
+ Matrix29 = ((int)0X88dd),
+ Matrix30 = ((int)0X88de),
+ Matrix31 = ((int)0X88df),
+ StreamDraw = ((int)0X88e0),
+ StreamDrawArb = ((int)0X88e0),
+ StreamRead = ((int)0X88e1),
+ StreamReadArb = ((int)0X88e1),
+ StreamCopy = ((int)0X88e2),
+ StreamCopyArb = ((int)0X88e2),
+ StaticDraw = ((int)0X88e4),
+ StaticDrawArb = ((int)0X88e4),
+ StaticRead = ((int)0X88e5),
+ StaticReadArb = ((int)0X88e5),
+ StaticCopy = ((int)0X88e6),
+ StaticCopyArb = ((int)0X88e6),
+ DynamicDraw = ((int)0X88e8),
+ DynamicDrawArb = ((int)0X88e8),
+ DynamicRead = ((int)0X88e9),
+ DynamicReadArb = ((int)0X88e9),
+ DynamicCopy = ((int)0X88ea),
+ DynamicCopyArb = ((int)0X88ea),
+ PixelPackBuffer = ((int)0X88eb),
+ PixelPackBufferArb = ((int)0X88eb),
+ PixelPackBufferExt = ((int)0X88eb),
PixelUnpackBuffer = ((int)0X88ec),
- VertexStream7Ati = ((int)0X8773),
- Rgba2 = ((int)0X8055),
- Gl4Pass2Sgis = ((int)0X80a6),
- StencilRef = ((int)0X0b97),
+ PixelUnpackBufferArb = ((int)0X88ec),
+ PixelUnpackBufferExt = ((int)0X88ec),
+ PixelPackBufferBinding = ((int)0X88ed),
+ PixelPackBufferBindingArb = ((int)0X88ed),
+ PixelPackBufferBindingExt = ((int)0X88ed),
+ PixelUnpackBufferBinding = ((int)0X88ef),
+ PixelUnpackBufferBindingArb = ((int)0X88ef),
+ PixelUnpackBufferBindingExt = ((int)0X88ef),
+ Depth24Stencil8 = ((int)0X88f0),
+ Depth24Stencil8Ext = ((int)0X88f0),
+ TextureStencilSize = ((int)0X88f1),
+ TextureStencilSizeExt = ((int)0X88f1),
+ StencilTagBitsExt = ((int)0X88f2),
+ StencilClearTagValueExt = ((int)0X88f3),
+ MaxProgramExecInstructionsNv = ((int)0X88f4),
+ MaxProgramCallDepthNv = ((int)0X88f5),
+ MaxProgramIfDepthNv = ((int)0X88f6),
+ MaxProgramLoopDepthNv = ((int)0X88f7),
+ MaxProgramLoopCountNv = ((int)0X88f8),
+ VertexAttribArrayInteger = ((int)0X88fd),
+ VertexAttribArrayIntegerNv = ((int)0X88fd),
+ MaxArrayTextureLayers = ((int)0X88ff),
+ MaxArrayTextureLayersExt = ((int)0X88ff),
+ MinProgramTexelOffset = ((int)0X8904),
+ MinProgramTexelOffsetNv = ((int)0X8904),
+ MaxProgramTexelOffset = ((int)0X8905),
+ MaxProgramTexelOffsetNv = ((int)0X8905),
+ ProgramAttribComponentsNv = ((int)0X8906),
+ ProgramResultComponentsNv = ((int)0X8907),
+ MaxProgramAttribComponentsNv = ((int)0X8908),
+ MaxProgramResultComponentsNv = ((int)0X8909),
+ StencilTestTwoSideExt = ((int)0X8910),
+ ActiveStencilFaceExt = ((int)0X8911),
+ MirrorClampToBorderExt = ((int)0X8912),
+ SamplesPassed = ((int)0X8914),
+ SamplesPassedArb = ((int)0X8914),
+ ClampVertexColor = ((int)0X891a),
+ ClampVertexColorArb = ((int)0X891a),
+ ClampFragmentColor = ((int)0X891b),
+ ClampFragmentColorArb = ((int)0X891b),
+ ClampReadColor = ((int)0X891c),
+ ClampReadColorArb = ((int)0X891c),
+ FixedOnly = ((int)0X891d),
+ FixedOnlyArb = ((int)0X891d),
+ FragmentShaderAti = ((int)0X8920),
+ Reg0Ati = ((int)0X8921),
+ Reg1Ati = ((int)0X8922),
+ Reg2Ati = ((int)0X8923),
+ Reg3Ati = ((int)0X8924),
+ Reg4Ati = ((int)0X8925),
+ Reg5Ati = ((int)0X8926),
+ Reg6Ati = ((int)0X8927),
+ Reg7Ati = ((int)0X8928),
+ Reg8Ati = ((int)0X8929),
+ Reg9Ati = ((int)0X892a),
+ Reg10Ati = ((int)0X892b),
+ Reg11Ati = ((int)0X892c),
+ Reg12Ati = ((int)0X892d),
+ Reg13Ati = ((int)0X892e),
+ Reg14Ati = ((int)0X892f),
+ Reg15Ati = ((int)0X8930),
+ Reg16Ati = ((int)0X8931),
+ Reg17Ati = ((int)0X8932),
+ Reg18Ati = ((int)0X8933),
+ Reg19Ati = ((int)0X8934),
+ Reg20Ati = ((int)0X8935),
+ Reg21Ati = ((int)0X8936),
+ Reg22Ati = ((int)0X8937),
+ Reg23Ati = ((int)0X8938),
+ Reg24Ati = ((int)0X8939),
+ Reg25Ati = ((int)0X893a),
+ Reg26Ati = ((int)0X893b),
+ Reg27Ati = ((int)0X893c),
+ Reg28Ati = ((int)0X893d),
+ Reg29Ati = ((int)0X893e),
+ Reg30Ati = ((int)0X893f),
+ Reg31Ati = ((int)0X8940),
+ Con0Ati = ((int)0X8941),
+ Con1Ati = ((int)0X8942),
+ Con2Ati = ((int)0X8943),
+ Con3Ati = ((int)0X8944),
+ Con4Ati = ((int)0X8945),
+ Con5Ati = ((int)0X8946),
+ Con6Ati = ((int)0X8947),
+ Con7Ati = ((int)0X8948),
+ Con8Ati = ((int)0X8949),
+ Con9Ati = ((int)0X894a),
+ Con10Ati = ((int)0X894b),
+ Con11Ati = ((int)0X894c),
+ Con12Ati = ((int)0X894d),
+ Con13Ati = ((int)0X894e),
+ Con14Ati = ((int)0X894f),
+ Con15Ati = ((int)0X8950),
+ Con16Ati = ((int)0X8951),
+ Con17Ati = ((int)0X8952),
+ Con18Ati = ((int)0X8953),
+ Con19Ati = ((int)0X8954),
+ Con20Ati = ((int)0X8955),
+ Con21Ati = ((int)0X8956),
+ Con22Ati = ((int)0X8957),
+ Con23Ati = ((int)0X8958),
+ Con24Ati = ((int)0X8959),
+ Con25Ati = ((int)0X895a),
+ Con26Ati = ((int)0X895b),
+ Con27Ati = ((int)0X895c),
+ Con28Ati = ((int)0X895d),
+ Con29Ati = ((int)0X895e),
+ Con30Ati = ((int)0X895f),
+ Con31Ati = ((int)0X8960),
+ MovAti = ((int)0X8961),
+ AddAti = ((int)0X8963),
+ MulAti = ((int)0X8964),
+ SubAti = ((int)0X8965),
+ Dot3Ati = ((int)0X8966),
+ Dot4Ati = ((int)0X8967),
+ MadAti = ((int)0X8968),
+ LerpAti = ((int)0X8969),
+ CndAti = ((int)0X896a),
+ Cnd0Ati = ((int)0X896b),
+ Dot2AddAti = ((int)0X896c),
+ SecondaryInterpolatorAti = ((int)0X896d),
+ NumFragmentRegistersAti = ((int)0X896e),
+ NumFragmentConstantsAti = ((int)0X896f),
+ NumPassesAti = ((int)0X8970),
+ NumInstructionsPerPassAti = ((int)0X8971),
+ NumInstructionsTotalAti = ((int)0X8972),
+ NumInputInterpolatorComponentsAti = ((int)0X8973),
+ NumLoopbackComponentsAti = ((int)0X8974),
+ ColorAlphaPairingAti = ((int)0X8975),
+ SwizzleStrAti = ((int)0X8976),
+ SwizzleStqAti = ((int)0X8977),
+ SwizzleStrDrAti = ((int)0X8978),
+ SwizzleStqDqAti = ((int)0X8979),
+ SwizzleStrqAti = ((int)0X897a),
+ SwizzleStrqDqAti = ((int)0X897b),
+ InterlaceOml = ((int)0X8980),
+ InterlaceReadOml = ((int)0X8981),
+ FormatSubsample2424Oml = ((int)0X8982),
+ FormatSubsample244244Oml = ((int)0X8983),
+ PackResampleOml = ((int)0X8984),
+ UnpackResampleOml = ((int)0X8985),
+ ResampleReplicateOml = ((int)0X8986),
+ ResampleZeroFillOml = ((int)0X8987),
+ ResampleAverageOml = ((int)0X8988),
+ ResampleDecimateOml = ((int)0X8989),
+ DrawPixelsApple = ((int)0X8a0a),
+ FenceApple = ((int)0X8a0b),
+ BufferSerializedModifyApple = ((int)0X8a12),
+ BufferFlushingUnmapApple = ((int)0X8a13),
+ FragmentShader = ((int)0X8b30),
+ FragmentShaderArb = ((int)0X8b30),
+ VertexShader = ((int)0X8b31),
+ VertexShaderArb = ((int)0X8b31),
+ ProgramObjectArb = ((int)0X8b40),
+ ShaderObjectArb = ((int)0X8b48),
+ MaxFragmentUniformComponents = ((int)0X8b49),
+ MaxFragmentUniformComponentsArb = ((int)0X8b49),
+ MaxVertexUniformComponents = ((int)0X8b4a),
+ MaxVertexUniformComponentsArb = ((int)0X8b4a),
+ MaxVaryingComponents = ((int)0X8b4b),
+ MaxVaryingComponentsExt = ((int)0X8b4b),
+ MaxVaryingFloats = ((int)0X8b4b),
+ MaxVaryingFloatsArb = ((int)0X8b4b),
+ MaxVertexTextureImageUnits = ((int)0X8b4c),
+ MaxVertexTextureImageUnitsArb = ((int)0X8b4c),
+ MaxCombinedTextureImageUnits = ((int)0X8b4d),
+ MaxCombinedTextureImageUnitsArb = ((int)0X8b4d),
+ ObjectTypeArb = ((int)0X8b4e),
+ ObjectSubtypeArb = ((int)0X8b4f),
+ ShaderType = ((int)0X8b4f),
+ FloatVec2 = ((int)0X8b50),
+ FloatVec2Arb = ((int)0X8b50),
+ FloatVec3 = ((int)0X8b51),
+ FloatVec3Arb = ((int)0X8b51),
+ FloatVec4 = ((int)0X8b52),
+ FloatVec4Arb = ((int)0X8b52),
+ IntVec2 = ((int)0X8b53),
+ IntVec2Arb = ((int)0X8b53),
+ IntVec3 = ((int)0X8b54),
+ IntVec3Arb = ((int)0X8b54),
+ IntVec4 = ((int)0X8b55),
+ IntVec4Arb = ((int)0X8b55),
+ Bool = ((int)0X8b56),
+ BoolArb = ((int)0X8b56),
+ BoolVec2 = ((int)0X8b57),
+ BoolVec2Arb = ((int)0X8b57),
+ BoolVec3 = ((int)0X8b58),
+ BoolVec3Arb = ((int)0X8b58),
+ BoolVec4 = ((int)0X8b59),
+ BoolVec4Arb = ((int)0X8b59),
+ FloatMat2 = ((int)0X8b5a),
+ FloatMat2Arb = ((int)0X8b5a),
+ FloatMat3 = ((int)0X8b5b),
+ FloatMat3Arb = ((int)0X8b5b),
+ FloatMat4 = ((int)0X8b5c),
+ FloatMat4Arb = ((int)0X8b5c),
+ Sampler1D = ((int)0X8b5d),
+ Sampler1DArb = ((int)0X8b5d),
+ Sampler2D = ((int)0X8b5e),
+ Sampler2DArb = ((int)0X8b5e),
+ Sampler3D = ((int)0X8b5f),
+ Sampler3DArb = ((int)0X8b5f),
+ SamplerCube = ((int)0X8b60),
+ SamplerCubeArb = ((int)0X8b60),
+ Sampler1DShadow = ((int)0X8b61),
+ Sampler1DShadowArb = ((int)0X8b61),
+ Sampler2DShadow = ((int)0X8b62),
+ Sampler2DShadowArb = ((int)0X8b62),
+ Sampler2DRectArb = ((int)0X8b63),
+ Sampler2DRectShadowArb = ((int)0X8b64),
+ FloatMat2x3 = ((int)0X8b65),
+ FloatMat2x4 = ((int)0X8b66),
+ FloatMat3x2 = ((int)0X8b67),
+ FloatMat3x4 = ((int)0X8b68),
+ FloatMat4x2 = ((int)0X8b69),
+ FloatMat4x3 = ((int)0X8b6a),
+ DeleteStatus = ((int)0X8b80),
+ ObjectDeleteStatusArb = ((int)0X8b80),
+ CompileStatus = ((int)0X8b81),
+ ObjectCompileStatusArb = ((int)0X8b81),
+ LinkStatus = ((int)0X8b82),
+ ObjectLinkStatusArb = ((int)0X8b82),
+ ObjectValidateStatusArb = ((int)0X8b83),
+ ValidateStatus = ((int)0X8b83),
+ InfoLogLength = ((int)0X8b84),
+ ObjectInfoLogLengthArb = ((int)0X8b84),
+ AttachedShaders = ((int)0X8b85),
+ ObjectAttachedObjectsArb = ((int)0X8b85),
+ ActiveUniforms = ((int)0X8b86),
+ ObjectActiveUniformsArb = ((int)0X8b86),
+ ActiveUniformMaxLength = ((int)0X8b87),
+ ObjectActiveUniformMaxLengthArb = ((int)0X8b87),
+ ObjectShaderSourceLengthArb = ((int)0X8b88),
+ ShaderSourceLength = ((int)0X8b88),
+ ActiveAttributes = ((int)0X8b89),
+ ObjectActiveAttributesArb = ((int)0X8b89),
+ ActiveAttributeMaxLength = ((int)0X8b8a),
+ ObjectActiveAttributeMaxLengthArb = ((int)0X8b8a),
+ FragmentShaderDerivativeHint = ((int)0X8b8b),
+ FragmentShaderDerivativeHintArb = ((int)0X8b8b),
+ ShadingLanguageVersion = ((int)0X8b8c),
+ ShadingLanguageVersionArb = ((int)0X8b8c),
+ CurrentProgram = ((int)0X8b8d),
+ ImplementationColorReadTypeOes = ((int)0X8b9a),
+ ImplementationColorReadFormatOes = ((int)0X8b9b),
+ TextureRedType = ((int)0X8c10),
+ TextureRedTypeArb = ((int)0X8c10),
+ TextureGreenType = ((int)0X8c11),
+ TextureGreenTypeArb = ((int)0X8c11),
+ TextureBlueType = ((int)0X8c12),
+ TextureBlueTypeArb = ((int)0X8c12),
+ TextureAlphaType = ((int)0X8c13),
+ TextureAlphaTypeArb = ((int)0X8c13),
+ TextureLuminanceType = ((int)0X8c14),
+ TextureLuminanceTypeArb = ((int)0X8c14),
+ TextureIntensityType = ((int)0X8c15),
+ TextureIntensityTypeArb = ((int)0X8c15),
+ TextureDepthType = ((int)0X8c16),
+ TextureDepthTypeArb = ((int)0X8c16),
+ UnsignedNormalized = ((int)0X8c17),
+ UnsignedNormalizedArb = ((int)0X8c17),
+ Texture1DArray = ((int)0X8c18),
+ Texture1DArrayExt = ((int)0X8c18),
+ ProxyTexture1DArray = ((int)0X8c19),
+ ProxyTexture1DArrayExt = ((int)0X8c19),
+ Texture2DArray = ((int)0X8c1a),
+ Texture2DArrayExt = ((int)0X8c1a),
+ ProxyTexture2DArray = ((int)0X8c1b),
+ ProxyTexture2DArrayExt = ((int)0X8c1b),
+ TextureBinding1DArray = ((int)0X8c1c),
TextureBinding1DArrayExt = ((int)0X8c1c),
- DsdtMagIntensityNv = ((int)0X86dc),
- Combiner1Nv = ((int)0X8551),
- Rgba4 = ((int)0X8056),
- PostConvolutionGreenBias = ((int)0X8021),
- PolygonOffsetFactor = ((int)0X8038),
+ TextureBinding2DArray = ((int)0X8c1d),
+ TextureBinding2DArrayExt = ((int)0X8c1d),
+ GeometryProgramNv = ((int)0X8c26),
+ MaxProgramOutputVerticesNv = ((int)0X8c27),
+ MaxProgramTotalOutputComponentsNv = ((int)0X8c28),
+ MaxGeometryTextureImageUnitsArb = ((int)0X8c29),
+ MaxGeometryTextureImageUnitsExt = ((int)0X8c29),
+ TextureBufferArb = ((int)0X8c2a),
+ TextureBufferExt = ((int)0X8c2a),
+ MaxTextureBufferSizeArb = ((int)0X8c2b),
+ MaxTextureBufferSizeExt = ((int)0X8c2b),
+ TextureBindingBufferArb = ((int)0X8c2c),
+ TextureBindingBufferExt = ((int)0X8c2c),
+ TextureBufferDataStoreBindingArb = ((int)0X8c2d),
+ TextureBufferDataStoreBindingExt = ((int)0X8c2d),
+ TextureBufferFormatArb = ((int)0X8c2e),
+ TextureBufferFormatExt = ((int)0X8c2e),
+ R11fG11fB10f = ((int)0X8c3a),
+ R11fG11fB10fExt = ((int)0X8c3a),
+ UnsignedInt10F11F11FRev = ((int)0X8c3b),
+ UnsignedInt10F11F11FRevExt = ((int)0X8c3b),
+ RgbaSignedComponentsExt = ((int)0X8c3c),
+ Rgb9E5 = ((int)0X8c3d),
+ Rgb9E5Ext = ((int)0X8c3d),
+ UnsignedInt5999Rev = ((int)0X8c3e),
+ UnsignedInt5999RevExt = ((int)0X8c3e),
+ TextureSharedSize = ((int)0X8c3f),
+ TextureSharedSizeExt = ((int)0X8c3f),
+ Srgb = ((int)0X8c40),
+ SrgbExt = ((int)0X8c40),
+ Srgb8 = ((int)0X8c41),
+ Srgb8Ext = ((int)0X8c41),
+ SrgbAlpha = ((int)0X8c42),
+ SrgbAlphaExt = ((int)0X8c42),
+ Srgb8Alpha8 = ((int)0X8c43),
+ Srgb8Alpha8Ext = ((int)0X8c43),
+ SluminanceAlpha = ((int)0X8c44),
+ SluminanceAlphaExt = ((int)0X8c44),
+ Sluminance8Alpha8 = ((int)0X8c45),
+ Sluminance8Alpha8Ext = ((int)0X8c45),
+ Sluminance = ((int)0X8c46),
+ SluminanceExt = ((int)0X8c46),
+ Sluminance8 = ((int)0X8c47),
+ Sluminance8Ext = ((int)0X8c47),
+ CompressedSrgb = ((int)0X8c48),
+ CompressedSrgbExt = ((int)0X8c48),
+ CompressedSrgbAlpha = ((int)0X8c49),
+ CompressedSrgbAlphaExt = ((int)0X8c49),
+ CompressedSluminance = ((int)0X8c4a),
+ CompressedSluminanceExt = ((int)0X8c4a),
+ CompressedSluminanceAlpha = ((int)0X8c4b),
+ CompressedSluminanceAlphaExt = ((int)0X8c4b),
+ CompressedSrgbS3tcDxt1Ext = ((int)0X8c4c),
+ CompressedSrgbAlphaS3tcDxt1Ext = ((int)0X8c4d),
+ CompressedSrgbAlphaS3tcDxt3Ext = ((int)0X8c4e),
+ CompressedSrgbAlphaS3tcDxt5Ext = ((int)0X8c4f),
+ CompressedLuminanceLatc1Ext = ((int)0X8c70),
+ CompressedSignedLuminanceLatc1Ext = ((int)0X8c71),
+ CompressedLuminanceAlphaLatc2Ext = ((int)0X8c72),
+ CompressedSignedLuminanceAlphaLatc2Ext = ((int)0X8c73),
+ TransformFeedbackVaryingMaxLength = ((int)0X8c76),
+ TransformFeedbackVaryingMaxLengthExt = ((int)0X8c76),
+ BackPrimaryColorNv = ((int)0X8c77),
+ BackSecondaryColorNv = ((int)0X8c78),
+ TextureCoordNv = ((int)0X8c79),
+ ClipDistanceNv = ((int)0X8c7a),
+ VertexIdNv = ((int)0X8c7b),
+ PrimitiveIdNv = ((int)0X8c7c),
+ GenericAttribNv = ((int)0X8c7d),
+ TransformFeedbackAttribsNv = ((int)0X8c7e),
+ TransformFeedbackBufferMode = ((int)0X8c7f),
+ TransformFeedbackBufferModeExt = ((int)0X8c7f),
+ TransformFeedbackBufferModeNv = ((int)0X8c7f),
+ MaxTransformFeedbackSeparateComponents = ((int)0X8c80),
+ MaxTransformFeedbackSeparateComponentsExt = ((int)0X8c80),
+ MaxTransformFeedbackSeparateComponentsNv = ((int)0X8c80),
+ ActiveVaryingsNv = ((int)0X8c81),
+ ActiveVaryingMaxLengthNv = ((int)0X8c82),
+ TransformFeedbackVaryings = ((int)0X8c83),
+ TransformFeedbackVaryingsExt = ((int)0X8c83),
+ TransformFeedbackVaryingsNv = ((int)0X8c83),
+ TransformFeedbackBufferStart = ((int)0X8c84),
+ TransformFeedbackBufferStartExt = ((int)0X8c84),
+ TransformFeedbackBufferStartNv = ((int)0X8c84),
+ TransformFeedbackBufferSize = ((int)0X8c85),
+ TransformFeedbackBufferSizeExt = ((int)0X8c85),
+ TransformFeedbackBufferSizeNv = ((int)0X8c85),
+ TransformFeedbackRecordNv = ((int)0X8c86),
+ PrimitivesGenerated = ((int)0X8c87),
+ PrimitivesGeneratedExt = ((int)0X8c87),
+ PrimitivesGeneratedNv = ((int)0X8c87),
+ TransformFeedbackPrimitivesWritten = ((int)0X8c88),
+ TransformFeedbackPrimitivesWrittenExt = ((int)0X8c88),
+ TransformFeedbackPrimitivesWrittenNv = ((int)0X8c88),
+ RasterizerDiscard = ((int)0X8c89),
+ RasterizerDiscardExt = ((int)0X8c89),
+ RasterizerDiscardNv = ((int)0X8c89),
+ MaxTransformFeedbackInterleavedAttribsNv = ((int)0X8c8a),
+ MaxTransformFeedbackInterleavedComponents = ((int)0X8c8a),
+ MaxTransformFeedbackInterleavedComponentsExt = ((int)0X8c8a),
+ MaxTransformFeedbackSeparateAttribs = ((int)0X8c8b),
+ MaxTransformFeedbackSeparateAttribsExt = ((int)0X8c8b),
+ MaxTransformFeedbackSeparateAttribsNv = ((int)0X8c8b),
+ InterleavedAttribs = ((int)0X8c8c),
+ InterleavedAttribsExt = ((int)0X8c8c),
+ InterleavedAttribsNv = ((int)0X8c8c),
+ SeparateAttribs = ((int)0X8c8d),
+ SeparateAttribsExt = ((int)0X8c8d),
+ SeparateAttribsNv = ((int)0X8c8d),
+ TransformFeedbackBuffer = ((int)0X8c8e),
+ TransformFeedbackBufferExt = ((int)0X8c8e),
+ TransformFeedbackBufferNv = ((int)0X8c8e),
+ TransformFeedbackBufferBinding = ((int)0X8c8f),
+ TransformFeedbackBufferBindingExt = ((int)0X8c8f),
+ TransformFeedbackBufferBindingNv = ((int)0X8c8f),
+ PointSpriteCoordOrigin = ((int)0X8ca0),
+ LowerLeft = ((int)0X8ca1),
+ UpperLeft = ((int)0X8ca2),
+ StencilBackRef = ((int)0X8ca3),
+ StencilBackValueMask = ((int)0X8ca4),
+ StencilBackWritemask = ((int)0X8ca5),
+ DrawFramebufferBinding = ((int)0X8ca6),
+ DrawFramebufferBindingExt = ((int)0X8ca6),
+ FramebufferBinding = ((int)0X8ca6),
+ FramebufferBindingExt = ((int)0X8ca6),
+ RenderbufferBinding = ((int)0X8ca7),
+ RenderbufferBindingExt = ((int)0X8ca7),
+ ReadFramebuffer = ((int)0X8ca8),
+ ReadFramebufferExt = ((int)0X8ca8),
+ DrawFramebuffer = ((int)0X8ca9),
+ DrawFramebufferExt = ((int)0X8ca9),
+ ReadFramebufferBinding = ((int)0X8caa),
+ ReadFramebufferBindingExt = ((int)0X8caa),
+ RenderbufferCoverageSamplesNv = ((int)0X8cab),
+ RenderbufferSamples = ((int)0X8cab),
+ RenderbufferSamplesExt = ((int)0X8cab),
+ DepthComponent32f = ((int)0X8cac),
+ Depth32fStencil8 = ((int)0X8cad),
+ FramebufferAttachmentObjectType = ((int)0X8cd0),
+ FramebufferAttachmentObjectTypeExt = ((int)0X8cd0),
+ FramebufferAttachmentObjectName = ((int)0X8cd1),
+ FramebufferAttachmentObjectNameExt = ((int)0X8cd1),
+ FramebufferAttachmentTextureLevel = ((int)0X8cd2),
+ FramebufferAttachmentTextureLevelExt = ((int)0X8cd2),
+ FramebufferAttachmentTextureCubeMapFace = ((int)0X8cd3),
+ FramebufferAttachmentTextureCubeMapFaceExt = ((int)0X8cd3),
+ FramebufferAttachmentTexture3DZoffsetExt = ((int)0X8cd4),
+ FramebufferAttachmentTextureLayer = ((int)0X8cd4),
+ FramebufferAttachmentTextureLayerExt = ((int)0X8cd4),
+ FramebufferComplete = ((int)0X8cd5),
+ FramebufferCompleteExt = ((int)0X8cd5),
+ FramebufferIncompleteAttachment = ((int)0X8cd6),
+ FramebufferIncompleteAttachmentExt = ((int)0X8cd6),
+ FramebufferIncompleteMissingAttachment = ((int)0X8cd7),
+ FramebufferIncompleteMissingAttachmentExt = ((int)0X8cd7),
+ FramebufferIncompleteDimensionsExt = ((int)0X8cd9),
+ FramebufferIncompleteFormatsExt = ((int)0X8cda),
+ FramebufferIncompleteDrawBuffer = ((int)0X8cdb),
+ FramebufferIncompleteDrawBufferExt = ((int)0X8cdb),
+ FramebufferIncompleteReadBuffer = ((int)0X8cdc),
+ FramebufferIncompleteReadBufferExt = ((int)0X8cdc),
+ FramebufferUnsupported = ((int)0X8cdd),
+ FramebufferUnsupportedExt = ((int)0X8cdd),
+ MaxColorAttachments = ((int)0X8cdf),
+ MaxColorAttachmentsExt = ((int)0X8cdf),
+ ColorAttachment0 = ((int)0X8ce0),
+ ColorAttachment0Ext = ((int)0X8ce0),
+ ColorAttachment1 = ((int)0X8ce1),
+ ColorAttachment1Ext = ((int)0X8ce1),
+ ColorAttachment2 = ((int)0X8ce2),
+ ColorAttachment2Ext = ((int)0X8ce2),
+ ColorAttachment3 = ((int)0X8ce3),
+ ColorAttachment3Ext = ((int)0X8ce3),
+ ColorAttachment4 = ((int)0X8ce4),
+ ColorAttachment4Ext = ((int)0X8ce4),
+ ColorAttachment5 = ((int)0X8ce5),
+ ColorAttachment5Ext = ((int)0X8ce5),
+ ColorAttachment6 = ((int)0X8ce6),
+ ColorAttachment6Ext = ((int)0X8ce6),
+ ColorAttachment7 = ((int)0X8ce7),
+ ColorAttachment7Ext = ((int)0X8ce7),
+ ColorAttachment8 = ((int)0X8ce8),
+ ColorAttachment8Ext = ((int)0X8ce8),
+ ColorAttachment9 = ((int)0X8ce9),
+ ColorAttachment9Ext = ((int)0X8ce9),
+ ColorAttachment10 = ((int)0X8cea),
+ ColorAttachment10Ext = ((int)0X8cea),
+ ColorAttachment11 = ((int)0X8ceb),
+ ColorAttachment11Ext = ((int)0X8ceb),
+ ColorAttachment12 = ((int)0X8cec),
+ ColorAttachment12Ext = ((int)0X8cec),
+ ColorAttachment13 = ((int)0X8ced),
+ ColorAttachment13Ext = ((int)0X8ced),
+ ColorAttachment14 = ((int)0X8cee),
+ ColorAttachment14Ext = ((int)0X8cee),
+ ColorAttachment15 = ((int)0X8cef),
+ ColorAttachment15Ext = ((int)0X8cef),
+ DepthAttachment = ((int)0X8d00),
+ DepthAttachmentExt = ((int)0X8d00),
+ StencilAttachment = ((int)0X8d20),
+ StencilAttachmentExt = ((int)0X8d20),
+ Framebuffer = ((int)0X8d40),
+ FramebufferExt = ((int)0X8d40),
+ Renderbuffer = ((int)0X8d41),
+ RenderbufferExt = ((int)0X8d41),
+ RenderbufferWidth = ((int)0X8d42),
+ RenderbufferWidthExt = ((int)0X8d42),
+ RenderbufferHeight = ((int)0X8d43),
+ RenderbufferHeightExt = ((int)0X8d43),
+ RenderbufferInternalFormat = ((int)0X8d44),
+ RenderbufferInternalFormatExt = ((int)0X8d44),
+ StencilIndex1 = ((int)0X8d46),
+ StencilIndex1Ext = ((int)0X8d46),
+ StencilIndex4 = ((int)0X8d47),
+ StencilIndex4Ext = ((int)0X8d47),
+ StencilIndex8 = ((int)0X8d48),
+ StencilIndex8Ext = ((int)0X8d48),
+ StencilIndex16 = ((int)0X8d49),
+ StencilIndex16Ext = ((int)0X8d49),
+ RenderbufferRedSize = ((int)0X8d50),
+ RenderbufferRedSizeExt = ((int)0X8d50),
+ RenderbufferGreenSize = ((int)0X8d51),
+ RenderbufferGreenSizeExt = ((int)0X8d51),
+ RenderbufferBlueSize = ((int)0X8d52),
+ RenderbufferBlueSizeExt = ((int)0X8d52),
+ RenderbufferAlphaSize = ((int)0X8d53),
+ RenderbufferAlphaSizeExt = ((int)0X8d53),
+ RenderbufferDepthSize = ((int)0X8d54),
+ RenderbufferDepthSizeExt = ((int)0X8d54),
+ RenderbufferStencilSize = ((int)0X8d55),
+ RenderbufferStencilSizeExt = ((int)0X8d55),
+ FramebufferIncompleteMultisample = ((int)0X8d56),
+ FramebufferIncompleteMultisampleExt = ((int)0X8d56),
+ MaxSamples = ((int)0X8d57),
+ MaxSamplesExt = ((int)0X8d57),
+ Rgba32ui = ((int)0X8d70),
+ Rgba32uiExt = ((int)0X8d70),
+ Rgb32ui = ((int)0X8d71),
+ Rgb32uiExt = ((int)0X8d71),
+ Alpha32uiExt = ((int)0X8d72),
+ Intensity32uiExt = ((int)0X8d73),
+ Luminance32uiExt = ((int)0X8d74),
+ LuminanceAlpha32uiExt = ((int)0X8d75),
+ Rgba16ui = ((int)0X8d76),
+ Rgba16uiExt = ((int)0X8d76),
+ Rgb16ui = ((int)0X8d77),
+ Rgb16uiExt = ((int)0X8d77),
+ Alpha16uiExt = ((int)0X8d78),
+ Intensity16uiExt = ((int)0X8d79),
+ Luminance16uiExt = ((int)0X8d7a),
+ LuminanceAlpha16uiExt = ((int)0X8d7b),
+ Rgba8ui = ((int)0X8d7c),
+ Rgba8uiExt = ((int)0X8d7c),
+ Rgb8ui = ((int)0X8d7d),
+ Rgb8uiExt = ((int)0X8d7d),
+ Alpha8uiExt = ((int)0X8d7e),
+ Intensity8uiExt = ((int)0X8d7f),
+ Luminance8uiExt = ((int)0X8d80),
+ LuminanceAlpha8uiExt = ((int)0X8d81),
+ Rgba32i = ((int)0X8d82),
+ Rgba32iExt = ((int)0X8d82),
+ Rgb32i = ((int)0X8d83),
+ Rgb32iExt = ((int)0X8d83),
+ Alpha32iExt = ((int)0X8d84),
+ Intensity32iExt = ((int)0X8d85),
+ Luminance32iExt = ((int)0X8d86),
+ LuminanceAlpha32iExt = ((int)0X8d87),
+ Rgba16i = ((int)0X8d88),
+ Rgba16iExt = ((int)0X8d88),
+ Rgb16i = ((int)0X8d89),
+ Rgb16iExt = ((int)0X8d89),
+ Alpha16iExt = ((int)0X8d8a),
+ Intensity16iExt = ((int)0X8d8b),
+ Luminance16iExt = ((int)0X8d8c),
+ LuminanceAlpha16iExt = ((int)0X8d8d),
+ Rgba8i = ((int)0X8d8e),
+ Rgba8iExt = ((int)0X8d8e),
+ Rgb8i = ((int)0X8d8f),
+ Rgb8iExt = ((int)0X8d8f),
+ Alpha8iExt = ((int)0X8d90),
+ Intensity8iExt = ((int)0X8d91),
+ Luminance8iExt = ((int)0X8d92),
+ LuminanceAlpha8iExt = ((int)0X8d93),
+ RedInteger = ((int)0X8d94),
+ RedIntegerExt = ((int)0X8d94),
+ GreenInteger = ((int)0X8d95),
+ GreenIntegerExt = ((int)0X8d95),
+ BlueInteger = ((int)0X8d96),
+ BlueIntegerExt = ((int)0X8d96),
+ AlphaInteger = ((int)0X8d97),
+ AlphaIntegerExt = ((int)0X8d97),
+ RgbInteger = ((int)0X8d98),
+ RgbIntegerExt = ((int)0X8d98),
+ RgbaInteger = ((int)0X8d99),
+ RgbaIntegerExt = ((int)0X8d99),
+ BgrInteger = ((int)0X8d9a),
+ BgrIntegerExt = ((int)0X8d9a),
+ BgraInteger = ((int)0X8d9b),
+ BgraIntegerExt = ((int)0X8d9b),
+ LuminanceIntegerExt = ((int)0X8d9c),
+ LuminanceAlphaIntegerExt = ((int)0X8d9d),
+ RgbaIntegerModeExt = ((int)0X8d9e),
+ MaxProgramParameterBufferBindingsNv = ((int)0X8da0),
+ MaxProgramParameterBufferSizeNv = ((int)0X8da1),
+ VertexProgramParameterBufferNv = ((int)0X8da2),
+ GeometryProgramParameterBufferNv = ((int)0X8da3),
+ FragmentProgramParameterBufferNv = ((int)0X8da4),
+ MaxProgramGenericAttribsNv = ((int)0X8da5),
+ MaxProgramGenericResultsNv = ((int)0X8da6),
+ FramebufferAttachmentLayeredArb = ((int)0X8da7),
+ FramebufferAttachmentLayeredExt = ((int)0X8da7),
+ FramebufferIncompleteLayerTargetsArb = ((int)0X8da8),
+ FramebufferIncompleteLayerTargetsExt = ((int)0X8da8),
+ FramebufferIncompleteLayerCountArb = ((int)0X8da9),
+ FramebufferIncompleteLayerCountExt = ((int)0X8da9),
+ DepthComponent32fNv = ((int)0X8dab),
+ Depth32fStencil8Nv = ((int)0X8dac),
+ Float32UnsignedInt248Rev = ((int)0X8dad),
+ Float32UnsignedInt248RevNv = ((int)0X8dad),
+ DepthBufferFloatModeNv = ((int)0X8daf),
+ FramebufferSrgb = ((int)0X8db9),
+ FramebufferSrgbExt = ((int)0X8db9),
+ FramebufferSrgbCapableExt = ((int)0X8dba),
+ CompressedRedRgtc1 = ((int)0X8dbb),
+ CompressedRedRgtc1Ext = ((int)0X8dbb),
+ CompressedSignedRedRgtc1 = ((int)0X8dbc),
+ CompressedSignedRedRgtc1Ext = ((int)0X8dbc),
+ CompressedRedGreenRgtc2Ext = ((int)0X8dbd),
+ CompressedRgRgtc2 = ((int)0X8dbd),
+ CompressedSignedRedGreenRgtc2Ext = ((int)0X8dbe),
+ CompressedSignedRgRgtc2 = ((int)0X8dbe),
+ Sampler1DArray = ((int)0X8dc0),
+ Sampler1DArrayExt = ((int)0X8dc0),
+ Sampler2DArray = ((int)0X8dc1),
+ Sampler2DArrayExt = ((int)0X8dc1),
+ SamplerBufferExt = ((int)0X8dc2),
+ Sampler1DArrayShadow = ((int)0X8dc3),
+ Sampler1DArrayShadowExt = ((int)0X8dc3),
+ Sampler2DArrayShadow = ((int)0X8dc4),
+ Sampler2DArrayShadowExt = ((int)0X8dc4),
+ SamplerCubeShadow = ((int)0X8dc5),
+ SamplerCubeShadowExt = ((int)0X8dc5),
+ UnsignedIntVec2 = ((int)0X8dc6),
+ UnsignedIntVec2Ext = ((int)0X8dc6),
+ UnsignedIntVec3 = ((int)0X8dc7),
+ UnsignedIntVec3Ext = ((int)0X8dc7),
+ UnsignedIntVec4 = ((int)0X8dc8),
+ UnsignedIntVec4Ext = ((int)0X8dc8),
+ IntSampler1D = ((int)0X8dc9),
+ IntSampler1DExt = ((int)0X8dc9),
+ IntSampler2D = ((int)0X8dca),
+ IntSampler2DExt = ((int)0X8dca),
+ IntSampler3D = ((int)0X8dcb),
+ IntSampler3DExt = ((int)0X8dcb),
+ IntSamplerCube = ((int)0X8dcc),
+ IntSamplerCubeExt = ((int)0X8dcc),
+ IntSampler2DRectExt = ((int)0X8dcd),
+ IntSampler1DArray = ((int)0X8dce),
+ IntSampler1DArrayExt = ((int)0X8dce),
+ IntSampler2DArray = ((int)0X8dcf),
+ IntSampler2DArrayExt = ((int)0X8dcf),
+ IntSamplerBufferExt = ((int)0X8dd0),
+ UnsignedIntSampler1D = ((int)0X8dd1),
+ UnsignedIntSampler1DExt = ((int)0X8dd1),
+ UnsignedIntSampler2D = ((int)0X8dd2),
+ UnsignedIntSampler2DExt = ((int)0X8dd2),
+ UnsignedIntSampler3D = ((int)0X8dd3),
+ UnsignedIntSampler3DExt = ((int)0X8dd3),
+ UnsignedIntSamplerCube = ((int)0X8dd4),
+ UnsignedIntSamplerCubeExt = ((int)0X8dd4),
+ UnsignedIntSampler2DRectExt = ((int)0X8dd5),
+ UnsignedIntSampler1DArray = ((int)0X8dd6),
+ UnsignedIntSampler1DArrayExt = ((int)0X8dd6),
+ UnsignedIntSampler2DArray = ((int)0X8dd7),
+ UnsignedIntSampler2DArrayExt = ((int)0X8dd7),
+ UnsignedIntSamplerBufferExt = ((int)0X8dd8),
+ GeometryShaderArb = ((int)0X8dd9),
+ GeometryShaderExt = ((int)0X8dd9),
+ GeometryVerticesOutArb = ((int)0X8dda),
+ GeometryVerticesOutExt = ((int)0X8dda),
+ GeometryInputTypeArb = ((int)0X8ddb),
+ GeometryInputTypeExt = ((int)0X8ddb),
+ GeometryOutputTypeArb = ((int)0X8ddc),
+ GeometryOutputTypeExt = ((int)0X8ddc),
+ MaxGeometryVaryingComponentsArb = ((int)0X8ddd),
+ MaxGeometryVaryingComponentsExt = ((int)0X8ddd),
+ MaxVertexVaryingComponentsArb = ((int)0X8dde),
+ MaxVertexVaryingComponentsExt = ((int)0X8dde),
+ MaxGeometryUniformComponentsArb = ((int)0X8ddf),
+ MaxGeometryUniformComponentsExt = ((int)0X8ddf),
+ MaxGeometryOutputVerticesArb = ((int)0X8de0),
+ MaxGeometryOutputVerticesExt = ((int)0X8de0),
+ MaxGeometryTotalOutputComponentsArb = ((int)0X8de1),
+ MaxGeometryTotalOutputComponentsExt = ((int)0X8de1),
+ MaxVertexBindableUniformsExt = ((int)0X8de2),
+ MaxFragmentBindableUniformsExt = ((int)0X8de3),
+ MaxGeometryBindableUniformsExt = ((int)0X8de4),
+ MaxBindableUniformSizeExt = ((int)0X8ded),
+ UniformBufferExt = ((int)0X8dee),
+ UniformBufferBindingExt = ((int)0X8def),
+ RenderbufferColorSamplesNv = ((int)0X8e10),
+ MaxMultisampleCoverageModesNv = ((int)0X8e11),
+ MultisampleCoverageModesNv = ((int)0X8e12),
+ QueryWait = ((int)0X8e13),
+ QueryWaitNv = ((int)0X8e13),
+ QueryNoWait = ((int)0X8e14),
+ QueryNoWaitNv = ((int)0X8e14),
+ QueryByRegionWait = ((int)0X8e15),
+ QueryByRegionWaitNv = ((int)0X8e15),
+ QueryByRegionNoWait = ((int)0X8e16),
+ QueryByRegionNoWaitNv = ((int)0X8e16),
+ TransformFeedbackNv = ((int)0X8e22),
+ TransformFeedbackBufferPausedNv = ((int)0X8e23),
+ TransformFeedbackBufferActiveNv = ((int)0X8e24),
+ TransformFeedbackBindingNv = ((int)0X8e25),
+ FrameNv = ((int)0X8e26),
+ FieldsNv = ((int)0X8e27),
+ CurrentTimeNv = ((int)0X8e28),
+ NumFillStreamsNv = ((int)0X8e29),
+ PresentTimeNv = ((int)0X8e2a),
+ PresentDurationNv = ((int)0X8e2b),
+ ProgramMatrixExt = ((int)0X8e2d),
+ TransposeProgramMatrixExt = ((int)0X8e2e),
+ ProgramMatrixStackDepthExt = ((int)0X8e2f),
+ TextureSwizzleRExt = ((int)0X8e42),
+ TextureSwizzleGExt = ((int)0X8e43),
+ TextureSwizzleBExt = ((int)0X8e44),
+ TextureSwizzleAExt = ((int)0X8e45),
+ TextureSwizzleRgbaExt = ((int)0X8e46),
+ SamplePositionNv = ((int)0X8e50),
+ SampleMaskNv = ((int)0X8e51),
+ SampleMaskValueNv = ((int)0X8e52),
+ TextureBindingRenderbufferNv = ((int)0X8e53),
+ TextureRenderbufferDataStoreBindingNv = ((int)0X8e54),
+ TextureRenderbufferNv = ((int)0X8e55),
+ SamplerRenderbufferNv = ((int)0X8e56),
+ IntSamplerRenderbufferNv = ((int)0X8e57),
+ UnsignedIntSamplerRenderbufferNv = ((int)0X8e58),
+ MaxSampleMaskWordsNv = ((int)0X8e59),
+ AllAttribBits = unchecked((int)0Xffffffff),
+ ClientAllAttribBits = unchecked((int)0Xffffffff),
+ One = ((int)1),
+ True = ((int)1),
+ CullVertexIbm = ((int)103050),
+ VertexArrayListIbm = ((int)103070),
+ NormalArrayListIbm = ((int)103071),
+ ColorArrayListIbm = ((int)103072),
+ IndexArrayListIbm = ((int)103073),
+ TextureCoordArrayListIbm = ((int)103074),
+ EdgeFlagArrayListIbm = ((int)103075),
+ FogCoordinateArrayListIbm = ((int)103076),
+ SecondaryColorArrayListIbm = ((int)103077),
+ VertexArrayListStrideIbm = ((int)103080),
+ NormalArrayListStrideIbm = ((int)103081),
+ ColorArrayListStrideIbm = ((int)103082),
+ IndexArrayListStrideIbm = ((int)103083),
+ TextureCoordArrayListStrideIbm = ((int)103084),
+ EdgeFlagArrayListStrideIbm = ((int)103085),
+ FogCoordinateArrayListStrideIbm = ((int)103086),
+ SecondaryColorArrayListStrideIbm = ((int)103087),
+ Two = ((int)2),
+ Three = ((int)3),
+ Four = ((int)4),
}
public enum ArbImaging
{
- PostConvolutionAlphaScale = ((int)0X801f),
+ ConstantColor = ((int)0X8001),
+ OneMinusConstantColor = ((int)0X8002),
+ ConstantAlpha = ((int)0X8003),
+ OneMinusConstantAlpha = ((int)0X8004),
+ BlendColor = ((int)0X8005),
+ BlendEquation = ((int)0X8009),
+ Convolution1D = ((int)0X8010),
+ Convolution2D = ((int)0X8011),
Separable2D = ((int)0X8012),
ConvolutionBorderMode = ((int)0X8013),
- ColorTableFormat = ((int)0X80d8),
- HistogramRedSize = ((int)0X8028),
- ProxyColorTable = ((int)0X80d3),
- PostColorMatrixGreenBias = ((int)0X80b9),
- PostConvolutionGreenScale = ((int)0X801d),
- PostConvolutionBlueScale = ((int)0X801e),
+ ConvolutionFilterScale = ((int)0X8014),
+ ConvolutionFilterBias = ((int)0X8015),
+ Reduce = ((int)0X8016),
+ ConvolutionFormat = ((int)0X8017),
+ ConvolutionWidth = ((int)0X8018),
ConvolutionHeight = ((int)0X8019),
MaxConvolutionWidth = ((int)0X801a),
- Convolution2D = ((int)0X8011),
- TableTooLarge = ((int)0X8031),
- ColorMatrixStackDepth = ((int)0X80b2),
- PostConvolutionColorTable = ((int)0X80d1),
- PostColorMatrixBlueBias = ((int)0X80ba),
- PostColorMatrixColorTable = ((int)0X80d2),
- HistogramFormat = ((int)0X8027),
- ConstantBorder = ((int)0X8151),
- ProxyPostConvolutionColorTable = ((int)0X80d4),
- PostConvolutionGreenBias = ((int)0X8021),
- Convolution1D = ((int)0X8010),
- HistogramGreenSize = ((int)0X8029),
- HistogramLuminanceSize = ((int)0X802c),
- PostColorMatrixAlphaBias = ((int)0X80bb),
- HistogramAlphaSize = ((int)0X802b),
- ProxyPostColorMatrixColorTable = ((int)0X80d5),
- ColorTable = ((int)0X80d0),
- BlendEquation = ((int)0X8009),
- ColorTableWidth = ((int)0X80d9),
- HistogramSink = ((int)0X802d),
- ColorMatrix = ((int)0X80b1),
- ColorTableAlphaSize = ((int)0X80dd),
- OneMinusConstantColor = ((int)0X8002),
- Reduce = ((int)0X8016),
- ConvolutionWidth = ((int)0X8018),
- PostColorMatrixRedBias = ((int)0X80b8),
- ColorTableLuminanceSize = ((int)0X80de),
- ReplicateBorder = ((int)0X8153),
- Histogram = ((int)0X8024),
- PostConvolutionRedScale = ((int)0X801c),
- OneMinusConstantAlpha = ((int)0X8004),
- MaxColorMatrixStackDepth = ((int)0X80b3),
- Minmax = ((int)0X802e),
- HistogramWidth = ((int)0X8026),
- ColorTableScale = ((int)0X80d6),
- PostConvolutionAlphaBias = ((int)0X8023),
- PostColorMatrixGreenScale = ((int)0X80b5),
- ConstantColor = ((int)0X8001),
- ConvolutionFilterScale = ((int)0X8014),
- ColorTableGreenSize = ((int)0X80db),
- PostColorMatrixBlueScale = ((int)0X80b6),
- PostConvolutionBlueBias = ((int)0X8022),
MaxConvolutionHeight = ((int)0X801b),
- MinmaxFormat = ((int)0X802f),
- ColorTableRedSize = ((int)0X80da),
- ColorTableBias = ((int)0X80d7),
- ProxyHistogram = ((int)0X8025),
- PostColorMatrixRedScale = ((int)0X80b4),
+ PostConvolutionRedScale = ((int)0X801c),
+ PostConvolutionGreenScale = ((int)0X801d),
+ PostConvolutionBlueScale = ((int)0X801e),
+ PostConvolutionAlphaScale = ((int)0X801f),
PostConvolutionRedBias = ((int)0X8020),
- BlendColor = ((int)0X8005),
- MinmaxSink = ((int)0X8030),
- ConstantAlpha = ((int)0X8003),
- ColorTableIntensitySize = ((int)0X80df),
- ColorTableBlueSize = ((int)0X80dc),
- ConvolutionFormat = ((int)0X8017),
- ConvolutionFilterBias = ((int)0X8015),
- PostColorMatrixAlphaScale = ((int)0X80b7),
- ConvolutionBorderColor = ((int)0X8154),
+ PostConvolutionGreenBias = ((int)0X8021),
+ PostConvolutionBlueBias = ((int)0X8022),
+ PostConvolutionAlphaBias = ((int)0X8023),
+ Histogram = ((int)0X8024),
+ ProxyHistogram = ((int)0X8025),
+ HistogramWidth = ((int)0X8026),
+ HistogramFormat = ((int)0X8027),
+ HistogramRedSize = ((int)0X8028),
+ HistogramGreenSize = ((int)0X8029),
HistogramBlueSize = ((int)0X802a),
+ HistogramAlphaSize = ((int)0X802b),
+ HistogramLuminanceSize = ((int)0X802c),
+ HistogramSink = ((int)0X802d),
+ Minmax = ((int)0X802e),
+ MinmaxFormat = ((int)0X802f),
+ MinmaxSink = ((int)0X8030),
+ TableTooLarge = ((int)0X8031),
+ ColorMatrix = ((int)0X80b1),
+ ColorMatrixStackDepth = ((int)0X80b2),
+ MaxColorMatrixStackDepth = ((int)0X80b3),
+ PostColorMatrixRedScale = ((int)0X80b4),
+ PostColorMatrixGreenScale = ((int)0X80b5),
+ PostColorMatrixBlueScale = ((int)0X80b6),
+ PostColorMatrixAlphaScale = ((int)0X80b7),
+ PostColorMatrixRedBias = ((int)0X80b8),
+ PostColorMatrixGreenBias = ((int)0X80b9),
+ PostColorMatrixBlueBias = ((int)0X80ba),
+ PostColorMatrixAlphaBias = ((int)0X80bb),
+ ColorTable = ((int)0X80d0),
+ PostConvolutionColorTable = ((int)0X80d1),
+ PostColorMatrixColorTable = ((int)0X80d2),
+ ProxyColorTable = ((int)0X80d3),
+ ProxyPostConvolutionColorTable = ((int)0X80d4),
+ ProxyPostColorMatrixColorTable = ((int)0X80d5),
+ ColorTableScale = ((int)0X80d6),
+ ColorTableBias = ((int)0X80d7),
+ ColorTableFormat = ((int)0X80d8),
+ ColorTableWidth = ((int)0X80d9),
+ ColorTableRedSize = ((int)0X80da),
+ ColorTableGreenSize = ((int)0X80db),
+ ColorTableBlueSize = ((int)0X80dc),
+ ColorTableAlphaSize = ((int)0X80dd),
+ ColorTableLuminanceSize = ((int)0X80de),
+ ColorTableIntensitySize = ((int)0X80df),
+ ConstantBorder = ((int)0X8151),
+ ReplicateBorder = ((int)0X8153),
+ ConvolutionBorderColor = ((int)0X8154),
}
- public enum BlendEquationMode
+ public enum Version30
{
- FuncReverseSubtract = ((int)0X800b),
- FuncAdd = ((int)0X8006),
- FuncSubtract = ((int)0X800a),
- Max = ((int)0X8008),
- Min = ((int)0X8007),
- }
-
- public enum TextureEnvModeCombine
- {
- Dot3Rgba = ((int)0X86af),
- Dot3Rgb = ((int)0X86ae),
- Add = ((int)0X0104),
- Modulate = ((int)0X2100),
- Replace = ((int)0X1e01),
- Subtract = ((int)0X84e7),
- AddSigned = ((int)0X8574),
- Interpolate = ((int)0X8575),
- }
-
- public enum TextureEnvModeSource
- {
- Texture5 = ((int)0X84c5),
- Texture3 = ((int)0X84c3),
- Texture30 = ((int)0X84de),
- Texture = ((int)0X1702),
- Texture12 = ((int)0X84cc),
- Texture13 = ((int)0X84cd),
- Texture6 = ((int)0X84c6),
- Previous = ((int)0X8578),
- Texture16 = ((int)0X84d0),
- Texture17 = ((int)0X84d1),
- Texture14 = ((int)0X84ce),
- Texture15 = ((int)0X84cf),
- PrimaryColor = ((int)0X8577),
- Texture28 = ((int)0X84dc),
- Texture10 = ((int)0X84ca),
- Texture11 = ((int)0X84cb),
- Texture8 = ((int)0X84c8),
- Texture18 = ((int)0X84d2),
- Texture19 = ((int)0X84d3),
- Texture2 = ((int)0X84c2),
- Texture31 = ((int)0X84df),
- Texture26 = ((int)0X84da),
- Texture27 = ((int)0X84db),
- Texture24 = ((int)0X84d8),
- Texture25 = ((int)0X84d9),
- Texture22 = ((int)0X84d6),
- Texture23 = ((int)0X84d7),
- Texture20 = ((int)0X84d4),
- Texture21 = ((int)0X84d5),
- Texture0 = ((int)0X84c0),
- Texture29 = ((int)0X84dd),
- Texture7 = ((int)0X84c7),
- Constant = ((int)0X8576),
- Texture1 = ((int)0X84c1),
- Texture4 = ((int)0X84c4),
- Texture9 = ((int)0X84c9),
- }
-
- public enum TextureEnvModeOperandRgb
- {
- OneMinusSrcColor = ((int)0X0301),
- SrcColor = ((int)0X0300),
- OneMinusSrcAlpha = ((int)0X0303),
- SrcAlpha = ((int)0X0302),
- }
-
- public enum TextureEnvModeOperandAlpha
- {
- OneMinusSrcAlpha = ((int)0X0303),
- SrcAlpha = ((int)0X0302),
- }
-
- public enum TextureEnvModeScale
- {
- Two = ((int)2),
- One = ((int)1),
- Four = ((int)4),
- }
-
- public enum TextureUnit
- {
- Texture17 = ((int)0X84d1),
- Texture8 = ((int)0X84c8),
- Texture10 = ((int)0X84ca),
- Texture12 = ((int)0X84cc),
- Texture13 = ((int)0X84cd),
- Texture9 = ((int)0X84c9),
- Texture11 = ((int)0X84cb),
- Texture29 = ((int)0X84dd),
- Texture1 = ((int)0X84c1),
- Texture26 = ((int)0X84da),
- Texture18 = ((int)0X84d2),
- Texture19 = ((int)0X84d3),
- Texture22 = ((int)0X84d6),
- Texture23 = ((int)0X84d7),
- Texture6 = ((int)0X84c6),
- Texture21 = ((int)0X84d5),
- Texture7 = ((int)0X84c7),
- Texture5 = ((int)0X84c5),
- Texture28 = ((int)0X84dc),
- Texture2 = ((int)0X84c2),
- Texture3 = ((int)0X84c3),
- Texture25 = ((int)0X84d9),
- Texture30 = ((int)0X84de),
- Texture31 = ((int)0X84df),
- Texture0 = ((int)0X84c0),
- Texture27 = ((int)0X84db),
- Texture24 = ((int)0X84d8),
- Texture16 = ((int)0X84d0),
- Texture15 = ((int)0X84cf),
- Texture14 = ((int)0X84ce),
- Texture20 = ((int)0X84d4),
- Texture4 = ((int)0X84c4),
- }
-
- public enum TextureCompareMode
- {
- CompareRToTexture = ((int)0X884e),
- }
-
- public enum FogPointerType
- {
- Float = ((int)0X1406),
- Double = ((int)0X140a),
- }
-
- public enum PointParameterName
- {
- PointFadeThresholdSize = ((int)0X8128),
- PointSizeMax = ((int)0X8127),
- PointDistanceAttenuation = ((int)0X8129),
- PointSizeMin = ((int)0X8126),
- PointSpriteCoordOrigin = ((int)0X8ca0),
- }
-
- public enum QueryTarget
- {
- SamplesPassed = ((int)0X8914),
- }
-
- public enum GetQueryParam
- {
- QueryCounterBits = ((int)0X8864),
- CurrentQuery = ((int)0X8865),
- }
-
- public enum GetQueryObjectParam
- {
- QueryResultAvailable = ((int)0X8867),
- QueryResult = ((int)0X8866),
- }
-
- public enum BufferTarget
- {
- ArrayBuffer = ((int)0X8892),
- ElementArrayBuffer = ((int)0X8893),
- PixelUnpackBuffer = ((int)0X88ec),
- PixelPackBuffer = ((int)0X88eb),
- }
-
- public enum BufferUsageHint
- {
- StreamDraw = ((int)0X88e0),
- DynamicCopy = ((int)0X88ea),
- StaticDraw = ((int)0X88e4),
- StaticCopy = ((int)0X88e6),
- StaticRead = ((int)0X88e5),
- StreamCopy = ((int)0X88e2),
- DynamicDraw = ((int)0X88e8),
- DynamicRead = ((int)0X88e9),
- StreamRead = ((int)0X88e1),
- }
-
- public enum BufferAccess
- {
- WriteOnly = ((int)0X88b9),
- ReadWrite = ((int)0X88ba),
- ReadOnly = ((int)0X88b8),
- }
-
- public enum BufferParameterName
- {
- BufferUsage = ((int)0X8765),
- BufferSize = ((int)0X8764),
- BufferAccess = ((int)0X88bb),
- BufferMapped = ((int)0X88bc),
- }
-
- public enum BufferPointer
- {
- BufferMapPointer = ((int)0X88bd),
- }
-
- public enum ShaderType
- {
- GeometryShaderExt = ((int)0X8dd9),
- FragmentShader = ((int)0X8b30),
- VertexShader = ((int)0X8b31),
- }
-
- public enum ActiveUniformType
- {
- FloatMat4x2 = ((int)0X8b69),
- Sampler2DShadow = ((int)0X8b62),
- Bool = ((int)0X8b56),
- IntVec4 = ((int)0X8b55),
- FloatMat4x3 = ((int)0X8b6a),
- FloatMat3x2 = ((int)0X8b67),
- SamplerCube = ((int)0X8b60),
- FloatMat2x3 = ((int)0X8b65),
- FloatMat2x4 = ((int)0X8b66),
- FloatMat3x4 = ((int)0X8b68),
- BoolVec2 = ((int)0X8b57),
- Sampler1D = ((int)0X8b5d),
- FloatMat2 = ((int)0X8b5a),
- FloatMat3 = ((int)0X8b5b),
- Sampler3D = ((int)0X8b5f),
- Sampler2D = ((int)0X8b5e),
- FloatVec2 = ((int)0X8b50),
- FloatVec3 = ((int)0X8b51),
- Int = ((int)0X1404),
- Sampler1DShadow = ((int)0X8b61),
- BoolVec4 = ((int)0X8b59),
- FloatVec4 = ((int)0X8b52),
- Float = ((int)0X1406),
- FloatMat4 = ((int)0X8b5c),
- BoolVec3 = ((int)0X8b58),
- IntVec2 = ((int)0X8b53),
- IntVec3 = ((int)0X8b54),
- }
-
- public enum ActiveAttribType
- {
- FloatMat2 = ((int)0X8b5a),
- Float = ((int)0X1406),
- FloatVec2 = ((int)0X8b50),
- FloatVec3 = ((int)0X8b51),
- FloatMat3 = ((int)0X8b5b),
- FloatVec4 = ((int)0X8b52),
- FloatMat4 = ((int)0X8b5c),
- }
-
- public enum VertexAttribPointerType
- {
- UnsignedByte = ((int)0X1401),
- Byte = ((int)0X1400),
- UnsignedInt = ((int)0X1405),
- Short = ((int)0X1402),
- Int = ((int)0X1404),
- Float = ((int)0X1406),
- Double = ((int)0X140a),
- UnsignedShort = ((int)0X1403),
- }
-
- public enum ShaderParameter
- {
- DeleteStatus = ((int)0X8b80),
- InfoLogLength = ((int)0X8b84),
- CompileStatus = ((int)0X8b81),
- ShaderSourceLength = ((int)0X8b88),
- ShaderType = ((int)0X8b4f),
- }
-
- public enum ProgramParameter
- {
- ActiveAttributeMaxLength = ((int)0X8b8a),
- DeleteStatus = ((int)0X8b80),
- ActiveUniformMaxLength = ((int)0X8b87),
- AttachedShaders = ((int)0X8b85),
- ActiveUniforms = ((int)0X8b86),
- InfoLogLength = ((int)0X8b84),
- ValidateStatus = ((int)0X8b83),
- ActiveAttributes = ((int)0X8b89),
- LinkStatus = ((int)0X8b82),
- }
-
- public enum VertexAttribParameter
- {
- ArrayEnabled = ((int)0X8622),
- ArrayNormalized = ((int)0X886a),
- ArraySize = ((int)0X8623),
- CurrentVertexAttrib = ((int)0X8626),
- ArrayStride = ((int)0X8624),
- ArrayType = ((int)0X8625),
- }
-
- public enum VertexAttribPointerParameter
- {
- ArrayPointer = ((int)0X8645),
- }
-
- public enum DrawBuffersEnum
- {
- FrontRight = ((int)0X0401),
- BackLeft = ((int)0X0402),
- BackRight = ((int)0X0403),
- Aux1 = ((int)0X040a),
- Aux0 = ((int)0X0409),
- Aux3 = ((int)0X040c),
- Aux2 = ((int)0X040b),
- FrontLeft = ((int)0X0400),
- None = ((int)0),
- }
-
- public enum PointSpriteCoordOriginParameter
- {
- UpperLeft = ((int)0X8ca2),
- LowerLeft = ((int)0X8ca1),
- }
-
- public enum TextureEnvModePointSprite
- {
- True = ((int)1),
- False = ((int)0),
+ ContextFlagForwardCompatibleBit = ((int)0X0001),
+ MapReadBit = ((int)0X0001),
+ MapWriteBit = ((int)0X0002),
+ MapInvalidateRangeBit = ((int)0X0004),
+ MapInvalidateBufferBit = ((int)0X0008),
+ MapFlushExplicitBit = ((int)0X0010),
+ MapUnsynchronizedBit = ((int)0X0020),
+ MaxClipDistances = ((int)0X0D32),
+ HalfFloat = ((int)0X140b),
+ ClipDistance0 = ((int)0X3000),
+ ClipDistance1 = ((int)0X3001),
+ ClipDistance2 = ((int)0X3002),
+ ClipDistance3 = ((int)0X3003),
+ ClipDistance4 = ((int)0X3004),
+ ClipDistance5 = ((int)0X3005),
+ MajorVersion = ((int)0X821b),
+ MinorVersion = ((int)0X821c),
+ NumExtensions = ((int)0X821d),
+ ContextFlags = ((int)0X821e),
+ DepthBuffer = ((int)0X8223),
+ StencilBuffer = ((int)0X8224),
+ VertexArrayBinding = ((int)0X85b5),
+ VertexAttribArrayInteger = ((int)0X88fd),
+ MinProgramTexelOffset = ((int)0X8904),
+ MaxProgramTexelOffset = ((int)0X8905),
+ MaxVaryingComponents = ((int)0X8b4b),
+ UnsignedNormalized = ((int)0X8c17),
+ UnsignedInt10F11F11FRev = ((int)0X8c3b),
+ UnsignedInt5999Rev = ((int)0X8c3e),
+ TransformFeedbackVaryingMaxLength = ((int)0X8c76),
+ TransformFeedbackBufferMode = ((int)0X8c7f),
+ MaxTransformFeedbackSeparateComponents = ((int)0X8c80),
+ TransformFeedbackVaryings = ((int)0X8c83),
+ TransformFeedbackBufferStart = ((int)0X8c84),
+ TransformFeedbackBufferSize = ((int)0X8c85),
+ PrimitivesGenerated = ((int)0X8c87),
+ TransformFeedbackPrimitivesWritten = ((int)0X8c88),
+ RasterizerDiscard = ((int)0X8c89),
+ MaxTransformFeedbackInterleavedComponents = ((int)0X8c8a),
+ MaxTransformFeedbackSeparateAttribs = ((int)0X8c8b),
+ InterleavedAttribs = ((int)0X8c8c),
+ SeparateAttribs = ((int)0X8c8d),
+ TransformFeedbackBuffer = ((int)0X8c8e),
+ TransformFeedbackBufferBinding = ((int)0X8c8f),
+ FramebufferSrgb = ((int)0X8Db9),
+ SamplerCubeShadow = ((int)0X8dc5),
+ UnsignedIntVec2 = ((int)0X8dc6),
+ UnsignedIntVec3 = ((int)0X8dc7),
+ UnsignedIntVec4 = ((int)0X8dc8),
+ IntSampler1D = ((int)0X8dc9),
+ IntSampler2D = ((int)0X8dca),
+ IntSampler3D = ((int)0X8dcb),
+ IntSamplerCube = ((int)0X8dcc),
+ IntSampler1DArray = ((int)0X8dce),
+ IntSampler2DArray = ((int)0X8dcf),
+ UnsignedIntSampler1D = ((int)0X8dd1),
+ UnsignedIntSampler2D = ((int)0X8dd2),
+ UnsignedIntSampler3D = ((int)0X8dd3),
+ UnsignedIntSamplerCube = ((int)0X8dd4),
+ UnsignedIntSampler1DArray = ((int)0X8dd6),
+ UnsignedIntSampler2DArray = ((int)0X8dd7),
+ QueryWait = ((int)0X8e13),
+ QueryNoWait = ((int)0X8e14),
+ QueryByRegionWait = ((int)0X8e15),
+ QueryByRegionNoWait = ((int)0X8e16),
}
public enum ArbMultitexture
{
- Texture17Arb = ((int)0X84d1),
- MaxTextureUnitsArb = ((int)0X84e2),
- Texture29Arb = ((int)0X84dd),
+ Texture0Arb = ((int)0X84c0),
Texture1Arb = ((int)0X84c1),
Texture2Arb = ((int)0X84c2),
- Texture26Arb = ((int)0X84da),
- Texture19Arb = ((int)0X84d3),
- Texture6Arb = ((int)0X84c6),
- ActiveTextureArb = ((int)0X84e0),
- Texture23Arb = ((int)0X84d7),
- Texture7Arb = ((int)0X84c7),
- Texture13Arb = ((int)0X84cd),
- Texture16Arb = ((int)0X84d0),
- Texture30Arb = ((int)0X84de),
- Texture28Arb = ((int)0X84dc),
- Texture25Arb = ((int)0X84d9),
- Texture4Arb = ((int)0X84c4),
- Texture15Arb = ((int)0X84cf),
- Texture18Arb = ((int)0X84d2),
Texture3Arb = ((int)0X84c3),
- Texture22Arb = ((int)0X84d6),
- Texture0Arb = ((int)0X84c0),
- Texture12Arb = ((int)0X84cc),
- Texture21Arb = ((int)0X84d5),
- Texture24Arb = ((int)0X84d8),
- Texture11Arb = ((int)0X84cb),
- Texture14Arb = ((int)0X84ce),
- Texture8Arb = ((int)0X84c8),
- Texture20Arb = ((int)0X84d4),
- Texture31Arb = ((int)0X84df),
- ClientActiveTextureArb = ((int)0X84e1),
- Texture9Arb = ((int)0X84c9),
+ Texture4Arb = ((int)0X84c4),
Texture5Arb = ((int)0X84c5),
+ Texture6Arb = ((int)0X84c6),
+ Texture7Arb = ((int)0X84c7),
+ Texture8Arb = ((int)0X84c8),
+ Texture9Arb = ((int)0X84c9),
Texture10Arb = ((int)0X84ca),
+ Texture11Arb = ((int)0X84cb),
+ Texture12Arb = ((int)0X84cc),
+ Texture13Arb = ((int)0X84cd),
+ Texture14Arb = ((int)0X84ce),
+ Texture15Arb = ((int)0X84cf),
+ Texture16Arb = ((int)0X84d0),
+ Texture17Arb = ((int)0X84d1),
+ Texture18Arb = ((int)0X84d2),
+ Texture19Arb = ((int)0X84d3),
+ Texture20Arb = ((int)0X84d4),
+ Texture21Arb = ((int)0X84d5),
+ Texture22Arb = ((int)0X84d6),
+ Texture23Arb = ((int)0X84d7),
+ Texture24Arb = ((int)0X84d8),
+ Texture25Arb = ((int)0X84d9),
+ Texture26Arb = ((int)0X84da),
Texture27Arb = ((int)0X84db),
+ Texture28Arb = ((int)0X84dc),
+ Texture29Arb = ((int)0X84dd),
+ Texture30Arb = ((int)0X84de),
+ Texture31Arb = ((int)0X84df),
+ ActiveTextureArb = ((int)0X84e0),
+ ClientActiveTextureArb = ((int)0X84e1),
+ MaxTextureUnitsArb = ((int)0X84e2),
}
public enum ArbTransposeMatrix
{
+ TransposeModelviewMatrixArb = ((int)0X84e3),
TransposeProjectionMatrixArb = ((int)0X84e4),
TransposeTextureMatrixArb = ((int)0X84e5),
- TransposeModelviewMatrixArb = ((int)0X84e3),
TransposeColorMatrixArb = ((int)0X84e6),
}
@@ -6240,33 +6391,33 @@ namespace OpenTK.Graphics
public enum ArbTextureCubeMap
{
- TextureCubeMapPositiveYArb = ((int)0X8517),
- ProxyTextureCubeMapArb = ((int)0X851b),
- TextureCubeMapPositiveZArb = ((int)0X8519),
- TextureCubeMapPositiveXArb = ((int)0X8515),
- TextureCubeMapNegativeYArb = ((int)0X8518),
- TextureBindingCubeMapArb = ((int)0X8514),
- TextureCubeMapArb = ((int)0X8513),
- MaxCubeMapTextureSizeArb = ((int)0X851c),
- TextureCubeMapNegativeZArb = ((int)0X851a),
- TextureCubeMapNegativeXArb = ((int)0X8516),
- ReflectionMapArb = ((int)0X8512),
NormalMapArb = ((int)0X8511),
+ ReflectionMapArb = ((int)0X8512),
+ TextureCubeMapArb = ((int)0X8513),
+ TextureBindingCubeMapArb = ((int)0X8514),
+ TextureCubeMapPositiveXArb = ((int)0X8515),
+ TextureCubeMapNegativeXArb = ((int)0X8516),
+ TextureCubeMapPositiveYArb = ((int)0X8517),
+ TextureCubeMapNegativeYArb = ((int)0X8518),
+ TextureCubeMapPositiveZArb = ((int)0X8519),
+ TextureCubeMapNegativeZArb = ((int)0X851a),
+ ProxyTextureCubeMapArb = ((int)0X851b),
+ MaxCubeMapTextureSizeArb = ((int)0X851c),
}
public enum ArbTextureCompression
{
- CompressedRgbArb = ((int)0X84ed),
- TextureCompressedArb = ((int)0X86a1),
- CompressedIntensityArb = ((int)0X84ec),
- CompressedTextureFormatsArb = ((int)0X86a3),
- NumCompressedTextureFormatsArb = ((int)0X86a2),
CompressedAlphaArb = ((int)0X84e9),
- TextureCompressionHintArb = ((int)0X84ef),
- CompressedLuminanceAlphaArb = ((int)0X84eb),
- TextureCompressedImageSizeArb = ((int)0X86a0),
- CompressedRgbaArb = ((int)0X84ee),
CompressedLuminanceArb = ((int)0X84ea),
+ CompressedLuminanceAlphaArb = ((int)0X84eb),
+ CompressedIntensityArb = ((int)0X84ec),
+ CompressedRgbArb = ((int)0X84ed),
+ CompressedRgbaArb = ((int)0X84ee),
+ TextureCompressionHintArb = ((int)0X84ef),
+ TextureCompressedImageSizeArb = ((int)0X86a0),
+ TextureCompressedArb = ((int)0X86a1),
+ NumCompressedTextureFormatsArb = ((int)0X86a2),
+ CompressedTextureFormatsArb = ((int)0X86a3),
}
public enum ArbTextureBorderClamp
@@ -6277,95 +6428,95 @@ namespace OpenTK.Graphics
public enum ArbPointParameters
{
PointSizeMinArb = ((int)0X8126),
- PointDistanceAttenuationArb = ((int)0X8129),
PointSizeMaxArb = ((int)0X8127),
PointFadeThresholdSizeArb = ((int)0X8128),
+ PointDistanceAttenuationArb = ((int)0X8129),
}
public enum ArbVertexBlend
{
- Modelview26Arb = ((int)0X873a),
- WeightArrayTypeArb = ((int)0X86a9),
- Modelview23Arb = ((int)0X8737),
+ Modelview0Arb = ((int)0X1700),
Modelview1Arb = ((int)0X850a),
+ MaxVertexUnitsArb = ((int)0X86a4),
+ ActiveVertexUnitsArb = ((int)0X86a5),
+ WeightSumUnityArb = ((int)0X86a6),
+ VertexBlendArb = ((int)0X86a7),
+ CurrentWeightArb = ((int)0X86a8),
+ WeightArrayTypeArb = ((int)0X86a9),
WeightArrayStrideArb = ((int)0X86aa),
+ WeightArraySizeArb = ((int)0X86ab),
+ WeightArrayPointerArb = ((int)0X86ac),
WeightArrayArb = ((int)0X86ad),
Modelview2Arb = ((int)0X8722),
+ Modelview3Arb = ((int)0X8723),
+ Modelview4Arb = ((int)0X8724),
+ Modelview5Arb = ((int)0X8725),
+ Modelview6Arb = ((int)0X8726),
+ Modelview7Arb = ((int)0X8727),
+ Modelview8Arb = ((int)0X8728),
+ Modelview9Arb = ((int)0X8729),
+ Modelview10Arb = ((int)0X872a),
+ Modelview11Arb = ((int)0X872b),
+ Modelview12Arb = ((int)0X872c),
+ Modelview13Arb = ((int)0X872d),
Modelview14Arb = ((int)0X872e),
Modelview15Arb = ((int)0X872f),
- Modelview3Arb = ((int)0X8723),
- Modelview21Arb = ((int)0X8735),
- Modelview27Arb = ((int)0X873b),
- ActiveVertexUnitsArb = ((int)0X86a5),
- Modelview7Arb = ((int)0X8727),
- Modelview9Arb = ((int)0X8729),
- Modelview12Arb = ((int)0X872c),
- Modelview20Arb = ((int)0X8734),
- Modelview18Arb = ((int)0X8732),
- MaxVertexUnitsArb = ((int)0X86a4),
- Modelview19Arb = ((int)0X8733),
- Modelview25Arb = ((int)0X8739),
- Modelview31Arb = ((int)0X873f),
- Modelview4Arb = ((int)0X8724),
- WeightArraySizeArb = ((int)0X86ab),
- Modelview24Arb = ((int)0X8738),
- VertexBlendArb = ((int)0X86a7),
- Modelview30Arb = ((int)0X873e),
- Modelview6Arb = ((int)0X8726),
- Modelview13Arb = ((int)0X872d),
- WeightArrayPointerArb = ((int)0X86ac),
- Modelview29Arb = ((int)0X873d),
- Modelview0Arb = ((int)0X1700),
- Modelview22Arb = ((int)0X8736),
- Modelview8Arb = ((int)0X8728),
- CurrentWeightArb = ((int)0X86a8),
- Modelview28Arb = ((int)0X873c),
- WeightSumUnityArb = ((int)0X86a6),
- Modelview11Arb = ((int)0X872b),
- Modelview17Arb = ((int)0X8731),
Modelview16Arb = ((int)0X8730),
- Modelview5Arb = ((int)0X8725),
- Modelview10Arb = ((int)0X872a),
+ Modelview17Arb = ((int)0X8731),
+ Modelview18Arb = ((int)0X8732),
+ Modelview19Arb = ((int)0X8733),
+ Modelview20Arb = ((int)0X8734),
+ Modelview21Arb = ((int)0X8735),
+ Modelview22Arb = ((int)0X8736),
+ Modelview23Arb = ((int)0X8737),
+ Modelview24Arb = ((int)0X8738),
+ Modelview25Arb = ((int)0X8739),
+ Modelview26Arb = ((int)0X873a),
+ Modelview27Arb = ((int)0X873b),
+ Modelview28Arb = ((int)0X873c),
+ Modelview29Arb = ((int)0X873d),
+ Modelview30Arb = ((int)0X873e),
+ Modelview31Arb = ((int)0X873f),
}
public enum ArbMatrixPalette
{
- MatrixIndexArrayArb = ((int)0X8844),
- MatrixIndexArraySizeArb = ((int)0X8846),
+ MatrixPaletteArb = ((int)0X8840),
MaxMatrixPaletteStackDepthArb = ((int)0X8841),
MaxPaletteMatricesArb = ((int)0X8842),
+ CurrentPaletteMatrixArb = ((int)0X8843),
+ MatrixIndexArrayArb = ((int)0X8844),
+ CurrentMatrixIndexArb = ((int)0X8845),
+ MatrixIndexArraySizeArb = ((int)0X8846),
MatrixIndexArrayTypeArb = ((int)0X8847),
MatrixIndexArrayStrideArb = ((int)0X8848),
MatrixIndexArrayPointerArb = ((int)0X8849),
- MatrixPaletteArb = ((int)0X8840),
- CurrentPaletteMatrixArb = ((int)0X8843),
- CurrentMatrixIndexArb = ((int)0X8845),
}
public enum ArbTextureEnvCombine
{
- CombineRgbArb = ((int)0X8571),
- Source2AlphaArb = ((int)0X858a),
- Operand2AlphaArb = ((int)0X859a),
- Source0AlphaArb = ((int)0X8588),
- Operand0RgbArb = ((int)0X8590),
SubtractArb = ((int)0X84e7),
- AddSignedArb = ((int)0X8574),
- Source2RgbArb = ((int)0X8582),
- Operand1AlphaArb = ((int)0X8599),
- RgbScaleArb = ((int)0X8573),
- Operand0AlphaArb = ((int)0X8598),
- Source0RgbArb = ((int)0X8580),
CombineArb = ((int)0X8570),
- PreviousArb = ((int)0X8578),
+ CombineRgbArb = ((int)0X8571),
+ CombineAlphaArb = ((int)0X8572),
+ RgbScaleArb = ((int)0X8573),
+ AddSignedArb = ((int)0X8574),
InterpolateArb = ((int)0X8575),
ConstantArb = ((int)0X8576),
+ PrimaryColorArb = ((int)0X8577),
+ PreviousArb = ((int)0X8578),
+ Source0RgbArb = ((int)0X8580),
+ Source1RgbArb = ((int)0X8581),
+ Source2RgbArb = ((int)0X8582),
+ Source0AlphaArb = ((int)0X8588),
+ Source1AlphaArb = ((int)0X8589),
+ Source2AlphaArb = ((int)0X858a),
+ Operand0RgbArb = ((int)0X8590),
Operand1RgbArb = ((int)0X8591),
Operand2RgbArb = ((int)0X8592),
- PrimaryColorArb = ((int)0X8577),
- CombineAlphaArb = ((int)0X8572),
- Source1RgbArb = ((int)0X8581),
- Source1AlphaArb = ((int)0X8589),
+ Operand0AlphaArb = ((int)0X8598),
+ Operand1AlphaArb = ((int)0X8599),
+ Operand2AlphaArb = ((int)0X859a),
}
public enum ArbTextureEnvCrossbar
@@ -6385,11 +6536,11 @@ namespace OpenTK.Graphics
public enum ArbDepthTexture
{
+ DepthComponent16Arb = ((int)0X81a5),
DepthComponent24Arb = ((int)0X81a6),
+ DepthComponent32Arb = ((int)0X81a7),
TextureDepthSizeArb = ((int)0X884a),
DepthTextureModeArb = ((int)0X884b),
- DepthComponent16Arb = ((int)0X81a5),
- DepthComponent32Arb = ((int)0X81a7),
}
public enum ArbShadow
@@ -6410,25 +6561,25 @@ namespace OpenTK.Graphics
public enum ArbVertexProgram
{
- TransposeCurrentMatrixArb = ((int)0X88b7),
- VertexProgramTwoSideArb = ((int)0X8643),
+ ColorSumArb = ((int)0X8458),
+ MaxProgramMatrixStackDepthArb = ((int)0X862e),
+ MaxProgramMatricesArb = ((int)0X862f),
CurrentMatrixStackDepthArb = ((int)0X8640),
+ CurrentMatrixArb = ((int)0X8641),
+ VertexProgramPointSizeArb = ((int)0X8642),
+ VertexProgramTwoSideArb = ((int)0X8643),
ProgramErrorPositionArb = ((int)0X864b),
MaxVertexAttribsArb = ((int)0X8869),
ProgramErrorStringArb = ((int)0X8874),
- MaxProgramMatrixStackDepthArb = ((int)0X862e),
- MaxProgramMatricesArb = ((int)0X862f),
- ColorSumArb = ((int)0X8458),
- CurrentMatrixArb = ((int)0X8641),
- VertexProgramPointSizeArb = ((int)0X8642),
ProgramFormatAsciiArb = ((int)0X8875),
+ TransposeCurrentMatrixArb = ((int)0X88b7),
}
public enum AssemblyProgramTargetArb
{
VertexProgram = ((int)0X8620),
- GeometryProgramNv = ((int)0X8c26),
FragmentProgram = ((int)0X8804),
+ GeometryProgramNv = ((int)0X8c26),
}
public enum AssemblyProgramFormatArb
@@ -6438,44 +6589,44 @@ namespace OpenTK.Graphics
public enum AssemblyProgramParameterArb
{
- MaxProgramAttribs = ((int)0X88ad),
- MaxProgramLocalParameters = ((int)0X88b4),
- ProgramAluInstructionsArb = ((int)0X8805),
- ProgramAttribs = ((int)0X88ac),
- ProgramTemporaries = ((int)0X88a4),
- MaxProgramNativeAddressRegisters = ((int)0X88b3),
- ProgramNativeAluInstructionsArb = ((int)0X8808),
- MaxProgramNativeTexInstructionsArb = ((int)0X880f),
- MaxProgramTexIndirectionsArb = ((int)0X880d),
- ProgramParameters = ((int)0X88a8),
- ProgramNativeTemporaries = ((int)0X88a6),
- MaxProgramNativeTexIndirectionsArb = ((int)0X8810),
- ProgramNativeAttribs = ((int)0X88ae),
- ProgramAddressRegisters = ((int)0X88b0),
- ProgramUnderNativeLimits = ((int)0X88b6),
- ProgramNativeInstructions = ((int)0X88a2),
- MaxProgramParameters = ((int)0X88a9),
- MaxProgramEnvParameters = ((int)0X88b5),
- ProgramFormat = ((int)0X8876),
- MaxProgramTexInstructionsArb = ((int)0X880c),
- MaxProgramInstructions = ((int)0X88a1),
- ProgramTexIndirectionsArb = ((int)0X8807),
- ProgramTexInstructionsArb = ((int)0X8806),
- ProgramNativeParameters = ((int)0X88aa),
- ProgramBinding = ((int)0X8677),
- MaxProgramNativeTemporaries = ((int)0X88a7),
- MaxProgramNativeAttribs = ((int)0X88af),
- MaxProgramAddressRegisters = ((int)0X88b1),
- MaxProgramNativeParameters = ((int)0X88ab),
- ProgramNativeTexInstructionsArb = ((int)0X8809),
- ProgramNativeAddressRegisters = ((int)0X88b2),
- MaxProgramTemporaries = ((int)0X88a5),
ProgramLength = ((int)0X8627),
- MaxProgramAluInstructionsArb = ((int)0X880b),
- MaxProgramNativeAluInstructionsArb = ((int)0X880e),
- MaxProgramNativeInstructions = ((int)0X88a3),
+ ProgramBinding = ((int)0X8677),
+ ProgramAluInstructionsArb = ((int)0X8805),
+ ProgramTexInstructionsArb = ((int)0X8806),
+ ProgramTexIndirectionsArb = ((int)0X8807),
+ ProgramNativeAluInstructionsArb = ((int)0X8808),
+ ProgramNativeTexInstructionsArb = ((int)0X8809),
ProgramNativeTexIndirectionsArb = ((int)0X880a),
+ MaxProgramAluInstructionsArb = ((int)0X880b),
+ MaxProgramTexInstructionsArb = ((int)0X880c),
+ MaxProgramTexIndirectionsArb = ((int)0X880d),
+ MaxProgramNativeAluInstructionsArb = ((int)0X880e),
+ MaxProgramNativeTexInstructionsArb = ((int)0X880f),
+ MaxProgramNativeTexIndirectionsArb = ((int)0X8810),
+ ProgramFormat = ((int)0X8876),
ProgramInstruction = ((int)0X88a0),
+ MaxProgramInstructions = ((int)0X88a1),
+ ProgramNativeInstructions = ((int)0X88a2),
+ MaxProgramNativeInstructions = ((int)0X88a3),
+ ProgramTemporaries = ((int)0X88a4),
+ MaxProgramTemporaries = ((int)0X88a5),
+ ProgramNativeTemporaries = ((int)0X88a6),
+ MaxProgramNativeTemporaries = ((int)0X88a7),
+ ProgramParameters = ((int)0X88a8),
+ MaxProgramParameters = ((int)0X88a9),
+ ProgramNativeParameters = ((int)0X88aa),
+ MaxProgramNativeParameters = ((int)0X88ab),
+ ProgramAttribs = ((int)0X88ac),
+ MaxProgramAttribs = ((int)0X88ad),
+ ProgramNativeAttribs = ((int)0X88ae),
+ MaxProgramNativeAttribs = ((int)0X88af),
+ ProgramAddressRegisters = ((int)0X88b0),
+ MaxProgramAddressRegisters = ((int)0X88b1),
+ ProgramNativeAddressRegisters = ((int)0X88b2),
+ MaxProgramNativeAddressRegisters = ((int)0X88b3),
+ MaxProgramLocalParameters = ((int)0X88b4),
+ MaxProgramEnvParameters = ((int)0X88b5),
+ ProgramUnderNativeLimits = ((int)0X88b6),
}
public enum AssemblyProgramStringParameterArb
@@ -6485,52 +6636,52 @@ namespace OpenTK.Graphics
public enum MatrixModeArb
{
- Matrix23 = ((int)0X88d7),
- Matrix26 = ((int)0X88da),
- Matrix16 = ((int)0X88d0),
- Texture = ((int)0X1702),
- Matrix20 = ((int)0X88d4),
- Matrix30 = ((int)0X88de),
- Matrix10 = ((int)0X88ca),
- Matrix25 = ((int)0X88d9),
- Matrix15 = ((int)0X88cf),
- Matrix21 = ((int)0X88d5),
- Matrix31 = ((int)0X88df),
- Matrix11 = ((int)0X88cb),
- Matrix14 = ((int)0X88ce),
- Matrix8 = ((int)0X88c8),
- Matrix9 = ((int)0X88c9),
+ Modelview = ((int)0X1700),
Projection = ((int)0X1701),
+ Texture = ((int)0X1702),
+ Color = ((int)0X1800),
+ Matrix0 = ((int)0X88c0),
+ Matrix1 = ((int)0X88c1),
Matrix2 = ((int)0X88c2),
Matrix3 = ((int)0X88c3),
- Matrix0 = ((int)0X88c0),
- Matrix28 = ((int)0X88dc),
- Matrix6 = ((int)0X88c6),
- Matrix7 = ((int)0X88c7),
Matrix4 = ((int)0X88c4),
Matrix5 = ((int)0X88c5),
- Color = ((int)0X1800),
- Matrix27 = ((int)0X88db),
- Matrix17 = ((int)0X88d1),
- Matrix29 = ((int)0X88dd),
- Matrix19 = ((int)0X88d3),
- Matrix18 = ((int)0X88d2),
- Matrix13 = ((int)0X88cd),
- Matrix1 = ((int)0X88c1),
- Modelview = ((int)0X1700),
- Matrix24 = ((int)0X88d8),
- Matrix22 = ((int)0X88d6),
+ Matrix6 = ((int)0X88c6),
+ Matrix7 = ((int)0X88c7),
+ Matrix8 = ((int)0X88c8),
+ Matrix9 = ((int)0X88c9),
+ Matrix10 = ((int)0X88ca),
+ Matrix11 = ((int)0X88cb),
Matrix12 = ((int)0X88cc),
+ Matrix13 = ((int)0X88cd),
+ Matrix14 = ((int)0X88ce),
+ Matrix15 = ((int)0X88cf),
+ Matrix16 = ((int)0X88d0),
+ Matrix17 = ((int)0X88d1),
+ Matrix18 = ((int)0X88d2),
+ Matrix19 = ((int)0X88d3),
+ Matrix20 = ((int)0X88d4),
+ Matrix21 = ((int)0X88d5),
+ Matrix22 = ((int)0X88d6),
+ Matrix23 = ((int)0X88d7),
+ Matrix24 = ((int)0X88d8),
+ Matrix25 = ((int)0X88d9),
+ Matrix26 = ((int)0X88da),
+ Matrix27 = ((int)0X88db),
+ Matrix28 = ((int)0X88dc),
+ Matrix29 = ((int)0X88dd),
+ Matrix30 = ((int)0X88de),
+ Matrix31 = ((int)0X88df),
}
public enum VertexAttribParameterArb
{
ArrayEnabled = ((int)0X8622),
- ArrayNormalized = ((int)0X886a),
ArraySize = ((int)0X8623),
- CurrentVertexAttrib = ((int)0X8626),
ArrayStride = ((int)0X8624),
ArrayType = ((int)0X8625),
+ CurrentVertexAttrib = ((int)0X8626),
+ ArrayNormalized = ((int)0X886a),
}
public enum VertexAttribPointerParameterArb
@@ -6540,20 +6691,20 @@ namespace OpenTK.Graphics
public enum VertexAttribPointerTypeArb
{
- UnsignedByte = ((int)0X1401),
Byte = ((int)0X1400),
- UnsignedInt = ((int)0X1405),
+ UnsignedByte = ((int)0X1401),
Short = ((int)0X1402),
+ UnsignedShort = ((int)0X1403),
Int = ((int)0X1404),
+ UnsignedInt = ((int)0X1405),
Float = ((int)0X1406),
Double = ((int)0X140a),
- UnsignedShort = ((int)0X1403),
}
public enum ArbFragmentProgram
{
- MaxTextureImageUnitsArb = ((int)0X8872),
MaxTextureCoordsArb = ((int)0X8871),
+ MaxTextureImageUnitsArb = ((int)0X8872),
}
public enum BufferTargetArb
@@ -6565,27 +6716,27 @@ namespace OpenTK.Graphics
public enum BufferUsageArb
{
StreamDraw = ((int)0X88e0),
- DynamicCopy = ((int)0X88ea),
- StaticDraw = ((int)0X88e4),
- StaticCopy = ((int)0X88e6),
- StaticRead = ((int)0X88e5),
+ StreamRead = ((int)0X88e1),
StreamCopy = ((int)0X88e2),
+ StaticDraw = ((int)0X88e4),
+ StaticRead = ((int)0X88e5),
+ StaticCopy = ((int)0X88e6),
DynamicDraw = ((int)0X88e8),
DynamicRead = ((int)0X88e9),
- StreamRead = ((int)0X88e1),
+ DynamicCopy = ((int)0X88ea),
}
public enum BufferAccessArb
{
+ ReadOnly = ((int)0X88b8),
WriteOnly = ((int)0X88b9),
ReadWrite = ((int)0X88ba),
- ReadOnly = ((int)0X88b8),
}
public enum BufferParameterNameArb
{
- BufferUsage = ((int)0X8765),
BufferSize = ((int)0X8764),
+ BufferUsage = ((int)0X8765),
BufferAccess = ((int)0X88bb),
BufferMapped = ((int)0X88bc),
}
@@ -6597,101 +6748,101 @@ namespace OpenTK.Graphics
public enum ArbVertexBufferObject
{
- ElementArrayBufferBindingArb = ((int)0X8895),
- ArrayBufferBindingArb = ((int)0X8894),
- VertexArrayBufferBindingArb = ((int)0X8896),
- TextureCoordArrayBufferBindingArb = ((int)0X889a),
- ReadOnlyArb = ((int)0X88b8),
- DynamicDrawArb = ((int)0X88e8),
BufferSizeArb = ((int)0X8764),
- SecondaryColorArrayBufferBindingArb = ((int)0X889c),
BufferUsageArb = ((int)0X8765),
- BufferAccessArb = ((int)0X88bb),
- StreamDrawArb = ((int)0X88e0),
- DynamicCopyArb = ((int)0X88ea),
- WeightArrayBufferBindingArb = ((int)0X889e),
- EdgeFlagArrayBufferBindingArb = ((int)0X889b),
- VertexAttribArrayBufferBindingArb = ((int)0X889f),
- NormalArrayBufferBindingArb = ((int)0X8897),
- WriteOnlyArb = ((int)0X88b9),
- ColorArrayBufferBindingArb = ((int)0X8898),
ArrayBufferArb = ((int)0X8892),
- BufferMapPointerArb = ((int)0X88bd),
- StaticDrawArb = ((int)0X88e4),
- ReadWriteArb = ((int)0X88ba),
- BufferMappedArb = ((int)0X88bc),
- StreamCopyArb = ((int)0X88e2),
- StaticReadArb = ((int)0X88e5),
ElementArrayBufferArb = ((int)0X8893),
- StaticCopyArb = ((int)0X88e6),
- StreamReadArb = ((int)0X88e1),
- DynamicReadArb = ((int)0X88e9),
+ ArrayBufferBindingArb = ((int)0X8894),
+ ElementArrayBufferBindingArb = ((int)0X8895),
+ VertexArrayBufferBindingArb = ((int)0X8896),
+ NormalArrayBufferBindingArb = ((int)0X8897),
+ ColorArrayBufferBindingArb = ((int)0X8898),
IndexArrayBufferBindingArb = ((int)0X8899),
+ TextureCoordArrayBufferBindingArb = ((int)0X889a),
+ EdgeFlagArrayBufferBindingArb = ((int)0X889b),
+ SecondaryColorArrayBufferBindingArb = ((int)0X889c),
FogCoordinateArrayBufferBindingArb = ((int)0X889d),
+ WeightArrayBufferBindingArb = ((int)0X889e),
+ VertexAttribArrayBufferBindingArb = ((int)0X889f),
+ ReadOnlyArb = ((int)0X88b8),
+ WriteOnlyArb = ((int)0X88b9),
+ ReadWriteArb = ((int)0X88ba),
+ BufferAccessArb = ((int)0X88bb),
+ BufferMappedArb = ((int)0X88bc),
+ BufferMapPointerArb = ((int)0X88bd),
+ StreamDrawArb = ((int)0X88e0),
+ StreamReadArb = ((int)0X88e1),
+ StreamCopyArb = ((int)0X88e2),
+ StaticDrawArb = ((int)0X88e4),
+ StaticReadArb = ((int)0X88e5),
+ StaticCopyArb = ((int)0X88e6),
+ DynamicDrawArb = ((int)0X88e8),
+ DynamicReadArb = ((int)0X88e9),
+ DynamicCopyArb = ((int)0X88ea),
}
public enum ArbOcclusionQuery
{
- SamplesPassedArb = ((int)0X8914),
- QueryResultArb = ((int)0X8866),
QueryCounterBitsArb = ((int)0X8864),
- QueryResultAvailableArb = ((int)0X8867),
CurrentQueryArb = ((int)0X8865),
+ QueryResultArb = ((int)0X8866),
+ QueryResultAvailableArb = ((int)0X8867),
+ SamplesPassedArb = ((int)0X8914),
}
public enum ArbShaderObjects
{
- IntVec2Arb = ((int)0X8b53),
- IntVec4Arb = ((int)0X8b55),
- FloatVec2Arb = ((int)0X8b50),
- IntVec3Arb = ((int)0X8b54),
- ObjectInfoLogLengthArb = ((int)0X8b84),
- Sampler3DArb = ((int)0X8b5f),
- ObjectTypeArb = ((int)0X8b4e),
ProgramObjectArb = ((int)0X8b40),
- ObjectActiveUniformMaxLengthArb = ((int)0X8b87),
- SamplerCubeArb = ((int)0X8b60),
- Sampler2DArb = ((int)0X8b5e),
- Sampler1DShadowArb = ((int)0X8b61),
- ObjectLinkStatusArb = ((int)0X8b82),
- Sampler1DArb = ((int)0X8b5d),
- BoolVec4Arb = ((int)0X8b59),
- ObjectDeleteStatusArb = ((int)0X8b80),
- FloatVec4Arb = ((int)0X8b52),
- ObjectShaderSourceLengthArb = ((int)0X8b88),
- BoolVec3Arb = ((int)0X8b58),
- ObjectAttachedObjectsArb = ((int)0X8b85),
- FloatVec3Arb = ((int)0X8b51),
- BoolVec2Arb = ((int)0X8b57),
- FloatMat2Arb = ((int)0X8b5a),
- Sampler2DRectShadowArb = ((int)0X8b64),
- ObjectValidateStatusArb = ((int)0X8b83),
- Sampler2DRectArb = ((int)0X8b63),
- FloatMat4Arb = ((int)0X8b5c),
- Sampler2DShadowArb = ((int)0X8b62),
ShaderObjectArb = ((int)0X8b48),
- ObjectActiveUniformsArb = ((int)0X8b86),
- FloatMat3Arb = ((int)0X8b5b),
- BoolArb = ((int)0X8b56),
+ ObjectTypeArb = ((int)0X8b4e),
ObjectSubtypeArb = ((int)0X8b4f),
+ FloatVec2Arb = ((int)0X8b50),
+ FloatVec3Arb = ((int)0X8b51),
+ FloatVec4Arb = ((int)0X8b52),
+ IntVec2Arb = ((int)0X8b53),
+ IntVec3Arb = ((int)0X8b54),
+ IntVec4Arb = ((int)0X8b55),
+ BoolArb = ((int)0X8b56),
+ BoolVec2Arb = ((int)0X8b57),
+ BoolVec3Arb = ((int)0X8b58),
+ BoolVec4Arb = ((int)0X8b59),
+ FloatMat2Arb = ((int)0X8b5a),
+ FloatMat3Arb = ((int)0X8b5b),
+ FloatMat4Arb = ((int)0X8b5c),
+ Sampler1DArb = ((int)0X8b5d),
+ Sampler2DArb = ((int)0X8b5e),
+ Sampler3DArb = ((int)0X8b5f),
+ SamplerCubeArb = ((int)0X8b60),
+ Sampler1DShadowArb = ((int)0X8b61),
+ Sampler2DShadowArb = ((int)0X8b62),
+ Sampler2DRectArb = ((int)0X8b63),
+ Sampler2DRectShadowArb = ((int)0X8b64),
+ ObjectDeleteStatusArb = ((int)0X8b80),
ObjectCompileStatusArb = ((int)0X8b81),
+ ObjectLinkStatusArb = ((int)0X8b82),
+ ObjectValidateStatusArb = ((int)0X8b83),
+ ObjectInfoLogLengthArb = ((int)0X8b84),
+ ObjectAttachedObjectsArb = ((int)0X8b85),
+ ObjectActiveUniformsArb = ((int)0X8b86),
+ ObjectActiveUniformMaxLengthArb = ((int)0X8b87),
+ ObjectShaderSourceLengthArb = ((int)0X8b88),
}
public enum ArbVertexShader
{
- MaxVertexUniformComponentsArb = ((int)0X8b4a),
- ObjectActiveAttributesArb = ((int)0X8b89),
- MaxVertexTextureImageUnitsArb = ((int)0X8b4c),
- MaxVaryingFloatsArb = ((int)0X8b4b),
- MaxCombinedTextureImageUnitsArb = ((int)0X8b4d),
- ObjectActiveAttributeMaxLengthArb = ((int)0X8b8a),
VertexShaderArb = ((int)0X8b31),
+ MaxVertexUniformComponentsArb = ((int)0X8b4a),
+ MaxVaryingFloatsArb = ((int)0X8b4b),
+ MaxVertexTextureImageUnitsArb = ((int)0X8b4c),
+ MaxCombinedTextureImageUnitsArb = ((int)0X8b4d),
+ ObjectActiveAttributesArb = ((int)0X8b89),
+ ObjectActiveAttributeMaxLengthArb = ((int)0X8b8a),
}
public enum ArbFragmentShader
{
- MaxFragmentUniformComponentsArb = ((int)0X8b49),
FragmentShaderArb = ((int)0X8b30),
+ MaxFragmentUniformComponentsArb = ((int)0X8b49),
FragmentShaderDerivativeHintArb = ((int)0X8b8b),
}
@@ -6706,8 +6857,8 @@ namespace OpenTK.Graphics
public enum ArbPointSprite
{
- CoordReplaceArb = ((int)0X8862),
PointSpriteArb = ((int)0X8861),
+ CoordReplaceArb = ((int)0X8862),
}
public enum ArbFragmentProgramShadow
@@ -6716,40 +6867,40 @@ namespace OpenTK.Graphics
public enum ArbDrawBuffers
{
- DrawBuffer9Arb = ((int)0X882e),
- DrawBuffer12Arb = ((int)0X8831),
- DrawBuffer3Arb = ((int)0X8828),
MaxDrawBuffersArb = ((int)0X8824),
- DrawBuffer7Arb = ((int)0X882c),
- DrawBuffer2Arb = ((int)0X8827),
DrawBuffer0Arb = ((int)0X8825),
- DrawBuffer14Arb = ((int)0X8833),
- DrawBuffer6Arb = ((int)0X882b),
- DrawBuffer4Arb = ((int)0X8829),
- DrawBuffer8Arb = ((int)0X882d),
- DrawBuffer13Arb = ((int)0X8832),
DrawBuffer1Arb = ((int)0X8826),
- DrawBuffer11Arb = ((int)0X8830),
- DrawBuffer10Arb = ((int)0X882f),
- DrawBuffer15Arb = ((int)0X8834),
+ DrawBuffer2Arb = ((int)0X8827),
+ DrawBuffer3Arb = ((int)0X8828),
+ DrawBuffer4Arb = ((int)0X8829),
DrawBuffer5Arb = ((int)0X882a),
+ DrawBuffer6Arb = ((int)0X882b),
+ DrawBuffer7Arb = ((int)0X882c),
+ DrawBuffer8Arb = ((int)0X882d),
+ DrawBuffer9Arb = ((int)0X882e),
+ DrawBuffer10Arb = ((int)0X882f),
+ DrawBuffer11Arb = ((int)0X8830),
+ DrawBuffer12Arb = ((int)0X8831),
+ DrawBuffer13Arb = ((int)0X8832),
+ DrawBuffer14Arb = ((int)0X8833),
+ DrawBuffer15Arb = ((int)0X8834),
}
public enum ArbTextureRectangle
{
- TextureBindingRectangleArb = ((int)0X84f6),
- MaxRectangleTextureSizeArb = ((int)0X84f8),
- ProxyTextureRectangleArb = ((int)0X84f7),
TextureRectangleArb = ((int)0X84f5),
+ TextureBindingRectangleArb = ((int)0X84f6),
+ ProxyTextureRectangleArb = ((int)0X84f7),
+ MaxRectangleTextureSizeArb = ((int)0X84f8),
}
public enum ArbColorBufferFloat
{
+ RgbaFloatModeArb = ((int)0X8820),
+ ClampVertexColorArb = ((int)0X891a),
+ ClampFragmentColorArb = ((int)0X891b),
ClampReadColorArb = ((int)0X891c),
FixedOnlyArb = ((int)0X891d),
- RgbaFloatModeArb = ((int)0X8820),
- ClampFragmentColorArb = ((int)0X891b),
- ClampVertexColorArb = ((int)0X891a),
}
public enum ArbHalfFloatPixel
@@ -6759,34 +6910,225 @@ namespace OpenTK.Graphics
public enum ArbTextureFloat
{
- UnsignedNormalizedArb = ((int)0X8c17),
- Intensity16fArb = ((int)0X881d),
- LuminanceAlpha32fArb = ((int)0X8819),
- TextureAlphaTypeArb = ((int)0X8c13),
- LuminanceAlpha16fArb = ((int)0X881f),
- TextureDepthTypeArb = ((int)0X8c16),
- TextureGreenTypeArb = ((int)0X8c11),
- Rgb16fArb = ((int)0X881b),
- TextureBlueTypeArb = ((int)0X8c12),
- Rgba16fArb = ((int)0X881a),
Rgba32fArb = ((int)0X8814),
- Intensity32fArb = ((int)0X8817),
- Luminance16fArb = ((int)0X881e),
- Alpha16fArb = ((int)0X881c),
- Luminance32fArb = ((int)0X8818),
- TextureRedTypeArb = ((int)0X8c10),
- Alpha32fArb = ((int)0X8816),
Rgb32fArb = ((int)0X8815),
+ Alpha32fArb = ((int)0X8816),
+ Intensity32fArb = ((int)0X8817),
+ Luminance32fArb = ((int)0X8818),
+ LuminanceAlpha32fArb = ((int)0X8819),
+ Rgba16fArb = ((int)0X881a),
+ Rgb16fArb = ((int)0X881b),
+ Alpha16fArb = ((int)0X881c),
+ Intensity16fArb = ((int)0X881d),
+ Luminance16fArb = ((int)0X881e),
+ LuminanceAlpha16fArb = ((int)0X881f),
+ TextureRedTypeArb = ((int)0X8c10),
+ TextureGreenTypeArb = ((int)0X8c11),
+ TextureBlueTypeArb = ((int)0X8c12),
+ TextureAlphaTypeArb = ((int)0X8c13),
TextureLuminanceTypeArb = ((int)0X8c14),
TextureIntensityTypeArb = ((int)0X8c15),
+ TextureDepthTypeArb = ((int)0X8c16),
+ UnsignedNormalizedArb = ((int)0X8c17),
}
public enum ArbPixelBufferObject
{
- PixelUnpackBufferBindingArb = ((int)0X88ef),
PixelPackBufferArb = ((int)0X88eb),
PixelUnpackBufferArb = ((int)0X88ec),
PixelPackBufferBindingArb = ((int)0X88ed),
+ PixelUnpackBufferBindingArb = ((int)0X88ef),
+ }
+
+ public enum ArbDepthBufferFloat
+ {
+ DepthComponent32f = ((int)0X8cac),
+ Depth32fStencil8 = ((int)0X8cad),
+ Float32UnsignedInt248Rev = ((int)0X8dad),
+ }
+
+ public enum ArbDrawInstanced
+ {
+ }
+
+ public enum ArbFramebufferObject
+ {
+ InvalidFramebufferOperation = ((int)0X0506),
+ FramebufferAttachmentColorEncoding = ((int)0X8210),
+ FramebufferAttachmentComponentType = ((int)0X8211),
+ FramebufferAttachmentRedSize = ((int)0X8212),
+ FramebufferAttachmentGreenSize = ((int)0X8213),
+ FramebufferAttachmentBlueSize = ((int)0X8214),
+ FramebufferAttachmentAlphaSize = ((int)0X8215),
+ FramebufferAttachmentDepthSize = ((int)0X8216),
+ FramebufferAttachmentStencilSize = ((int)0X8217),
+ FramebufferDefault = ((int)0X8218),
+ FramebufferUndefined = ((int)0X8219),
+ DepthStencilAttachment = ((int)0X821a),
+ Index = ((int)0X8222),
+ MaxRenderbufferSize = ((int)0X84e8),
+ DepthStencil = ((int)0X84f9),
+ UnsignedInt248 = ((int)0X84fa),
+ Depth24Stencil8 = ((int)0X88f0),
+ TextureStencilSize = ((int)0X88f1),
+ TextureRedType = ((int)0X8c10),
+ TextureGreenType = ((int)0X8c11),
+ TextureBlueType = ((int)0X8c12),
+ TextureAlphaType = ((int)0X8c13),
+ TextureLuminanceType = ((int)0X8c14),
+ TextureIntensityType = ((int)0X8c15),
+ TextureDepthType = ((int)0X8c16),
+ UnsignedNormalized = ((int)0X8c17),
+ DrawFramebufferBinding = ((int)0X8ca6),
+ FramebufferBinding = ((int)0X8ca6),
+ RenderbufferBinding = ((int)0X8ca7),
+ ReadFramebuffer = ((int)0X8ca8),
+ DrawFramebuffer = ((int)0X8ca9),
+ ReadFramebufferBinding = ((int)0X8caa),
+ RenderbufferSamples = ((int)0X8cab),
+ FramebufferAttachmentObjectType = ((int)0X8cd0),
+ FramebufferAttachmentObjectName = ((int)0X8cd1),
+ FramebufferAttachmentTextureLevel = ((int)0X8cd2),
+ FramebufferAttachmentTextureCubeMapFace = ((int)0X8cd3),
+ FramebufferAttachmentTextureLayer = ((int)0X8cd4),
+ FramebufferComplete = ((int)0X8cd5),
+ FramebufferIncompleteAttachment = ((int)0X8cd6),
+ FramebufferIncompleteMissingAttachment = ((int)0X8cd7),
+ FramebufferIncompleteDrawBuffer = ((int)0X8cdb),
+ FramebufferIncompleteReadBuffer = ((int)0X8cdc),
+ FramebufferUnsupported = ((int)0X8cdd),
+ MaxColorAttachments = ((int)0X8cdf),
+ ColorAttachment0 = ((int)0X8ce0),
+ ColorAttachment1 = ((int)0X8ce1),
+ ColorAttachment2 = ((int)0X8ce2),
+ ColorAttachment3 = ((int)0X8ce3),
+ ColorAttachment4 = ((int)0X8ce4),
+ ColorAttachment5 = ((int)0X8ce5),
+ ColorAttachment6 = ((int)0X8ce6),
+ ColorAttachment7 = ((int)0X8ce7),
+ ColorAttachment8 = ((int)0X8ce8),
+ ColorAttachment9 = ((int)0X8ce9),
+ ColorAttachment10 = ((int)0X8cea),
+ ColorAttachment11 = ((int)0X8ceb),
+ ColorAttachment12 = ((int)0X8cec),
+ ColorAttachment13 = ((int)0X8ced),
+ ColorAttachment14 = ((int)0X8cee),
+ ColorAttachment15 = ((int)0X8cef),
+ DepthAttachment = ((int)0X8d00),
+ StencilAttachment = ((int)0X8d20),
+ Framebuffer = ((int)0X8d40),
+ Renderbuffer = ((int)0X8d41),
+ RenderbufferWidth = ((int)0X8d42),
+ RenderbufferHeight = ((int)0X8d43),
+ RenderbufferInternalFormat = ((int)0X8d44),
+ StencilIndex1 = ((int)0X8d46),
+ StencilIndex4 = ((int)0X8d47),
+ StencilIndex8 = ((int)0X8d48),
+ StencilIndex16 = ((int)0X8d49),
+ RenderbufferRedSize = ((int)0X8d50),
+ RenderbufferGreenSize = ((int)0X8d51),
+ RenderbufferBlueSize = ((int)0X8d52),
+ RenderbufferAlphaSize = ((int)0X8d53),
+ RenderbufferDepthSize = ((int)0X8d54),
+ RenderbufferStencilSize = ((int)0X8d55),
+ FramebufferIncompleteMultisample = ((int)0X8d56),
+ MaxSamples = ((int)0X8d57),
+ }
+
+ public enum ArbFramebufferSrgb
+ {
+ FramebufferSrgb = ((int)0X8db9),
+ }
+
+ public enum ArbGeometryShader4
+ {
+ LinesAdjacencyArb = ((int)0X000a),
+ LineStripAdjacencyArb = ((int)0X000b),
+ TrianglesAdjacencyArb = ((int)0X000c),
+ TriangleStripAdjacencyArb = ((int)0X000d),
+ ProgramPointSizeArb = ((int)0X8642),
+ MaxVaryingComponents = ((int)0X8b4b),
+ MaxGeometryTextureImageUnitsArb = ((int)0X8c29),
+ FramebufferAttachmentTextureLayer = ((int)0X8cd4),
+ FramebufferAttachmentLayeredArb = ((int)0X8da7),
+ FramebufferIncompleteLayerTargetsArb = ((int)0X8da8),
+ FramebufferIncompleteLayerCountArb = ((int)0X8da9),
+ GeometryShaderArb = ((int)0X8dd9),
+ GeometryVerticesOutArb = ((int)0X8dda),
+ GeometryInputTypeArb = ((int)0X8ddb),
+ GeometryOutputTypeArb = ((int)0X8ddc),
+ MaxGeometryVaryingComponentsArb = ((int)0X8ddd),
+ MaxVertexVaryingComponentsArb = ((int)0X8dde),
+ MaxGeometryUniformComponentsArb = ((int)0X8ddf),
+ MaxGeometryOutputVerticesArb = ((int)0X8de0),
+ MaxGeometryTotalOutputComponentsArb = ((int)0X8de1),
+ }
+
+ public enum ArbHalfFloatVertex
+ {
+ HalfFloat = ((int)0X140b),
+ }
+
+ public enum ArbInstancedArrays
+ {
+ }
+
+ public enum ArbMapBufferRange
+ {
+ MapReadBit = ((int)0X0001),
+ MapWriteBit = ((int)0X0002),
+ MapInvalidateRangeBit = ((int)0X0004),
+ MapInvalidateBufferBit = ((int)0X0008),
+ MapFlushExplicitBit = ((int)0X0010),
+ MapUnsynchronizedBit = ((int)0X0020),
+ }
+
+ public enum ArbTextureBufferObject
+ {
+ TextureBufferArb = ((int)0X8c2a),
+ MaxTextureBufferSizeArb = ((int)0X8c2b),
+ TextureBindingBufferArb = ((int)0X8c2c),
+ TextureBufferDataStoreBindingArb = ((int)0X8c2d),
+ TextureBufferFormatArb = ((int)0X8c2e),
+ }
+
+ public enum ArbTextureCompressionRgtc
+ {
+ CompressedRedRgtc1 = ((int)0X8dbb),
+ CompressedSignedRedRgtc1 = ((int)0X8dbc),
+ CompressedRgRgtc2 = ((int)0X8dbd),
+ CompressedSignedRgRgtc2 = ((int)0X8dbe),
+ }
+
+ public enum ArbTextureRg
+ {
+ Rg = ((int)0X8227),
+ RgInteger = ((int)0X8228),
+ R8 = ((int)0X8229),
+ R16 = ((int)0X822a),
+ Rg8 = ((int)0X822b),
+ Rg16 = ((int)0X822c),
+ R16f = ((int)0X822d),
+ R32f = ((int)0X822e),
+ Rg16f = ((int)0X822f),
+ Rg32f = ((int)0X8230),
+ R8i = ((int)0X8231),
+ R8ui = ((int)0X8232),
+ R16i = ((int)0X8233),
+ R16ui = ((int)0X8234),
+ R32i = ((int)0X8235),
+ R32ui = ((int)0X8236),
+ Rg8i = ((int)0X8237),
+ Rg8ui = ((int)0X8238),
+ Rg16i = ((int)0X8239),
+ Rg16ui = ((int)0X823a),
+ Rg32i = ((int)0X823b),
+ Rg32ui = ((int)0X823c),
+ }
+
+ public enum ArbVertexArrayObject
+ {
+ VertexArrayBinding = ((int)0X85b5),
}
public enum ExtSubtexture
@@ -6807,10 +7149,10 @@ namespace OpenTK.Graphics
public enum ExtPointParameters
{
+ PointSizeMinExt = ((int)0X8126),
+ PointSizeMaxExt = ((int)0X8127),
PointFadeThresholdSizeExt = ((int)0X8128),
DistanceAttenuationExt = ((int)0X8129),
- PointSizeMaxExt = ((int)0X8127),
- PointSizeMinExt = ((int)0X8126),
}
public enum SgixTagSampleBuffer
@@ -6819,10 +7161,10 @@ namespace OpenTK.Graphics
public enum SgixPolynomialFfd
{
- DeformationsMaskSgix = ((int)0X8196),
- TextureDeformationSgix = ((int)0X8195),
- MaxDeformationOrderSgix = ((int)0X8197),
GeometryDeformationSgix = ((int)0X8194),
+ TextureDeformationSgix = ((int)0X8195),
+ DeformationsMaskSgix = ((int)0X8196),
+ MaxDeformationOrderSgix = ((int)0X8197),
}
public enum SgixFlushRaster
@@ -6831,21 +7173,21 @@ namespace OpenTK.Graphics
public enum HpImageTransform
{
- ImageTranslateXHp = ((int)0X8157),
- ImageRotateAngleHp = ((int)0X8159),
- CubicHp = ((int)0X815f),
- ImageRotateOriginYHp = ((int)0X815b),
- ImageTranslateYHp = ((int)0X8158),
- ImageScaleYHp = ((int)0X8156),
- ImageCubicWeightHp = ((int)0X815e),
- PostImageTransformColorTableHp = ((int)0X8162),
- ImageMinFilterHp = ((int)0X815d),
- AverageHp = ((int)0X8160),
- ImageMagFilterHp = ((int)0X815c),
- ProxyPostImageTransformColorTableHp = ((int)0X8163),
ImageScaleXHp = ((int)0X8155),
- ImageTransform2DHp = ((int)0X8161),
+ ImageScaleYHp = ((int)0X8156),
+ ImageTranslateXHp = ((int)0X8157),
+ ImageTranslateYHp = ((int)0X8158),
+ ImageRotateAngleHp = ((int)0X8159),
ImageRotateOriginXHp = ((int)0X815a),
+ ImageRotateOriginYHp = ((int)0X815b),
+ ImageMagFilterHp = ((int)0X815c),
+ ImageMinFilterHp = ((int)0X815d),
+ ImageCubicWeightHp = ((int)0X815e),
+ CubicHp = ((int)0X815f),
+ AverageHp = ((int)0X8160),
+ ImageTransform2DHp = ((int)0X8161),
+ PostImageTransformColorTableHp = ((int)0X8162),
+ ProxyPostImageTransformColorTableHp = ((int)0X8163),
}
public enum IngrPaletteBuffer
@@ -6858,63 +7200,63 @@ namespace OpenTK.Graphics
public enum PgiVertexHints
{
- MaxVertexHintPgi = ((int)0X1a22d),
- VertexDataHintPgi = ((int)0X1a22a),
- Texcoord2BitPgi = ((int)0X20000000),
- Color4BitPgi = ((int)0X00020000),
Vertex23BitPgi = ((int)0X00000004),
- EdgeflagBitPgi = ((int)0X00040000),
- MatShininessBitPgi = ((int)0X02000000),
- Color3BitPgi = ((int)0X00010000),
- IndexBitPgi = ((int)0X00080000),
- Texcoord3BitPgi = ((int)0X40000000),
- MaterialSideHintPgi = ((int)0X1a22c),
- MatAmbientAndDiffuseBitPgi = ((int)0X00200000),
- Texcoord1BitPgi = ((int)0X10000000),
- MatEmissionBitPgi = ((int)0X00800000),
- MatDiffuseBitPgi = ((int)0X00400000),
- VertexConsistentHintPgi = ((int)0X1a22b),
- MatColorIndexesBitPgi = ((int)0X01000000),
- NormalBitPgi = ((int)0X08000000),
Vertex4BitPgi = ((int)0X00000008),
- Texcoord4BitPgi = unchecked((int)0X80000000),
+ Color3BitPgi = ((int)0X00010000),
+ Color4BitPgi = ((int)0X00020000),
+ EdgeflagBitPgi = ((int)0X00040000),
+ IndexBitPgi = ((int)0X00080000),
MatAmbientBitPgi = ((int)0X00100000),
+ MatAmbientAndDiffuseBitPgi = ((int)0X00200000),
+ MatDiffuseBitPgi = ((int)0X00400000),
+ MatEmissionBitPgi = ((int)0X00800000),
+ MatColorIndexesBitPgi = ((int)0X01000000),
+ MatShininessBitPgi = ((int)0X02000000),
MatSpecularBitPgi = ((int)0X04000000),
+ NormalBitPgi = ((int)0X08000000),
+ Texcoord1BitPgi = ((int)0X10000000),
+ VertexDataHintPgi = ((int)0X1a22a),
+ VertexConsistentHintPgi = ((int)0X1a22b),
+ MaterialSideHintPgi = ((int)0X1a22c),
+ MaxVertexHintPgi = ((int)0X1a22d),
+ Texcoord2BitPgi = ((int)0X20000000),
+ Texcoord3BitPgi = ((int)0X40000000),
+ Texcoord4BitPgi = unchecked((int)0X80000000),
}
public enum PgiMiscHints
{
- ClipNearHintPgi = ((int)0X1a220),
- AllowDrawWinHintPgi = ((int)0X1a20f),
- BackNormalsHintPgi = ((int)0X1a223),
- StrictDepthfuncHintPgi = ((int)0X1a216),
- NativeGraphicsHandlePgi = ((int)0X1a202),
- StrictLightingHintPgi = ((int)0X1a217),
- StrictScissorHintPgi = ((int)0X1a218),
- AlwaysFastHintPgi = ((int)0X1a20c),
- ConserveMemoryHintPgi = ((int)0X1a1fd),
PreferDoublebufferHintPgi = ((int)0X1a1f8),
- WideLineHintPgi = ((int)0X1a222),
- ClipFarHintPgi = ((int)0X1a221),
- AllowDrawFrgHintPgi = ((int)0X1a210),
+ ConserveMemoryHintPgi = ((int)0X1a1fd),
+ ReclaimMemoryHintPgi = ((int)0X1a1fe),
+ NativeGraphicsHandlePgi = ((int)0X1a202),
+ NativeGraphicsBeginHintPgi = ((int)0X1a203),
+ NativeGraphicsEndHintPgi = ((int)0X1a204),
+ AlwaysFastHintPgi = ((int)0X1a20c),
AlwaysSoftHintPgi = ((int)0X1a20d),
AllowDrawObjHintPgi = ((int)0X1a20e),
+ AllowDrawWinHintPgi = ((int)0X1a20f),
+ AllowDrawFrgHintPgi = ((int)0X1a210),
AllowDrawMemHintPgi = ((int)0X1a211),
+ StrictDepthfuncHintPgi = ((int)0X1a216),
+ StrictLightingHintPgi = ((int)0X1a217),
+ StrictScissorHintPgi = ((int)0X1a218),
FullStippleHintPgi = ((int)0X1a219),
- NativeGraphicsBeginHintPgi = ((int)0X1a203),
- ReclaimMemoryHintPgi = ((int)0X1a1fe),
- NativeGraphicsEndHintPgi = ((int)0X1a204),
+ ClipNearHintPgi = ((int)0X1a220),
+ ClipFarHintPgi = ((int)0X1a221),
+ WideLineHintPgi = ((int)0X1a222),
+ BackNormalsHintPgi = ((int)0X1a223),
}
public enum ExtPalettedTexture
{
ColorIndex1Ext = ((int)0X80e2),
- ColorIndex8Ext = ((int)0X80e5),
ColorIndex2Ext = ((int)0X80e3),
- ColorIndex16Ext = ((int)0X80e7),
ColorIndex4Ext = ((int)0X80e4),
- TextureIndexSizeExt = ((int)0X80ed),
+ ColorIndex8Ext = ((int)0X80e5),
ColorIndex12Ext = ((int)0X80e6),
+ ColorIndex16Ext = ((int)0X80e7),
+ TextureIndexSizeExt = ((int)0X80ed),
}
public enum ExtClipVolumeHint
@@ -6929,40 +7271,40 @@ namespace OpenTK.Graphics
public enum ExtIndexMaterial
{
IndexMaterialExt = ((int)0X81b8),
- IndexMaterialFaceExt = ((int)0X81ba),
IndexMaterialParameterExt = ((int)0X81b9),
+ IndexMaterialFaceExt = ((int)0X81ba),
}
public enum ExtIndexFunc
{
- IndexTestRefExt = ((int)0X81b7),
- IndexTestFuncExt = ((int)0X81b6),
IndexTestExt = ((int)0X81b5),
+ IndexTestFuncExt = ((int)0X81b6),
+ IndexTestRefExt = ((int)0X81b7),
}
public enum ExtIndexArrayFormats
{
- T2fIuiN3fV2fExt = ((int)0X81b3),
- T2fIuiN3fV3fExt = ((int)0X81b4),
+ IuiV2fExt = ((int)0X81ad),
+ IuiV3fExt = ((int)0X81ae),
+ IuiN3fV2fExt = ((int)0X81af),
+ IuiN3fV3fExt = ((int)0X81b0),
T2fIuiV2fExt = ((int)0X81b1),
T2fIuiV3fExt = ((int)0X81b2),
- IuiV3fExt = ((int)0X81ae),
- IuiN3fV3fExt = ((int)0X81b0),
- IuiN3fV2fExt = ((int)0X81af),
- IuiV2fExt = ((int)0X81ad),
+ T2fIuiN3fV2fExt = ((int)0X81b3),
+ T2fIuiN3fV3fExt = ((int)0X81b4),
}
public enum ExtCompiledVertexArray
{
- ArrayElementLockCountExt = ((int)0X81a9),
ArrayElementLockFirstExt = ((int)0X81a8),
+ ArrayElementLockCountExt = ((int)0X81a9),
}
public enum ExtCullVertex
{
- CullVertexObjectPositionExt = ((int)0X81ac),
CullVertexExt = ((int)0X81aa),
CullVertexEyePositionExt = ((int)0X81ab),
+ CullVertexObjectPositionExt = ((int)0X81ac),
}
public enum IbmRasterposClip
@@ -6973,8 +7315,8 @@ namespace OpenTK.Graphics
public enum HpTextureLighting
{
TextureLightingModeHp = ((int)0X8167),
- TexturePreSpecularHp = ((int)0X8169),
TexturePostSpecularHp = ((int)0X8168),
+ TexturePreSpecularHp = ((int)0X8169),
}
public enum ExtDrawRangeElements
@@ -6985,8 +7327,8 @@ namespace OpenTK.Graphics
public enum WinPhongShading
{
- PhongHintWin = ((int)0X80eb),
PhongWin = ((int)0X80ea),
+ PhongHintWin = ((int)0X80eb),
}
public enum WinSpecularFog
@@ -6996,16 +7338,16 @@ namespace OpenTK.Graphics
public enum ExtLightTexture
{
- ShadowAttenuationExt = ((int)0X834e),
- FragmentDepthExt = ((int)0X8452),
- TextureLightExt = ((int)0X8350),
- AttenuationExt = ((int)0X834d),
- TextureMaterialParameterExt = ((int)0X8352),
FragmentMaterialExt = ((int)0X8349),
FragmentNormalExt = ((int)0X834a),
- TextureMaterialFaceExt = ((int)0X8351),
- TextureApplicationModeExt = ((int)0X834f),
FragmentColorExt = ((int)0X834c),
+ AttenuationExt = ((int)0X834d),
+ ShadowAttenuationExt = ((int)0X834e),
+ TextureApplicationModeExt = ((int)0X834f),
+ TextureLightExt = ((int)0X8350),
+ TextureMaterialFaceExt = ((int)0X8351),
+ TextureMaterialParameterExt = ((int)0X8352),
+ FragmentDepthExt = ((int)0X8452),
}
public enum SgixAsync
@@ -7019,8 +7361,8 @@ namespace OpenTK.Graphics
public enum HpOcclusionTest
{
- OcclusionTestResultHp = ((int)0X8166),
OcclusionTestHp = ((int)0X8165),
+ OcclusionTestResultHp = ((int)0X8166),
}
public enum ExtPixelTransformColorTable
@@ -7029,13 +7371,13 @@ namespace OpenTK.Graphics
public enum ExtSecondaryColor
{
- SecondaryColorArrayPointerExt = ((int)0X845d),
ColorSumExt = ((int)0X8458),
- SecondaryColorArraySizeExt = ((int)0X845a),
CurrentSecondaryColorExt = ((int)0X8459),
+ SecondaryColorArraySizeExt = ((int)0X845a),
SecondaryColorArrayTypeExt = ((int)0X845b),
- SecondaryColorArrayExt = ((int)0X845e),
SecondaryColorArrayStrideExt = ((int)0X845c),
+ SecondaryColorArrayPointerExt = ((int)0X845d),
+ SecondaryColorArrayExt = ((int)0X845e),
}
public enum ExtTexturePerturbNormal
@@ -7050,63 +7392,63 @@ namespace OpenTK.Graphics
public enum ExtFogCoord
{
+ FogCoordinateSourceExt = ((int)0X8450),
+ FogCoordinateExt = ((int)0X8451),
FragmentDepthExt = ((int)0X8452),
CurrentFogCoordinateExt = ((int)0X8453),
+ FogCoordinateArrayTypeExt = ((int)0X8454),
FogCoordinateArrayStrideExt = ((int)0X8455),
FogCoordinateArrayPointerExt = ((int)0X8456),
FogCoordinateArrayExt = ((int)0X8457),
- FogCoordinateExt = ((int)0X8451),
- FogCoordinateArrayTypeExt = ((int)0X8454),
- FogCoordinateSourceExt = ((int)0X8450),
}
public enum RendScreenCoordinates
{
- InvertedScreenWRend = ((int)0X8491),
ScreenCoordinatesRend = ((int)0X8490),
+ InvertedScreenWRend = ((int)0X8491),
}
public enum ExtCoordinateFrame
{
- TangentArrayTypeExt = ((int)0X843e),
- BinormalArrayTypeExt = ((int)0X8440),
- Map1TangentExt = ((int)0X8444),
- CurrentTangentExt = ((int)0X843b),
- Map2BinormalExt = ((int)0X8447),
- CurrentBinormalExt = ((int)0X843c),
- TangentArrayPointerExt = ((int)0X8442),
- Map1BinormalExt = ((int)0X8446),
- BinormalArrayPointerExt = ((int)0X8443),
- BinormalArrayExt = ((int)0X843a),
- Map2TangentExt = ((int)0X8445),
TangentArrayExt = ((int)0X8439),
- BinormalArrayStrideExt = ((int)0X8441),
+ BinormalArrayExt = ((int)0X843a),
+ CurrentTangentExt = ((int)0X843b),
+ CurrentBinormalExt = ((int)0X843c),
+ TangentArrayTypeExt = ((int)0X843e),
TangentArrayStrideExt = ((int)0X843f),
+ BinormalArrayTypeExt = ((int)0X8440),
+ BinormalArrayStrideExt = ((int)0X8441),
+ TangentArrayPointerExt = ((int)0X8442),
+ BinormalArrayPointerExt = ((int)0X8443),
+ Map1TangentExt = ((int)0X8444),
+ Map2TangentExt = ((int)0X8445),
+ Map1BinormalExt = ((int)0X8446),
+ Map2BinormalExt = ((int)0X8447),
}
public enum ExtTextureEnvCombine
{
- Operand2AlphaExt = ((int)0X859a),
- CombineRgbExt = ((int)0X8571),
- Source1AlphaExt = ((int)0X8589),
- Operand1RgbExt = ((int)0X8591),
- PreviousExt = ((int)0X8578),
- Operand1AlphaExt = ((int)0X8599),
- AddSignedExt = ((int)0X8574),
- ConstantExt = ((int)0X8576),
- RgbScaleExt = ((int)0X8573),
- Source0AlphaExt = ((int)0X8588),
- InterpolateExt = ((int)0X8575),
- Source2RgbExt = ((int)0X8582),
- PrimaryColorExt = ((int)0X8577),
CombineExt = ((int)0X8570),
+ CombineRgbExt = ((int)0X8571),
+ CombineAlphaExt = ((int)0X8572),
+ RgbScaleExt = ((int)0X8573),
+ AddSignedExt = ((int)0X8574),
+ InterpolateExt = ((int)0X8575),
+ ConstantExt = ((int)0X8576),
+ PrimaryColorExt = ((int)0X8577),
+ PreviousExt = ((int)0X8578),
Source0RgbExt = ((int)0X8580),
Source1RgbExt = ((int)0X8581),
- Operand0AlphaExt = ((int)0X8598),
- Operand2RgbExt = ((int)0X8592),
- CombineAlphaExt = ((int)0X8572),
+ Source2RgbExt = ((int)0X8582),
+ Source0AlphaExt = ((int)0X8588),
+ Source1AlphaExt = ((int)0X8589),
Source2AlphaExt = ((int)0X858a),
Operand0RgbExt = ((int)0X8590),
+ Operand1RgbExt = ((int)0X8591),
+ Operand2RgbExt = ((int)0X8592),
+ Operand0AlphaExt = ((int)0X8598),
+ Operand1AlphaExt = ((int)0X8599),
+ Operand2AlphaExt = ((int)0X859a),
}
public enum AppleSpecularVector
@@ -7133,29 +7475,29 @@ namespace OpenTK.Graphics
public enum SunGlobalAlpha
{
- GlobalAlphaFactorSun = ((int)0X81da),
GlobalAlphaSun = ((int)0X81d9),
+ GlobalAlphaFactorSun = ((int)0X81da),
}
public enum SunTriangleList
{
- R1uiC4ubV3fSun = ((int)0X85c5),
- ReplaceMiddleSun = ((int)0X0002),
- ReplacementCodeArrayStrideSun = ((int)0X85c2),
RestartSun = ((int)0X0001),
+ ReplaceMiddleSun = ((int)0X0002),
ReplaceOldestSun = ((int)0X0003),
+ TriangleListSun = ((int)0X81d7),
+ ReplacementCodeSun = ((int)0X81d8),
+ ReplacementCodeArraySun = ((int)0X85c0),
ReplacementCodeArrayTypeSun = ((int)0X85c1),
+ ReplacementCodeArrayStrideSun = ((int)0X85c2),
+ ReplacementCodeArrayPointerSun = ((int)0X85c3),
+ R1uiV3fSun = ((int)0X85c4),
+ R1uiC4ubV3fSun = ((int)0X85c5),
+ R1uiC3fV3fSun = ((int)0X85c6),
R1uiN3fV3fSun = ((int)0X85c7),
+ R1uiC4fN3fV3fSun = ((int)0X85c8),
R1uiT2fV3fSun = ((int)0X85c9),
R1uiT2fN3fV3fSun = ((int)0X85ca),
- R1uiV3fSun = ((int)0X85c4),
- ReplacementCodeSun = ((int)0X81d8),
- TriangleListSun = ((int)0X81d7),
R1uiT2fC4fN3fV3fSun = ((int)0X85cb),
- ReplacementCodeArraySun = ((int)0X85c0),
- R1uiC3fV3fSun = ((int)0X85c6),
- R1uiC4fN3fV3fSun = ((int)0X85c8),
- ReplacementCodeArrayPointerSun = ((int)0X85c3),
}
public enum SunVertex
@@ -7164,22 +7506,22 @@ namespace OpenTK.Graphics
public enum ExtBlendFuncSeparate
{
+ BlendDstRgbExt = ((int)0X80c8),
BlendSrcRgbExt = ((int)0X80c9),
BlendDstAlphaExt = ((int)0X80ca),
BlendSrcAlphaExt = ((int)0X80cb),
- BlendDstRgbExt = ((int)0X80c8),
}
public enum IngrColorClamp
{
- BlueMaxClampIngr = ((int)0X8566),
RedMinClampIngr = ((int)0X8560),
- AlphaMinClampIngr = ((int)0X8563),
- AlphaMaxClampIngr = ((int)0X8567),
- GreenMaxClampIngr = ((int)0X8565),
- BlueMinClampIngr = ((int)0X8562),
GreenMinClampIngr = ((int)0X8561),
+ BlueMinClampIngr = ((int)0X8562),
+ AlphaMinClampIngr = ((int)0X8563),
RedMaxClampIngr = ((int)0X8564),
+ GreenMaxClampIngr = ((int)0X8565),
+ BlueMaxClampIngr = ((int)0X8566),
+ AlphaMaxClampIngr = ((int)0X8567),
}
public enum IngrInterlaceRead
@@ -7189,38 +7531,38 @@ namespace OpenTK.Graphics
public enum ExtStencilWrap
{
- DecrWrapExt = ((int)0X8508),
IncrWrapExt = ((int)0X8507),
+ DecrWrapExt = ((int)0X8508),
}
public enum Ext422Pixels
{
- Gl422RevAverageExt = ((int)0X80cf),
+ Gl422Ext = ((int)0X80cc),
Gl422RevExt = ((int)0X80cd),
Gl422AverageExt = ((int)0X80ce),
- Gl422Ext = ((int)0X80cc),
+ Gl422RevAverageExt = ((int)0X80cf),
}
public enum NvTexgenReflection
{
- ReflectionMapNv = ((int)0X8512),
NormalMapNv = ((int)0X8511),
+ ReflectionMapNv = ((int)0X8512),
}
public enum ExtTextureCubeMap
{
- TextureCubeMapExt = ((int)0X8513),
- ProxyTextureCubeMapExt = ((int)0X851b),
- TextureCubeMapNegativeZExt = ((int)0X851a),
- TextureCubeMapPositiveZExt = ((int)0X8519),
- TextureCubeMapPositiveYExt = ((int)0X8517),
- TextureBindingCubeMapExt = ((int)0X8514),
NormalMapExt = ((int)0X8511),
- MaxCubeMapTextureSizeExt = ((int)0X851c),
- TextureCubeMapPositiveXExt = ((int)0X8515),
ReflectionMapExt = ((int)0X8512),
+ TextureCubeMapExt = ((int)0X8513),
+ TextureBindingCubeMapExt = ((int)0X8514),
+ TextureCubeMapPositiveXExt = ((int)0X8515),
TextureCubeMapNegativeXExt = ((int)0X8516),
+ TextureCubeMapPositiveYExt = ((int)0X8517),
TextureCubeMapNegativeYExt = ((int)0X8518),
+ TextureCubeMapPositiveZExt = ((int)0X8519),
+ TextureCubeMapNegativeZExt = ((int)0X851a),
+ ProxyTextureCubeMapExt = ((int)0X851b),
+ MaxCubeMapTextureSizeExt = ((int)0X851c),
}
public enum SunConvolutionBorderModes
@@ -7234,9 +7576,9 @@ namespace OpenTK.Graphics
public enum ExtTextureLodBias
{
- TextureLodBiasExt = ((int)0X8501),
MaxTextureLodBiasExt = ((int)0X84fd),
TextureFilterControlExt = ((int)0X8500),
+ TextureLodBiasExt = ((int)0X8501),
}
public enum ExtTextureFilterAnisotropic
@@ -7247,109 +7589,109 @@ namespace OpenTK.Graphics
public enum ExtVertexWeighting
{
- Modelview1StackDepthExt = ((int)0X8502),
- VertexWeightArraySizeExt = ((int)0X850d),
- Modelview0MatrixExt = ((int)0X0ba6),
- VertexWeightingExt = ((int)0X8509),
- VertexWeightArrayPointerExt = ((int)0X8510),
- Modelview1MatrixExt = ((int)0X8506),
- VertexWeightArrayTypeExt = ((int)0X850e),
Modelview0StackDepthExt = ((int)0X0ba3),
- VertexWeightArrayStrideExt = ((int)0X850f),
+ Modelview0MatrixExt = ((int)0X0ba6),
Modelview0Ext = ((int)0X1700),
+ Modelview1StackDepthExt = ((int)0X8502),
+ Modelview1MatrixExt = ((int)0X8506),
+ VertexWeightingExt = ((int)0X8509),
Modelview1Ext = ((int)0X850a),
CurrentVertexWeightExt = ((int)0X850b),
VertexWeightArrayExt = ((int)0X850c),
+ VertexWeightArraySizeExt = ((int)0X850d),
+ VertexWeightArrayTypeExt = ((int)0X850e),
+ VertexWeightArrayStrideExt = ((int)0X850f),
+ VertexWeightArrayPointerExt = ((int)0X8510),
}
public enum NvLightMaxExponent
{
- MaxSpotExponentNv = ((int)0X8505),
MaxShininessNv = ((int)0X8504),
+ MaxSpotExponentNv = ((int)0X8505),
}
public enum NvVertexArrayRange
{
VertexArrayRangeNv = ((int)0X851d),
- VertexArrayRangeValidNv = ((int)0X851f),
VertexArrayRangeLengthNv = ((int)0X851e),
+ VertexArrayRangeValidNv = ((int)0X851f),
MaxVertexArrayRangeElementNv = ((int)0X8520),
VertexArrayRangePointerNv = ((int)0X8521),
}
public enum NvRegisterCombiners
{
- VariableDNv = ((int)0X8526),
- ETimesFNv = ((int)0X8531),
- CombinerMappingNv = ((int)0X8543),
- CombinerCdOutputNv = ((int)0X854b),
- Combiner7Nv = ((int)0X8557),
- Combiner4Nv = ((int)0X8554),
+ None = ((int)0),
+ Zero = ((int)0),
+ Fog = ((int)0X0b60),
+ Texture0Arb = ((int)0X84c0),
Texture1Arb = ((int)0X84c1),
- HalfBiasNegateNv = ((int)0X853b),
+ RegisterCombinersNv = ((int)0X8522),
VariableANv = ((int)0X8523),
- CombinerComponentUsageNv = ((int)0X8544),
- CombinerSumOutputNv = ((int)0X854c),
- ScaleByFourNv = ((int)0X853f),
- ScaleByTwoNv = ((int)0X853e),
- CombinerBiasNv = ((int)0X8549),
- SignedNegateNv = ((int)0X853d),
+ VariableBNv = ((int)0X8524),
+ VariableCNv = ((int)0X8525),
+ VariableDNv = ((int)0X8526),
VariableENv = ((int)0X8527),
+ VariableFNv = ((int)0X8528),
+ VariableGNv = ((int)0X8529),
+ ConstantColor0Nv = ((int)0X852a),
+ ConstantColor1Nv = ((int)0X852b),
+ PrimaryColorNv = ((int)0X852c),
+ SecondaryColorNv = ((int)0X852d),
+ Spare0Nv = ((int)0X852e),
+ Spare1Nv = ((int)0X852f),
+ DiscardNv = ((int)0X8530),
+ ETimesFNv = ((int)0X8531),
+ Spare0PlusSecondaryColorNv = ((int)0X8532),
+ UnsignedIdentityNv = ((int)0X8536),
+ UnsignedInvertNv = ((int)0X8537),
+ ExpandNormalNv = ((int)0X8538),
+ ExpandNegateNv = ((int)0X8539),
+ HalfBiasNormalNv = ((int)0X853a),
+ HalfBiasNegateNv = ((int)0X853b),
+ SignedIdentityNv = ((int)0X853c),
+ SignedNegateNv = ((int)0X853d),
+ ScaleByTwoNv = ((int)0X853e),
+ ScaleByFourNv = ((int)0X853f),
+ ScaleByOneHalfNv = ((int)0X8540),
BiasByNegativeOneHalfNv = ((int)0X8541),
CombinerInputNv = ((int)0X8542),
- UnsignedInvertNv = ((int)0X8537),
- SignedIdentityNv = ((int)0X853c),
- SecondaryColorNv = ((int)0X852d),
- Combiner3Nv = ((int)0X8553),
- Spare0Nv = ((int)0X852e),
+ CombinerMappingNv = ((int)0X8543),
+ CombinerComponentUsageNv = ((int)0X8544),
CombinerAbDotProductNv = ((int)0X8545),
- None = ((int)0),
- VariableBNv = ((int)0X8524),
- CombinerAbOutputNv = ((int)0X854a),
- Spare1Nv = ((int)0X852f),
- Combiner2Nv = ((int)0X8552),
- ConstantColor0Nv = ((int)0X852a),
- Texture0Arb = ((int)0X84c0),
- Combiner6Nv = ((int)0X8556),
- DiscardNv = ((int)0X8530),
- VariableFNv = ((int)0X8528),
- ExpandNegateNv = ((int)0X8539),
- Combiner1Nv = ((int)0X8551),
- MaxGeneralCombinersNv = ((int)0X854d),
- ColorSumClampNv = ((int)0X854f),
- ScaleByOneHalfNv = ((int)0X8540),
+ CombinerCdDotProductNv = ((int)0X8546),
CombinerMuxSumNv = ((int)0X8547),
CombinerScaleNv = ((int)0X8548),
- VariableCNv = ((int)0X8525),
+ CombinerBiasNv = ((int)0X8549),
+ CombinerAbOutputNv = ((int)0X854a),
+ CombinerCdOutputNv = ((int)0X854b),
+ CombinerSumOutputNv = ((int)0X854c),
+ MaxGeneralCombinersNv = ((int)0X854d),
NumGeneralCombinersNv = ((int)0X854e),
- Fog = ((int)0X0b60),
- Combiner5Nv = ((int)0X8555),
- RegisterCombinersNv = ((int)0X8522),
- ConstantColor1Nv = ((int)0X852b),
- HalfBiasNormalNv = ((int)0X853a),
- Zero = ((int)0),
- UnsignedIdentityNv = ((int)0X8536),
- Spare0PlusSecondaryColorNv = ((int)0X8532),
- VariableGNv = ((int)0X8529),
- PrimaryColorNv = ((int)0X852c),
+ ColorSumClampNv = ((int)0X854f),
Combiner0Nv = ((int)0X8550),
- CombinerCdDotProductNv = ((int)0X8546),
- ExpandNormalNv = ((int)0X8538),
+ Combiner1Nv = ((int)0X8551),
+ Combiner2Nv = ((int)0X8552),
+ Combiner3Nv = ((int)0X8553),
+ Combiner4Nv = ((int)0X8554),
+ Combiner5Nv = ((int)0X8555),
+ Combiner6Nv = ((int)0X8556),
+ Combiner7Nv = ((int)0X8557),
}
public enum NvFogDistance
{
- EyeRadialNv = ((int)0X855b),
EyePlane = ((int)0X2502),
- EyePlaneAbsoluteNv = ((int)0X855c),
FogDistanceModeNv = ((int)0X855a),
+ EyeRadialNv = ((int)0X855b),
+ EyePlaneAbsoluteNv = ((int)0X855c),
}
public enum NvTexgenEmboss
{
+ EmbossLightNv = ((int)0X855d),
EmbossConstantNv = ((int)0X855e),
EmbossMapNv = ((int)0X855f),
- EmbossLightNv = ((int)0X855d),
}
public enum NvBlendSquare
@@ -7358,10 +7700,10 @@ namespace OpenTK.Graphics
public enum NvTextureEnvCombine4
{
- Operand3RgbNv = ((int)0X8593),
Combine4Nv = ((int)0X8503),
- Source3AlphaNv = ((int)0X858b),
Source3RgbNv = ((int)0X8583),
+ Source3AlphaNv = ((int)0X858b),
+ Operand3RgbNv = ((int)0X8593),
Operand3AlphaNv = ((int)0X859b),
}
@@ -7384,58 +7726,58 @@ namespace OpenTK.Graphics
public enum IbmVertexArrayLists
{
- TextureCoordArrayListStrideIbm = ((int)103084),
+ VertexArrayListIbm = ((int)103070),
+ NormalArrayListIbm = ((int)103071),
+ ColorArrayListIbm = ((int)103072),
+ IndexArrayListIbm = ((int)103073),
+ TextureCoordArrayListIbm = ((int)103074),
+ EdgeFlagArrayListIbm = ((int)103075),
+ FogCoordinateArrayListIbm = ((int)103076),
+ SecondaryColorArrayListIbm = ((int)103077),
+ VertexArrayListStrideIbm = ((int)103080),
NormalArrayListStrideIbm = ((int)103081),
ColorArrayListStrideIbm = ((int)103082),
- SecondaryColorArrayListStrideIbm = ((int)103087),
- VertexArrayListIbm = ((int)103070),
- IndexArrayListIbm = ((int)103073),
- NormalArrayListIbm = ((int)103071),
- SecondaryColorArrayListIbm = ((int)103077),
- FogCoordinateArrayListStrideIbm = ((int)103086),
- VertexArrayListStrideIbm = ((int)103080),
- TextureCoordArrayListIbm = ((int)103074),
- ColorArrayListIbm = ((int)103072),
- EdgeFlagArrayListStrideIbm = ((int)103085),
- FogCoordinateArrayListIbm = ((int)103076),
IndexArrayListStrideIbm = ((int)103083),
- EdgeFlagArrayListIbm = ((int)103075),
+ TextureCoordArrayListStrideIbm = ((int)103084),
+ EdgeFlagArrayListStrideIbm = ((int)103085),
+ FogCoordinateArrayListStrideIbm = ((int)103086),
+ SecondaryColorArrayListStrideIbm = ((int)103087),
}
public enum SgixYcrcbSubsample
{
- PixelSubsample2424Sgix = ((int)0X85a3),
- UnpackSubsampleRateSgix = ((int)0X85a1),
PackSubsampleRateSgix = ((int)0X85a0),
- PixelSubsample4242Sgix = ((int)0X85a4),
+ UnpackSubsampleRateSgix = ((int)0X85a1),
PixelSubsample4444Sgix = ((int)0X85a2),
+ PixelSubsample2424Sgix = ((int)0X85a3),
+ PixelSubsample4242Sgix = ((int)0X85a4),
}
public enum SgixYcrcba
{
- YcrcbaSgix = ((int)0X8319),
YcrcbSgix = ((int)0X8318),
+ YcrcbaSgix = ((int)0X8319),
}
public enum SgiDepthPassInstrument
{
- DepthPassInstrumentCountersSgix = ((int)0X8311),
DepthPassInstrumentSgix = ((int)0X8310),
+ DepthPassInstrumentCountersSgix = ((int)0X8311),
DepthPassInstrumentMaxSgix = ((int)0X8312),
}
public enum Gl3DfxTextureCompressionFxt1
{
- CompressedRgbaFxt13Dfx = ((int)0X86b1),
CompressedRgbFxt13Dfx = ((int)0X86b0),
+ CompressedRgbaFxt13Dfx = ((int)0X86b1),
}
public enum Gl3DfxMultisample
{
MultisampleBit3Dfx = ((int)0X20000000),
- Samples3Dfx = ((int)0X86b4),
- SampleBuffers3Dfx = ((int)0X86b3),
Multisample3Dfx = ((int)0X86b2),
+ SampleBuffers3Dfx = ((int)0X86b3),
+ Samples3Dfx = ((int)0X86b4),
}
public enum Gl3DfxTbuffer
@@ -7444,23 +7786,23 @@ namespace OpenTK.Graphics
public enum ExtMultisample
{
- Gl4Pass0Ext = ((int)0X80a4),
- MultisampleExt = ((int)0X809d),
- Gl1PassExt = ((int)0X80a1),
MultisampleBitExt = ((int)0X20000000),
- Gl2Pass0Ext = ((int)0X80a2),
- SamplesExt = ((int)0X80a9),
- SamplePatternExt = ((int)0X80ac),
- SampleMaskValueExt = ((int)0X80aa),
+ MultisampleExt = ((int)0X809d),
SampleAlphaToMaskExt = ((int)0X809e),
- SampleMaskInvertExt = ((int)0X80ab),
- Gl4Pass2Ext = ((int)0X80a6),
- Gl4Pass1Ext = ((int)0X80a5),
- Gl4Pass3Ext = ((int)0X80a7),
- SampleMaskExt = ((int)0X80a0),
- Gl2Pass1Ext = ((int)0X80a3),
- SampleBuffersExt = ((int)0X80a8),
SampleAlphaToOneExt = ((int)0X809f),
+ SampleMaskExt = ((int)0X80a0),
+ Gl1PassExt = ((int)0X80a1),
+ Gl2Pass0Ext = ((int)0X80a2),
+ Gl2Pass1Ext = ((int)0X80a3),
+ Gl4Pass0Ext = ((int)0X80a4),
+ Gl4Pass1Ext = ((int)0X80a5),
+ Gl4Pass2Ext = ((int)0X80a6),
+ Gl4Pass3Ext = ((int)0X80a7),
+ SampleBuffersExt = ((int)0X80a8),
+ SamplesExt = ((int)0X80a9),
+ SampleMaskValueExt = ((int)0X80aa),
+ SampleMaskInvertExt = ((int)0X80ab),
+ SamplePatternExt = ((int)0X80ac),
}
public enum ExtTextureEnvDot3
@@ -7471,14 +7813,14 @@ namespace OpenTK.Graphics
public enum AtiTextureMirrorOnce
{
- MirrorClampToEdgeAti = ((int)0X8743),
MirrorClampAti = ((int)0X8742),
+ MirrorClampToEdgeAti = ((int)0X8743),
}
public enum NvFence
{
- FenceStatusNv = ((int)0X84f3),
AllCompletedNv = ((int)0X84f2),
+ FenceStatusNv = ((int)0X84f3),
FenceConditionNv = ((int)0X84f4),
}
@@ -7489,30 +7831,30 @@ namespace OpenTK.Graphics
public enum NvEvaluators
{
- EvalFractionalTessellationNv = ((int)0X86c5),
- EvalTriangular2DNv = ((int)0X86c1),
- EvalVertexAttrib14Nv = ((int)0X86d4),
- MaxMapTessellationNv = ((int)0X86d6),
- EvalVertexAttrib2Nv = ((int)0X86c8),
- EvalVertexAttrib0Nv = ((int)0X86c6),
- EvalVertexAttrib11Nv = ((int)0X86d1),
- EvalVertexAttrib15Nv = ((int)0X86d5),
- MapAttribVOrderNv = ((int)0X86c4),
- EvalVertexAttrib3Nv = ((int)0X86c9),
- EvalVertexAttrib10Nv = ((int)0X86d0),
- EvalVertexAttrib7Nv = ((int)0X86cd),
- EvalVertexAttrib9Nv = ((int)0X86cf),
- EvalVertexAttrib5Nv = ((int)0X86cb),
- MaxRationalEvalOrderNv = ((int)0X86d7),
- MapTessellationNv = ((int)0X86c2),
Eval2DNv = ((int)0X86c0),
- EvalVertexAttrib6Nv = ((int)0X86cc),
- EvalVertexAttrib8Nv = ((int)0X86ce),
- EvalVertexAttrib4Nv = ((int)0X86ca),
- EvalVertexAttrib1Nv = ((int)0X86c7),
+ EvalTriangular2DNv = ((int)0X86c1),
+ MapTessellationNv = ((int)0X86c2),
MapAttribUOrderNv = ((int)0X86c3),
+ MapAttribVOrderNv = ((int)0X86c4),
+ EvalFractionalTessellationNv = ((int)0X86c5),
+ EvalVertexAttrib0Nv = ((int)0X86c6),
+ EvalVertexAttrib1Nv = ((int)0X86c7),
+ EvalVertexAttrib2Nv = ((int)0X86c8),
+ EvalVertexAttrib3Nv = ((int)0X86c9),
+ EvalVertexAttrib4Nv = ((int)0X86ca),
+ EvalVertexAttrib5Nv = ((int)0X86cb),
+ EvalVertexAttrib6Nv = ((int)0X86cc),
+ EvalVertexAttrib7Nv = ((int)0X86cd),
+ EvalVertexAttrib8Nv = ((int)0X86ce),
+ EvalVertexAttrib9Nv = ((int)0X86cf),
+ EvalVertexAttrib10Nv = ((int)0X86d0),
+ EvalVertexAttrib11Nv = ((int)0X86d1),
EvalVertexAttrib12Nv = ((int)0X86d2),
EvalVertexAttrib13Nv = ((int)0X86d3),
+ EvalVertexAttrib14Nv = ((int)0X86d4),
+ EvalVertexAttrib15Nv = ((int)0X86d5),
+ MaxMapTessellationNv = ((int)0X86d6),
+ MaxRationalEvalOrderNv = ((int)0X86d7),
}
public enum NvPackedDepthStencil
@@ -7532,87 +7874,87 @@ namespace OpenTK.Graphics
public enum NvTextureRectangle
{
- ProxyTextureRectangleNv = ((int)0X84f7),
TextureRectangleNv = ((int)0X84f5),
- MaxRectangleTextureSizeNv = ((int)0X84f8),
TextureBindingRectangleNv = ((int)0X84f6),
+ ProxyTextureRectangleNv = ((int)0X84f7),
+ MaxRectangleTextureSizeNv = ((int)0X84f8),
}
public enum NvTextureShader
{
- HiloNv = ((int)0X86f4),
- OffsetTexture2DMatrixNv = ((int)0X86e1),
- ShaderConsistentNv = ((int)0X86dd),
- OffsetTextureScaleNv = ((int)0X86e2),
- DotProductDiffuseCubeMapNv = ((int)0X86f1),
- SignedAlpha8Nv = ((int)0X8706),
- LoScaleNv = ((int)0X870f),
- SignedIntensity8Nv = ((int)0X8708),
- OffsetTextureRectangleScaleNv = ((int)0X864d),
- TextureShaderNv = ((int)0X86de),
- TextureHiSizeNv = ((int)0X871b),
- PassThroughNv = ((int)0X86e6),
- DependentArTexture2DNv = ((int)0X86e9),
- SignedAlphaNv = ((int)0X8705),
- VibranceBiasNv = ((int)0X8719),
- ConstEyeNv = ((int)0X86e5),
- UnsignedIntS8S888Nv = ((int)0X86da),
- LoBiasNv = ((int)0X8715),
- ShaderOperationNv = ((int)0X86df),
- SignedLuminanceAlphaNv = ((int)0X8703),
- VibranceScaleNv = ((int)0X8713),
- Dsdt8Nv = ((int)0X8709),
- SignedIntensityNv = ((int)0X8707),
- OffsetTexture2DNv = ((int)0X86e8),
- SignedLuminance8Alpha8Nv = ((int)0X8704),
- TextureBorderValuesNv = ((int)0X871a),
- SignedHilo16Nv = ((int)0X86fa),
- DsScaleNv = ((int)0X8710),
- SignedRgb8Nv = ((int)0X86ff),
- DotProductDepthReplaceNv = ((int)0X86ed),
- PreviousTextureInputNv = ((int)0X86e4),
OffsetTextureRectangleNv = ((int)0X864c),
- DependentGbTexture2DNv = ((int)0X86ea),
- CullFragmentNv = ((int)0X86e7),
- DotProductTexture2DNv = ((int)0X86ee),
- OffsetTextureMatrixNv = ((int)0X86e1),
- RgbaUnsignedDotProductMappingNv = ((int)0X86d9),
- SignedRgbNv = ((int)0X86fe),
- HiBiasNv = ((int)0X8714),
- Dsdt8Mag8Intensity8Nv = ((int)0X870b),
- OffsetTexture2DScaleNv = ((int)0X86e2),
- CullModesNv = ((int)0X86e0),
- DotProductReflectCubeMapNv = ((int)0X86f2),
- SignedRgbaNv = ((int)0X86fb),
- TextureLoSizeNv = ((int)0X871c),
- DtBiasNv = ((int)0X8717),
- DsdtMagNv = ((int)0X86f6),
- Hilo16Nv = ((int)0X86f8),
- DotProductConstEyeReflectCubeMapNv = ((int)0X86f3),
- DsdtMagVibNv = ((int)0X86f7),
- SignedHiloNv = ((int)0X86f9),
- DotProductTextureCubeMapNv = ((int)0X86f0),
- Dsdt8Mag8Nv = ((int)0X870a),
- SignedRgbUnsignedAlphaNv = ((int)0X870c),
+ OffsetTextureRectangleScaleNv = ((int)0X864d),
DotProductTextureRectangleNv = ((int)0X864e),
- SignedRgb8UnsignedAlpha8Nv = ((int)0X870d),
- MagnitudeScaleNv = ((int)0X8712),
- MagnitudeBiasNv = ((int)0X8718),
- OffsetTextureBiasNv = ((int)0X86e3),
- SignedLuminance8Nv = ((int)0X8702),
- DtScaleNv = ((int)0X8711),
- SignedLuminanceNv = ((int)0X8701),
- DsdtNv = ((int)0X86f5),
- TextureDtSizeNv = ((int)0X871e),
- DotProductNv = ((int)0X86ec),
- HiScaleNv = ((int)0X870e),
- DsdtMagIntensityNv = ((int)0X86dc),
- OffsetTexture2DBiasNv = ((int)0X86e3),
- TextureDsSizeNv = ((int)0X871d),
- SignedRgba8Nv = ((int)0X86fc),
- TextureMagSizeNv = ((int)0X871f),
+ RgbaUnsignedDotProductMappingNv = ((int)0X86d9),
+ UnsignedIntS8S888Nv = ((int)0X86da),
UnsignedInt88S8S8RevNv = ((int)0X86db),
+ DsdtMagIntensityNv = ((int)0X86dc),
+ ShaderConsistentNv = ((int)0X86dd),
+ TextureShaderNv = ((int)0X86de),
+ ShaderOperationNv = ((int)0X86df),
+ CullModesNv = ((int)0X86e0),
+ OffsetTexture2DMatrixNv = ((int)0X86e1),
+ OffsetTextureMatrixNv = ((int)0X86e1),
+ OffsetTexture2DScaleNv = ((int)0X86e2),
+ OffsetTextureScaleNv = ((int)0X86e2),
+ OffsetTexture2DBiasNv = ((int)0X86e3),
+ OffsetTextureBiasNv = ((int)0X86e3),
+ PreviousTextureInputNv = ((int)0X86e4),
+ ConstEyeNv = ((int)0X86e5),
+ PassThroughNv = ((int)0X86e6),
+ CullFragmentNv = ((int)0X86e7),
+ OffsetTexture2DNv = ((int)0X86e8),
+ DependentArTexture2DNv = ((int)0X86e9),
+ DependentGbTexture2DNv = ((int)0X86ea),
+ DotProductNv = ((int)0X86ec),
+ DotProductDepthReplaceNv = ((int)0X86ed),
+ DotProductTexture2DNv = ((int)0X86ee),
+ DotProductTextureCubeMapNv = ((int)0X86f0),
+ DotProductDiffuseCubeMapNv = ((int)0X86f1),
+ DotProductReflectCubeMapNv = ((int)0X86f2),
+ DotProductConstEyeReflectCubeMapNv = ((int)0X86f3),
+ HiloNv = ((int)0X86f4),
+ DsdtNv = ((int)0X86f5),
+ DsdtMagNv = ((int)0X86f6),
+ DsdtMagVibNv = ((int)0X86f7),
+ Hilo16Nv = ((int)0X86f8),
+ SignedHiloNv = ((int)0X86f9),
+ SignedHilo16Nv = ((int)0X86fa),
+ SignedRgbaNv = ((int)0X86fb),
+ SignedRgba8Nv = ((int)0X86fc),
+ SignedRgbNv = ((int)0X86fe),
+ SignedRgb8Nv = ((int)0X86ff),
+ SignedLuminanceNv = ((int)0X8701),
+ SignedLuminance8Nv = ((int)0X8702),
+ SignedLuminanceAlphaNv = ((int)0X8703),
+ SignedLuminance8Alpha8Nv = ((int)0X8704),
+ SignedAlphaNv = ((int)0X8705),
+ SignedAlpha8Nv = ((int)0X8706),
+ SignedIntensityNv = ((int)0X8707),
+ SignedIntensity8Nv = ((int)0X8708),
+ Dsdt8Nv = ((int)0X8709),
+ Dsdt8Mag8Nv = ((int)0X870a),
+ Dsdt8Mag8Intensity8Nv = ((int)0X870b),
+ SignedRgbUnsignedAlphaNv = ((int)0X870c),
+ SignedRgb8UnsignedAlpha8Nv = ((int)0X870d),
+ HiScaleNv = ((int)0X870e),
+ LoScaleNv = ((int)0X870f),
+ DsScaleNv = ((int)0X8710),
+ DtScaleNv = ((int)0X8711),
+ MagnitudeScaleNv = ((int)0X8712),
+ VibranceScaleNv = ((int)0X8713),
+ HiBiasNv = ((int)0X8714),
+ LoBiasNv = ((int)0X8715),
DsBiasNv = ((int)0X8716),
+ DtBiasNv = ((int)0X8717),
+ MagnitudeBiasNv = ((int)0X8718),
+ VibranceBiasNv = ((int)0X8719),
+ TextureBorderValuesNv = ((int)0X871a),
+ TextureHiSizeNv = ((int)0X871b),
+ TextureLoSizeNv = ((int)0X871c),
+ TextureDsSizeNv = ((int)0X871d),
+ TextureDtSizeNv = ((int)0X871e),
+ TextureMagSizeNv = ((int)0X871f),
}
public enum NvTextureShader2
@@ -7627,89 +7969,89 @@ namespace OpenTK.Graphics
public enum NvVertexProgram
{
- VertexProgramTwoSideNv = ((int)0X8643),
+ VertexProgramNv = ((int)0X8620),
+ VertexStateProgramNv = ((int)0X8621),
AttribArraySizeNv = ((int)0X8623),
- VertexAttribArray8Nv = ((int)0X8658),
- VertexAttribArray10Nv = ((int)0X865a),
- Map2VertexAttrib54Nv = ((int)0X8675),
- Map1VertexAttrib54Nv = ((int)0X8665),
- VertexAttribArray13Nv = ((int)0X865d),
- Map2VertexAttrib64Nv = ((int)0X8676),
- TrackMatrixTransformNv = ((int)0X8649),
- ProgramResidentNv = ((int)0X8647),
- Map1VertexAttrib144Nv = ((int)0X866e),
- Matrix5Nv = ((int)0X8635),
- Map1VertexAttrib24Nv = ((int)0X8662),
- VertexAttribArray14Nv = ((int)0X865e),
- VertexAttribArray11Nv = ((int)0X865b),
- ProgramLengthNv = ((int)0X8627),
- VertexAttribArray7Nv = ((int)0X8657),
- Map2VertexAttrib34Nv = ((int)0X8673),
- VertexProgramPointSizeNv = ((int)0X8642),
- Matrix4Nv = ((int)0X8634),
- VertexAttribArray1Nv = ((int)0X8651),
- Map2VertexAttrib124Nv = ((int)0X867c),
- Map2VertexAttrib84Nv = ((int)0X8678),
AttribArrayStrideNv = ((int)0X8624),
- VertexAttribArray5Nv = ((int)0X8655),
- ProgramParameterNv = ((int)0X8644),
- Map2VertexAttrib134Nv = ((int)0X867d),
- Matrix7Nv = ((int)0X8637),
+ AttribArrayTypeNv = ((int)0X8625),
+ CurrentAttribNv = ((int)0X8626),
+ ProgramLengthNv = ((int)0X8627),
+ ProgramStringNv = ((int)0X8628),
+ ModelviewProjectionNv = ((int)0X8629),
+ IdentityNv = ((int)0X862a),
+ InverseNv = ((int)0X862b),
TransposeNv = ((int)0X862c),
+ InverseTransposeNv = ((int)0X862d),
+ MaxTrackMatrixStackDepthNv = ((int)0X862e),
+ MaxTrackMatricesNv = ((int)0X862f),
+ Matrix0Nv = ((int)0X8630),
+ Matrix1Nv = ((int)0X8631),
+ Matrix2Nv = ((int)0X8632),
+ Matrix3Nv = ((int)0X8633),
+ Matrix4Nv = ((int)0X8634),
+ Matrix5Nv = ((int)0X8635),
+ Matrix6Nv = ((int)0X8636),
+ Matrix7Nv = ((int)0X8637),
+ CurrentMatrixStackDepthNv = ((int)0X8640),
+ CurrentMatrixNv = ((int)0X8641),
+ VertexProgramPointSizeNv = ((int)0X8642),
+ VertexProgramTwoSideNv = ((int)0X8643),
+ ProgramParameterNv = ((int)0X8644),
+ AttribArrayPointerNv = ((int)0X8645),
+ ProgramTargetNv = ((int)0X8646),
+ ProgramResidentNv = ((int)0X8647),
+ TrackMatrixNv = ((int)0X8648),
+ TrackMatrixTransformNv = ((int)0X8649),
VertexProgramBindingNv = ((int)0X864a),
ProgramErrorPositionNv = ((int)0X864b),
- CurrentMatrixStackDepthNv = ((int)0X8640),
- Map1VertexAttrib44Nv = ((int)0X8664),
- Matrix6Nv = ((int)0X8636),
- VertexAttribArray2Nv = ((int)0X8652),
- Map2VertexAttrib04Nv = ((int)0X8670),
- Map1VertexAttrib94Nv = ((int)0X8669),
- AttribArrayPointerNv = ((int)0X8645),
- Map1VertexAttrib14Nv = ((int)0X8661),
- Map2VertexAttrib114Nv = ((int)0X867b),
- Map2VertexAttrib144Nv = ((int)0X867e),
- Map2VertexAttrib24Nv = ((int)0X8672),
- VertexProgramNv = ((int)0X8620),
- Matrix1Nv = ((int)0X8631),
- VertexStateProgramNv = ((int)0X8621),
- Map2VertexAttrib154Nv = ((int)0X867f),
- InverseTransposeNv = ((int)0X862d),
VertexAttribArray0Nv = ((int)0X8650),
- VertexAttribArray15Nv = ((int)0X865f),
- Map1VertexAttrib64Nv = ((int)0X8666),
- TrackMatrixNv = ((int)0X8648),
- VertexAttribArray9Nv = ((int)0X8659),
- CurrentMatrixNv = ((int)0X8641),
- ProgramTargetNv = ((int)0X8646),
- MaxTrackMatrixStackDepthNv = ((int)0X862e),
- CurrentAttribNv = ((int)0X8626),
- VertexAttribArray4Nv = ((int)0X8654),
- Matrix0Nv = ((int)0X8630),
- Map2VertexAttrib74Nv = ((int)0X8677),
- InverseNv = ((int)0X862b),
- VertexAttribArray12Nv = ((int)0X865c),
- IdentityNv = ((int)0X862a),
- Map2VertexAttrib104Nv = ((int)0X867a),
- VertexAttribArray6Nv = ((int)0X8656),
- Map1VertexAttrib104Nv = ((int)0X866a),
- Map1VertexAttrib34Nv = ((int)0X8663),
- Map1VertexAttrib114Nv = ((int)0X866b),
+ VertexAttribArray1Nv = ((int)0X8651),
+ VertexAttribArray2Nv = ((int)0X8652),
VertexAttribArray3Nv = ((int)0X8653),
- Map2VertexAttrib44Nv = ((int)0X8674),
- ProgramStringNv = ((int)0X8628),
- Matrix3Nv = ((int)0X8633),
- Map1VertexAttrib84Nv = ((int)0X8668),
- Map1VertexAttrib74Nv = ((int)0X8667),
- Map2VertexAttrib94Nv = ((int)0X8679),
- Map1VertexAttrib154Nv = ((int)0X866f),
+ VertexAttribArray4Nv = ((int)0X8654),
+ VertexAttribArray5Nv = ((int)0X8655),
+ VertexAttribArray6Nv = ((int)0X8656),
+ VertexAttribArray7Nv = ((int)0X8657),
+ VertexAttribArray8Nv = ((int)0X8658),
+ VertexAttribArray9Nv = ((int)0X8659),
+ VertexAttribArray10Nv = ((int)0X865a),
+ VertexAttribArray11Nv = ((int)0X865b),
+ VertexAttribArray12Nv = ((int)0X865c),
+ VertexAttribArray13Nv = ((int)0X865d),
+ VertexAttribArray14Nv = ((int)0X865e),
+ VertexAttribArray15Nv = ((int)0X865f),
Map1VertexAttrib04Nv = ((int)0X8660),
- MaxTrackMatricesNv = ((int)0X862f),
- ModelviewProjectionNv = ((int)0X8629),
- Map2VertexAttrib14Nv = ((int)0X8671),
+ Map1VertexAttrib14Nv = ((int)0X8661),
+ Map1VertexAttrib24Nv = ((int)0X8662),
+ Map1VertexAttrib34Nv = ((int)0X8663),
+ Map1VertexAttrib44Nv = ((int)0X8664),
+ Map1VertexAttrib54Nv = ((int)0X8665),
+ Map1VertexAttrib64Nv = ((int)0X8666),
+ Map1VertexAttrib74Nv = ((int)0X8667),
+ Map1VertexAttrib84Nv = ((int)0X8668),
+ Map1VertexAttrib94Nv = ((int)0X8669),
+ Map1VertexAttrib104Nv = ((int)0X866a),
+ Map1VertexAttrib114Nv = ((int)0X866b),
Map1VertexAttrib124Nv = ((int)0X866c),
- AttribArrayTypeNv = ((int)0X8625),
- Matrix2Nv = ((int)0X8632),
Map1VertexAttrib134Nv = ((int)0X866d),
+ Map1VertexAttrib144Nv = ((int)0X866e),
+ Map1VertexAttrib154Nv = ((int)0X866f),
+ Map2VertexAttrib04Nv = ((int)0X8670),
+ Map2VertexAttrib14Nv = ((int)0X8671),
+ Map2VertexAttrib24Nv = ((int)0X8672),
+ Map2VertexAttrib34Nv = ((int)0X8673),
+ Map2VertexAttrib44Nv = ((int)0X8674),
+ Map2VertexAttrib54Nv = ((int)0X8675),
+ Map2VertexAttrib64Nv = ((int)0X8676),
+ Map2VertexAttrib74Nv = ((int)0X8677),
+ Map2VertexAttrib84Nv = ((int)0X8678),
+ Map2VertexAttrib94Nv = ((int)0X8679),
+ Map2VertexAttrib104Nv = ((int)0X867a),
+ Map2VertexAttrib114Nv = ((int)0X867b),
+ Map2VertexAttrib124Nv = ((int)0X867c),
+ Map2VertexAttrib134Nv = ((int)0X867d),
+ Map2VertexAttrib144Nv = ((int)0X867e),
+ Map2VertexAttrib154Nv = ((int)0X867f),
}
public enum SgixScalebiasHint
@@ -7731,12 +8073,12 @@ namespace OpenTK.Graphics
public enum OmlResample
{
- ResampleReplicateOml = ((int)0X8986),
PackResampleOml = ((int)0X8984),
- ResampleZeroFillOml = ((int)0X8987),
- ResampleDecimateOml = ((int)0X8989),
UnpackResampleOml = ((int)0X8985),
+ ResampleReplicateOml = ((int)0X8986),
+ ResampleZeroFillOml = ((int)0X8987),
ResampleAverageOml = ((int)0X8988),
+ ResampleDecimateOml = ((int)0X8989),
}
public enum NvCopyDepthToColor
@@ -7747,281 +8089,281 @@ namespace OpenTK.Graphics
public enum AtiEnvmapBumpmap
{
- DudvAti = ((int)0X8779),
- BumpEnvmapAti = ((int)0X877b),
- BumpTexUnitsAti = ((int)0X8778),
- BumpTargetAti = ((int)0X877c),
BumpRotMatrixAti = ((int)0X8775),
- Du8dv8Ati = ((int)0X877a),
- BumpNumTexUnitsAti = ((int)0X8777),
BumpRotMatrixSizeAti = ((int)0X8776),
+ BumpNumTexUnitsAti = ((int)0X8777),
+ BumpTexUnitsAti = ((int)0X8778),
+ DudvAti = ((int)0X8779),
+ Du8dv8Ati = ((int)0X877a),
+ BumpEnvmapAti = ((int)0X877b),
+ BumpTargetAti = ((int)0X877c),
}
public enum AtiFragmentShader
{
- Con2Ati = ((int)0X8943),
- Dot4Ati = ((int)0X8967),
- FragmentShaderAti = ((int)0X8920),
- Con4Ati = ((int)0X8945),
- Con17Ati = ((int)0X8952),
- Reg25Ati = ((int)0X893a),
- Reg30Ati = ((int)0X893f),
- Con20Ati = ((int)0X8955),
- Reg19Ati = ((int)0X8934),
- LerpAti = ((int)0X8969),
- Con21Ati = ((int)0X8956),
- Reg8Ati = ((int)0X8929),
- Reg12Ati = ((int)0X892d),
- Con12Ati = ((int)0X894d),
- Con28Ati = ((int)0X895d),
- Reg11Ati = ((int)0X892c),
- Reg26Ati = ((int)0X893b),
- Reg31Ati = ((int)0X8940),
- Dot2AddAti = ((int)0X896c),
- NumInputInterpolatorComponentsAti = ((int)0X8973),
- Reg5Ati = ((int)0X8926),
- Con29Ati = ((int)0X895e),
- NumInstructionsPerPassAti = ((int)0X8971),
- Con10Ati = ((int)0X894b),
- Con22Ati = ((int)0X8957),
- SwizzleStrqAti = ((int)0X897a),
- SwizzleStqAti = ((int)0X8977),
- AddAti = ((int)0X8963),
- Con6Ati = ((int)0X8947),
- Con1Ati = ((int)0X8942),
- Con11Ati = ((int)0X894c),
- Reg27Ati = ((int)0X893c),
- Dot3Ati = ((int)0X8966),
- Reg28Ati = ((int)0X893d),
- Con3Ati = ((int)0X8944),
- Con18Ati = ((int)0X8953),
- SwizzleStrqDqAti = ((int)0X897b),
+ Gl2XBitAti = ((int)0X00000001),
+ RedBitAti = ((int)0X00000001),
CompBitAti = ((int)0X00000002),
- Con23Ati = ((int)0X8958),
- Con5Ati = ((int)0X8946),
- Con19Ati = ((int)0X8954),
- SecondaryInterpolatorAti = ((int)0X896d),
- Reg13Ati = ((int)0X892e),
- Reg20Ati = ((int)0X8935),
- Con8Ati = ((int)0X8949),
- NumPassesAti = ((int)0X8970),
- Reg29Ati = ((int)0X893e),
- NegateBitAti = ((int)0X00000004),
- Reg2Ati = ((int)0X8923),
- Reg7Ati = ((int)0X8928),
- Reg9Ati = ((int)0X892a),
+ Gl4XBitAti = ((int)0X00000002),
GreenBitAti = ((int)0X00000002),
- Reg14Ati = ((int)0X892f),
+ BlueBitAti = ((int)0X00000004),
+ Gl8XBitAti = ((int)0X00000004),
+ NegateBitAti = ((int)0X00000004),
+ BiasBitAti = ((int)0X00000008),
+ HalfBitAti = ((int)0X00000008),
+ QuarterBitAti = ((int)0X00000010),
+ EighthBitAti = ((int)0X00000020),
+ SaturateBitAti = ((int)0X00000040),
+ FragmentShaderAti = ((int)0X8920),
Reg0Ati = ((int)0X8921),
- Cnd0Ati = ((int)0X896b),
- SwizzleStrDrAti = ((int)0X8978),
- Reg15Ati = ((int)0X8930),
- Con13Ati = ((int)0X894e),
- Reg21Ati = ((int)0X8936),
+ Reg1Ati = ((int)0X8922),
+ Reg2Ati = ((int)0X8923),
+ Reg3Ati = ((int)0X8924),
+ Reg4Ati = ((int)0X8925),
+ Reg5Ati = ((int)0X8926),
Reg6Ati = ((int)0X8927),
- SubAti = ((int)0X8965),
+ Reg7Ati = ((int)0X8928),
+ Reg8Ati = ((int)0X8929),
+ Reg9Ati = ((int)0X892a),
+ Reg10Ati = ((int)0X892b),
+ Reg11Ati = ((int)0X892c),
+ Reg12Ati = ((int)0X892d),
+ Reg13Ati = ((int)0X892e),
+ Reg14Ati = ((int)0X892f),
+ Reg15Ati = ((int)0X8930),
+ Reg16Ati = ((int)0X8931),
+ Reg17Ati = ((int)0X8932),
+ Reg18Ati = ((int)0X8933),
+ Reg19Ati = ((int)0X8934),
+ Reg20Ati = ((int)0X8935),
+ Reg21Ati = ((int)0X8936),
+ Reg22Ati = ((int)0X8937),
+ Reg23Ati = ((int)0X8938),
+ Reg24Ati = ((int)0X8939),
+ Reg25Ati = ((int)0X893a),
+ Reg26Ati = ((int)0X893b),
+ Reg27Ati = ((int)0X893c),
+ Reg28Ati = ((int)0X893d),
+ Reg29Ati = ((int)0X893e),
+ Reg30Ati = ((int)0X893f),
+ Reg31Ati = ((int)0X8940),
+ Con0Ati = ((int)0X8941),
+ Con1Ati = ((int)0X8942),
+ Con2Ati = ((int)0X8943),
+ Con3Ati = ((int)0X8944),
+ Con4Ati = ((int)0X8945),
+ Con5Ati = ((int)0X8946),
+ Con6Ati = ((int)0X8947),
+ Con7Ati = ((int)0X8948),
+ Con8Ati = ((int)0X8949),
+ Con9Ati = ((int)0X894a),
+ Con10Ati = ((int)0X894b),
+ Con11Ati = ((int)0X894c),
+ Con12Ati = ((int)0X894d),
+ Con13Ati = ((int)0X894e),
+ Con14Ati = ((int)0X894f),
+ Con15Ati = ((int)0X8950),
+ Con16Ati = ((int)0X8951),
+ Con17Ati = ((int)0X8952),
+ Con18Ati = ((int)0X8953),
+ Con19Ati = ((int)0X8954),
+ Con20Ati = ((int)0X8955),
+ Con21Ati = ((int)0X8956),
+ Con22Ati = ((int)0X8957),
+ Con23Ati = ((int)0X8958),
Con24Ati = ((int)0X8959),
Con25Ati = ((int)0X895a),
- MadAti = ((int)0X8968),
- SaturateBitAti = ((int)0X00000040),
- MulAti = ((int)0X8964),
- Con7Ati = ((int)0X8948),
- ColorAlphaPairingAti = ((int)0X8975),
- NumFragmentConstantsAti = ((int)0X896f),
- BlueBitAti = ((int)0X00000004),
- Con30Ati = ((int)0X895f),
- EighthBitAti = ((int)0X00000020),
- Reg16Ati = ((int)0X8931),
- MovAti = ((int)0X8961),
- Reg22Ati = ((int)0X8937),
- BiasBitAti = ((int)0X00000008),
- Con9Ati = ((int)0X894a),
- Con14Ati = ((int)0X894f),
Con26Ati = ((int)0X895b),
- Con31Ati = ((int)0X8960),
- QuarterBitAti = ((int)0X00000010),
- NumFragmentRegistersAti = ((int)0X896e),
- SwizzleStqDqAti = ((int)0X8979),
- Con15Ati = ((int)0X8950),
- CndAti = ((int)0X896a),
- Reg18Ati = ((int)0X8933),
- Reg17Ati = ((int)0X8932),
- Reg23Ati = ((int)0X8938),
- NumLoopbackComponentsAti = ((int)0X8974),
- Reg4Ati = ((int)0X8925),
- Reg3Ati = ((int)0X8924),
Con27Ati = ((int)0X895c),
- Gl8XBitAti = ((int)0X00000004),
+ Con28Ati = ((int)0X895d),
+ Con29Ati = ((int)0X895e),
+ Con30Ati = ((int)0X895f),
+ Con31Ati = ((int)0X8960),
+ MovAti = ((int)0X8961),
+ AddAti = ((int)0X8963),
+ MulAti = ((int)0X8964),
+ SubAti = ((int)0X8965),
+ Dot3Ati = ((int)0X8966),
+ Dot4Ati = ((int)0X8967),
+ MadAti = ((int)0X8968),
+ LerpAti = ((int)0X8969),
+ CndAti = ((int)0X896a),
+ Cnd0Ati = ((int)0X896b),
+ Dot2AddAti = ((int)0X896c),
+ SecondaryInterpolatorAti = ((int)0X896d),
+ NumFragmentRegistersAti = ((int)0X896e),
+ NumFragmentConstantsAti = ((int)0X896f),
+ NumPassesAti = ((int)0X8970),
+ NumInstructionsPerPassAti = ((int)0X8971),
NumInstructionsTotalAti = ((int)0X8972),
- HalfBitAti = ((int)0X00000008),
- Reg1Ati = ((int)0X8922),
+ NumInputInterpolatorComponentsAti = ((int)0X8973),
+ NumLoopbackComponentsAti = ((int)0X8974),
+ ColorAlphaPairingAti = ((int)0X8975),
SwizzleStrAti = ((int)0X8976),
- Con16Ati = ((int)0X8951),
- Reg24Ati = ((int)0X8939),
- Gl4XBitAti = ((int)0X00000002),
- Con0Ati = ((int)0X8941),
- Gl2XBitAti = ((int)0X00000001),
- Reg10Ati = ((int)0X892b),
- RedBitAti = ((int)0X00000001),
+ SwizzleStqAti = ((int)0X8977),
+ SwizzleStrDrAti = ((int)0X8978),
+ SwizzleStqDqAti = ((int)0X8979),
+ SwizzleStrqAti = ((int)0X897a),
+ SwizzleStrqDqAti = ((int)0X897b),
}
public enum AtiPnTriangles
{
- MaxPnTrianglesTesselationLevelAti = ((int)0X87f1),
- PnTrianglesTesselationLevelAti = ((int)0X87f4),
- PnTrianglesNormalModeQuadraticAti = ((int)0X87f8),
PnTrianglesAti = ((int)0X87f0),
+ MaxPnTrianglesTesselationLevelAti = ((int)0X87f1),
+ PnTrianglesPointModeAti = ((int)0X87f2),
+ PnTrianglesNormalModeAti = ((int)0X87f3),
+ PnTrianglesTesselationLevelAti = ((int)0X87f4),
+ PnTrianglesPointModeLinearAti = ((int)0X87f5),
PnTrianglesPointModeCubicAti = ((int)0X87f6),
PnTrianglesNormalModeLinearAti = ((int)0X87f7),
- PnTrianglesPointModeLinearAti = ((int)0X87f5),
- PnTrianglesNormalModeAti = ((int)0X87f3),
- PnTrianglesPointModeAti = ((int)0X87f2),
+ PnTrianglesNormalModeQuadraticAti = ((int)0X87f8),
}
public enum AtiVertexArrayObject
{
- DiscardAti = ((int)0X8763),
- DynamicAti = ((int)0X8761),
- ArrayObjectBufferAti = ((int)0X8766),
- PreserveAti = ((int)0X8762),
StaticAti = ((int)0X8760),
- ObjectBufferUsageAti = ((int)0X8765),
+ DynamicAti = ((int)0X8761),
+ PreserveAti = ((int)0X8762),
+ DiscardAti = ((int)0X8763),
ObjectBufferSizeAti = ((int)0X8764),
+ ObjectBufferUsageAti = ((int)0X8765),
+ ArrayObjectBufferAti = ((int)0X8766),
ArrayObjectOffsetAti = ((int)0X8767),
}
public enum ExtVertexShader
{
- LocalConstantValueExt = ((int)0X87ec),
- OutputTextureCoord1Ext = ((int)0X879e),
- VertexShaderVariantsExt = ((int)0X87d0),
- OutputColor0Ext = ((int)0X879b),
- OpMaxExt = ((int)0X878a),
- OutputTextureCoord9Ext = ((int)0X87a6),
- VertexShaderBindingExt = ((int)0X8781),
- LocalExt = ((int)0X87c4),
- YExt = ((int)0X87d6),
- VertexShaderLocalsExt = ((int)0X87d3),
- MaxOptimizedVertexShaderInstructionsExt = ((int)0X87ca),
- MvpMatrixExt = ((int)0X87e3),
- OutputTextureCoord6Ext = ((int)0X87a3),
- OpCrossProductExt = ((int)0X8797),
- OpRoundExt = ((int)0X8790),
- OpMulExt = ((int)0X8786),
- LocalConstantExt = ((int)0X87c3),
- VariantDatatypeExt = ((int)0X87e5),
- OpMultiplyMatrixExt = ((int)0X8798),
- OutputTextureCoord7Ext = ((int)0X87a4),
- NegativeWExt = ((int)0X87dc),
- MaxVertexShaderLocalConstantsExt = ((int)0X87c8),
- OpClampExt = ((int)0X878e),
- NegativeOneExt = ((int)0X87df),
- OpLogBase2Ext = ((int)0X8792),
- OutputTextureCoord16Ext = ((int)0X87ad),
- ZeroExt = ((int)0X87dd),
- ZExt = ((int)0X87d7),
- OutputTextureCoord20Ext = ((int)0X87b1),
- OpSetLtExt = ((int)0X878d),
- OutputTextureCoord29Ext = ((int)0X87ba),
- OutputTextureCoord11Ext = ((int)0X87a8),
- FullRangeExt = ((int)0X87e1),
- OutputTextureCoord4Ext = ((int)0X87a1),
- MaxVertexShaderInstructionsExt = ((int)0X87c5),
- OutputTextureCoord30Ext = ((int)0X87bb),
- MatrixExt = ((int)0X87c0),
- InvariantDatatypeExt = ((int)0X87eb),
- OutputVertexExt = ((int)0X879a),
- OpFracExt = ((int)0X8789),
- OutputTextureCoord24Ext = ((int)0X87b5),
- VariantValueExt = ((int)0X87e4),
- OpMinExt = ((int)0X878b),
- OpFloorExt = ((int)0X878f),
- OpSubExt = ((int)0X8796),
VertexShaderExt = ((int)0X8780),
- OutputTextureCoord5Ext = ((int)0X87a2),
- VertexShaderInvariantsExt = ((int)0X87d1),
- OutputTextureCoord18Ext = ((int)0X87af),
- OutputColor1Ext = ((int)0X879c),
- MaxVertexShaderInvariantsExt = ((int)0X87c7),
- VertexShaderInstructionsExt = ((int)0X87cf),
- VertexShaderLocalConstantsExt = ((int)0X87d2),
+ VertexShaderBindingExt = ((int)0X8781),
OpIndexExt = ((int)0X8782),
- MaxOptimizedVertexShaderLocalConstantsExt = ((int)0X87cc),
+ OpNegateExt = ((int)0X8783),
+ OpDot3Ext = ((int)0X8784),
+ OpDot4Ext = ((int)0X8785),
+ OpMulExt = ((int)0X8786),
+ OpAddExt = ((int)0X8787),
+ OpMaddExt = ((int)0X8788),
+ OpFracExt = ((int)0X8789),
+ OpMaxExt = ((int)0X878a),
+ OpMinExt = ((int)0X878b),
+ OpSetGeExt = ((int)0X878c),
+ OpSetLtExt = ((int)0X878d),
+ OpClampExt = ((int)0X878e),
+ OpFloorExt = ((int)0X878f),
+ OpRoundExt = ((int)0X8790),
+ OpExpBase2Ext = ((int)0X8791),
+ OpLogBase2Ext = ((int)0X8792),
+ OpPowerExt = ((int)0X8793),
+ OpRecipExt = ((int)0X8794),
+ OpRecipSqrtExt = ((int)0X8795),
+ OpSubExt = ((int)0X8796),
+ OpCrossProductExt = ((int)0X8797),
+ OpMultiplyMatrixExt = ((int)0X8798),
+ OpMovExt = ((int)0X8799),
+ OutputVertexExt = ((int)0X879a),
+ OutputColor0Ext = ((int)0X879b),
+ OutputColor1Ext = ((int)0X879c),
+ OutputTextureCoord0Ext = ((int)0X879d),
+ OutputTextureCoord1Ext = ((int)0X879e),
+ OutputTextureCoord2Ext = ((int)0X879f),
+ OutputTextureCoord3Ext = ((int)0X87a0),
+ OutputTextureCoord4Ext = ((int)0X87a1),
+ OutputTextureCoord5Ext = ((int)0X87a2),
+ OutputTextureCoord6Ext = ((int)0X87a3),
+ OutputTextureCoord7Ext = ((int)0X87a4),
+ OutputTextureCoord8Ext = ((int)0X87a5),
+ OutputTextureCoord9Ext = ((int)0X87a6),
+ OutputTextureCoord10Ext = ((int)0X87a7),
+ OutputTextureCoord11Ext = ((int)0X87a8),
+ OutputTextureCoord12Ext = ((int)0X87a9),
OutputTextureCoord13Ext = ((int)0X87aa),
+ OutputTextureCoord14Ext = ((int)0X87ab),
+ OutputTextureCoord15Ext = ((int)0X87ac),
+ OutputTextureCoord16Ext = ((int)0X87ad),
+ OutputTextureCoord17Ext = ((int)0X87ae),
+ OutputTextureCoord18Ext = ((int)0X87af),
+ OutputTextureCoord19Ext = ((int)0X87b0),
+ OutputTextureCoord20Ext = ((int)0X87b1),
+ OutputTextureCoord21Ext = ((int)0X87b2),
+ OutputTextureCoord22Ext = ((int)0X87b3),
+ OutputTextureCoord23Ext = ((int)0X87b4),
+ OutputTextureCoord24Ext = ((int)0X87b5),
+ OutputTextureCoord25Ext = ((int)0X87b6),
+ OutputTextureCoord26Ext = ((int)0X87b7),
+ OutputTextureCoord27Ext = ((int)0X87b8),
+ OutputTextureCoord28Ext = ((int)0X87b9),
+ OutputTextureCoord29Ext = ((int)0X87ba),
+ OutputTextureCoord30Ext = ((int)0X87bb),
+ OutputTextureCoord31Ext = ((int)0X87bc),
+ OutputFogExt = ((int)0X87bd),
+ ScalarExt = ((int)0X87be),
+ VectorExt = ((int)0X87bf),
+ MatrixExt = ((int)0X87c0),
+ VariantExt = ((int)0X87c1),
+ InvariantExt = ((int)0X87c2),
+ LocalConstantExt = ((int)0X87c3),
+ LocalExt = ((int)0X87c4),
+ MaxVertexShaderInstructionsExt = ((int)0X87c5),
+ MaxVertexShaderVariantsExt = ((int)0X87c6),
+ MaxVertexShaderInvariantsExt = ((int)0X87c7),
+ MaxVertexShaderLocalConstantsExt = ((int)0X87c8),
+ MaxVertexShaderLocalsExt = ((int)0X87c9),
+ MaxOptimizedVertexShaderInstructionsExt = ((int)0X87ca),
+ MaxOptimizedVertexShaderVariantsExt = ((int)0X87cb),
+ MaxOptimizedVertexShaderLocalConstantsExt = ((int)0X87cc),
MaxOptimizedVertexShaderInvariantsExt = ((int)0X87cd),
MaxOptimizedVertexShaderLocalsExt = ((int)0X87ce),
+ VertexShaderInstructionsExt = ((int)0X87cf),
+ VertexShaderVariantsExt = ((int)0X87d0),
+ VertexShaderInvariantsExt = ((int)0X87d1),
+ VertexShaderLocalConstantsExt = ((int)0X87d2),
+ VertexShaderLocalsExt = ((int)0X87d3),
VertexShaderOptimizedExt = ((int)0X87d4),
- OutputTextureCoord15Ext = ((int)0X87ac),
- MaxVertexShaderVariantsExt = ((int)0X87c6),
- InvariantExt = ((int)0X87c2),
- OutputTextureCoord26Ext = ((int)0X87b7),
- OutputTextureCoord10Ext = ((int)0X87a7),
- OutputTextureCoord25Ext = ((int)0X87b6),
- OutputFogExt = ((int)0X87bd),
- MaxVertexShaderLocalsExt = ((int)0X87c9),
- OutputTextureCoord21Ext = ((int)0X87b2),
- OneExt = ((int)0X87de),
- OpDot3Ext = ((int)0X8784),
- VariantArrayPointerExt = ((int)0X87e9),
- NormalizedRangeExt = ((int)0X87e0),
- VariantArrayTypeExt = ((int)0X87e7),
- OpExpBase2Ext = ((int)0X8791),
- OutputTextureCoord3Ext = ((int)0X87a0),
- OutputTextureCoord2Ext = ((int)0X879f),
- OpDot4Ext = ((int)0X8785),
- OutputTextureCoord31Ext = ((int)0X87bc),
- OpMovExt = ((int)0X8799),
- WExt = ((int)0X87d8),
- OutputTextureCoord22Ext = ((int)0X87b3),
- OpMaddExt = ((int)0X8788),
- NegativeXExt = ((int)0X87d9),
- VariantArrayExt = ((int)0X87e8),
- InvariantValueExt = ((int)0X87ea),
- OpAddExt = ((int)0X8787),
- OpRecipSqrtExt = ((int)0X8795),
- LocalConstantDatatypeExt = ((int)0X87ed),
- OpNegateExt = ((int)0X8783),
- NegativeYExt = ((int)0X87da),
- OutputTextureCoord0Ext = ((int)0X879d),
- OutputTextureCoord27Ext = ((int)0X87b8),
- MaxOptimizedVertexShaderVariantsExt = ((int)0X87cb),
- OutputTextureCoord28Ext = ((int)0X87b9),
- OutputTextureCoord17Ext = ((int)0X87ae),
- OpPowerExt = ((int)0X8793),
- OutputTextureCoord19Ext = ((int)0X87b0),
- OutputTextureCoord8Ext = ((int)0X87a5),
- VariantExt = ((int)0X87c1),
- CurrentVertexExt = ((int)0X87e2),
- VariantArrayStrideExt = ((int)0X87e6),
- NegativeZExt = ((int)0X87db),
- OutputTextureCoord12Ext = ((int)0X87a9),
XExt = ((int)0X87d5),
- OpRecipExt = ((int)0X8794),
- OpSetGeExt = ((int)0X878c),
- ScalarExt = ((int)0X87be),
- OutputTextureCoord23Ext = ((int)0X87b4),
- OutputTextureCoord14Ext = ((int)0X87ab),
- VectorExt = ((int)0X87bf),
+ YExt = ((int)0X87d6),
+ ZExt = ((int)0X87d7),
+ WExt = ((int)0X87d8),
+ NegativeXExt = ((int)0X87d9),
+ NegativeYExt = ((int)0X87da),
+ NegativeZExt = ((int)0X87db),
+ NegativeWExt = ((int)0X87dc),
+ ZeroExt = ((int)0X87dd),
+ OneExt = ((int)0X87de),
+ NegativeOneExt = ((int)0X87df),
+ NormalizedRangeExt = ((int)0X87e0),
+ FullRangeExt = ((int)0X87e1),
+ CurrentVertexExt = ((int)0X87e2),
+ MvpMatrixExt = ((int)0X87e3),
+ VariantValueExt = ((int)0X87e4),
+ VariantDatatypeExt = ((int)0X87e5),
+ VariantArrayStrideExt = ((int)0X87e6),
+ VariantArrayTypeExt = ((int)0X87e7),
+ VariantArrayExt = ((int)0X87e8),
+ VariantArrayPointerExt = ((int)0X87e9),
+ InvariantValueExt = ((int)0X87ea),
+ InvariantDatatypeExt = ((int)0X87eb),
+ LocalConstantValueExt = ((int)0X87ec),
+ LocalConstantDatatypeExt = ((int)0X87ed),
}
public enum AtiVertexStreams
{
- VertexStream2Ati = ((int)0X876e),
- VertexStream5Ati = ((int)0X8771),
- VertexSourceAti = ((int)0X8774),
- VertexStream0Ati = ((int)0X876c),
- VertexStream3Ati = ((int)0X876f),
- VertexStream6Ati = ((int)0X8772),
MaxVertexStreamsAti = ((int)0X876b),
+ VertexStream0Ati = ((int)0X876c),
VertexStream1Ati = ((int)0X876d),
+ VertexStream2Ati = ((int)0X876e),
+ VertexStream3Ati = ((int)0X876f),
VertexStream4Ati = ((int)0X8770),
+ VertexStream5Ati = ((int)0X8771),
+ VertexStream6Ati = ((int)0X8772),
VertexStream7Ati = ((int)0X8773),
+ VertexSourceAti = ((int)0X8774),
}
public enum AtiElementArray
{
- ElementArrayTypeAti = ((int)0X8769),
ElementArrayAti = ((int)0X8768),
+ ElementArrayTypeAti = ((int)0X8769),
ElementArrayPointerAti = ((int)0X876a),
}
@@ -8049,37 +8391,37 @@ namespace OpenTK.Graphics
public enum NvOcclusionQuery
{
PixelCounterBitsNv = ((int)0X8864),
- PixelCountNv = ((int)0X8866),
CurrentOcclusionQueryIdNv = ((int)0X8865),
+ PixelCountNv = ((int)0X8866),
PixelCountAvailableNv = ((int)0X8867),
}
public enum NvPointSprite
{
+ PointSpriteNv = ((int)0X8861),
CoordReplaceNv = ((int)0X8862),
PointSpriteRModeNv = ((int)0X8863),
- PointSpriteNv = ((int)0X8861),
}
public enum NvTextureShader3
{
- DependentRgbTextureCubeMapNv = ((int)0X885a),
- OffsetHiloProjectiveTexture2DNv = ((int)0X8856),
- OffsetHiloTextureRectangleNv = ((int)0X8855),
- SignedHilo8Nv = ((int)0X885f),
- DotProductAffineDepthReplaceNv = ((int)0X885d),
- DotProductTexture1DNv = ((int)0X885c),
- OffsetProjectiveTextureRectangleScaleNv = ((int)0X8853),
OffsetProjectiveTexture2DNv = ((int)0X8850),
- OffsetHiloTexture2DNv = ((int)0X8854),
- DependentRgbTexture3DNv = ((int)0X8859),
- OffsetProjectiveTextureRectangleNv = ((int)0X8852),
OffsetProjectiveTexture2DScaleNv = ((int)0X8851),
- DotProductPassThroughNv = ((int)0X885b),
- Hilo8Nv = ((int)0X885e),
+ OffsetProjectiveTextureRectangleNv = ((int)0X8852),
+ OffsetProjectiveTextureRectangleScaleNv = ((int)0X8853),
+ OffsetHiloTexture2DNv = ((int)0X8854),
+ OffsetHiloTextureRectangleNv = ((int)0X8855),
+ OffsetHiloProjectiveTexture2DNv = ((int)0X8856),
OffsetHiloProjectiveTextureRectangleNv = ((int)0X8857),
- ForceBlueToOneNv = ((int)0X8860),
DependentHiloTexture2DNv = ((int)0X8858),
+ DependentRgbTexture3DNv = ((int)0X8859),
+ DependentRgbTextureCubeMapNv = ((int)0X885a),
+ DotProductPassThroughNv = ((int)0X885b),
+ DotProductTexture1DNv = ((int)0X885c),
+ DotProductAffineDepthReplaceNv = ((int)0X885d),
+ Hilo8Nv = ((int)0X885e),
+ SignedHilo8Nv = ((int)0X885f),
+ ForceBlueToOneNv = ((int)0X8860),
}
public enum NvVertexProgram11
@@ -8108,15 +8450,15 @@ namespace OpenTK.Graphics
public enum AppleElementArray
{
- ElementArrayPointerApple = ((int)0X876a),
- ElementArrayTypeApple = ((int)0X8769),
ElementArrayApple = ((int)0X8768),
+ ElementArrayTypeApple = ((int)0X8769),
+ ElementArrayPointerApple = ((int)0X876a),
}
public enum AppleFence
{
- FenceApple = ((int)0X8a0b),
DrawPixelsApple = ((int)0X8a0a),
+ FenceApple = ((int)0X8a0b),
}
public enum AppleVertexArrayObject
@@ -8126,48 +8468,48 @@ namespace OpenTK.Graphics
public enum AppleVertexArrayRange
{
- VertexArrayRangePointerApple = ((int)0X8521),
- VertexArrayRangeLengthApple = ((int)0X851e),
VertexArrayRangeApple = ((int)0X851d),
+ VertexArrayRangeLengthApple = ((int)0X851e),
+ VertexArrayStorageHintApple = ((int)0X851f),
+ VertexArrayRangePointerApple = ((int)0X8521),
StorageCachedApple = ((int)0X85be),
StorageSharedApple = ((int)0X85bf),
- VertexArrayStorageHintApple = ((int)0X851f),
}
public enum AppleYcbcr422
{
+ Ycbcr422Apple = ((int)0X85b9),
UnsignedShort88Apple = ((int)0X85ba),
UnsignedShort88RevApple = ((int)0X85bb),
- Ycbcr422Apple = ((int)0X85b9),
}
public enum S3S3tc
{
- Rgba4S3tc = ((int)0X83a3),
RgbS3tc = ((int)0X83a0),
Rgb4S3tc = ((int)0X83a1),
RgbaS3tc = ((int)0X83a2),
+ Rgba4S3tc = ((int)0X83a3),
}
public enum AtiDrawBuffers
{
- DrawBuffer2Ati = ((int)0X8827),
- DrawBuffer0Ati = ((int)0X8825),
- DrawBuffer7Ati = ((int)0X882c),
- DrawBuffer12Ati = ((int)0X8831),
- DrawBuffer6Ati = ((int)0X882b),
- DrawBuffer9Ati = ((int)0X882e),
MaxDrawBuffersAti = ((int)0X8824),
+ DrawBuffer0Ati = ((int)0X8825),
DrawBuffer1Ati = ((int)0X8826),
+ DrawBuffer2Ati = ((int)0X8827),
+ DrawBuffer3Ati = ((int)0X8828),
DrawBuffer4Ati = ((int)0X8829),
+ DrawBuffer5Ati = ((int)0X882a),
+ DrawBuffer6Ati = ((int)0X882b),
+ DrawBuffer7Ati = ((int)0X882c),
DrawBuffer8Ati = ((int)0X882d),
+ DrawBuffer9Ati = ((int)0X882e),
+ DrawBuffer10Ati = ((int)0X882f),
+ DrawBuffer11Ati = ((int)0X8830),
+ DrawBuffer12Ati = ((int)0X8831),
+ DrawBuffer13Ati = ((int)0X8832),
DrawBuffer14Ati = ((int)0X8833),
DrawBuffer15Ati = ((int)0X8834),
- DrawBuffer11Ati = ((int)0X8830),
- DrawBuffer10Ati = ((int)0X882f),
- DrawBuffer3Ati = ((int)0X8828),
- DrawBuffer5Ati = ((int)0X882a),
- DrawBuffer13Ati = ((int)0X8832),
}
public enum AtiPixelFormatFloat
@@ -8178,54 +8520,54 @@ namespace OpenTK.Graphics
public enum AtiTextureEnvCombine3
{
+ ModulateAddAti = ((int)0X8744),
ModulateSignedAddAti = ((int)0X8745),
ModulateSubtractAti = ((int)0X8746),
- ModulateAddAti = ((int)0X8744),
}
public enum AtiTextureFloat
{
+ RgbaFloat32Ati = ((int)0X8814),
+ RgbFloat32Ati = ((int)0X8815),
+ AlphaFloat32Ati = ((int)0X8816),
IntensityFloat32Ati = ((int)0X8817),
LuminanceFloat32Ati = ((int)0X8818),
- RgbaFloat32Ati = ((int)0X8814),
- LuminanceFloat16Ati = ((int)0X881e),
- RgbFloat32Ati = ((int)0X8815),
LuminanceAlphaFloat32Ati = ((int)0X8819),
- AlphaFloat32Ati = ((int)0X8816),
RgbaFloat16Ati = ((int)0X881a),
- AlphaFloat16Ati = ((int)0X881c),
- LuminanceAlphaFloat16Ati = ((int)0X881f),
- IntensityFloat16Ati = ((int)0X881d),
RgbFloat16Ati = ((int)0X881b),
+ AlphaFloat16Ati = ((int)0X881c),
+ IntensityFloat16Ati = ((int)0X881d),
+ LuminanceFloat16Ati = ((int)0X881e),
+ LuminanceAlphaFloat16Ati = ((int)0X881f),
}
public enum NvFloatBuffer
{
- FloatRgNv = ((int)0X8881),
- FloatR16Nv = ((int)0X8884),
- TextureFloatComponentsNv = ((int)0X888c),
FloatRNv = ((int)0X8880),
- FloatRgbaNv = ((int)0X8883),
- FloatClearColorValueNv = ((int)0X888d),
- FloatR32Nv = ((int)0X8885),
- FloatRgbaModeNv = ((int)0X888e),
- FloatRgba16Nv = ((int)0X888a),
- FloatRgb32Nv = ((int)0X8889),
- FloatRgb16Nv = ((int)0X8888),
- FloatRg16Nv = ((int)0X8886),
- FloatRgba32Nv = ((int)0X888b),
+ FloatRgNv = ((int)0X8881),
FloatRgbNv = ((int)0X8882),
+ FloatRgbaNv = ((int)0X8883),
+ FloatR16Nv = ((int)0X8884),
+ FloatR32Nv = ((int)0X8885),
+ FloatRg16Nv = ((int)0X8886),
FloatRg32Nv = ((int)0X8887),
+ FloatRgb16Nv = ((int)0X8888),
+ FloatRgb32Nv = ((int)0X8889),
+ FloatRgba16Nv = ((int)0X888a),
+ FloatRgba32Nv = ((int)0X888b),
+ TextureFloatComponentsNv = ((int)0X888c),
+ FloatClearColorValueNv = ((int)0X888d),
+ FloatRgbaModeNv = ((int)0X888e),
}
public enum NvFragmentProgram
{
- ProgramErrorStringNv = ((int)0X8874),
- FragmentProgramNv = ((int)0X8870),
MaxFragmentProgramLocalParametersNv = ((int)0X8868),
- FragmentProgramBindingNv = ((int)0X8873),
- MaxTextureImageUnitsNv = ((int)0X8872),
+ FragmentProgramNv = ((int)0X8870),
MaxTextureCoordsNv = ((int)0X8871),
+ MaxTextureImageUnitsNv = ((int)0X8872),
+ FragmentProgramBindingNv = ((int)0X8873),
+ ProgramErrorStringNv = ((int)0X8874),
}
public enum NvHalfFloat
@@ -8235,18 +8577,18 @@ namespace OpenTK.Graphics
public enum NvPixelDataRange
{
- ReadPixelDataRangeLengthNv = ((int)0X887b),
+ WritePixelDataRangeNv = ((int)0X8878),
ReadPixelDataRangeNv = ((int)0X8879),
WritePixelDataRangeLengthNv = ((int)0X887a),
- ReadPixelDataRangePointerNv = ((int)0X887d),
+ ReadPixelDataRangeLengthNv = ((int)0X887b),
WritePixelDataRangePointerNv = ((int)0X887c),
- WritePixelDataRangeNv = ((int)0X8878),
+ ReadPixelDataRangePointerNv = ((int)0X887d),
}
public enum NvPrimitiveRestart
{
- PrimitiveRestartIndexNv = ((int)0X8559),
PrimitiveRestartNv = ((int)0X8558),
+ PrimitiveRestartIndexNv = ((int)0X8559),
}
public enum NvTextureExpandNormal
@@ -8264,10 +8606,10 @@ namespace OpenTK.Graphics
public enum AtiSeparateStencil
{
- StencilBackPassDepthPassAti = ((int)0X8803),
+ StencilBackFuncAti = ((int)0X8800),
StencilBackFailAti = ((int)0X8801),
StencilBackPassDepthFailAti = ((int)0X8802),
- StencilBackFuncAti = ((int)0X8800),
+ StencilBackPassDepthPassAti = ((int)0X8803),
}
public enum AtiVertexAttribArrayObject
@@ -8276,8 +8618,8 @@ namespace OpenTK.Graphics
public enum OesReadFormat
{
- ImplementationColorReadFormatOes = ((int)0X8b9b),
ImplementationColorReadTypeOes = ((int)0X8b9a),
+ ImplementationColorReadFormatOes = ((int)0X8b9b),
}
public enum ExtDepthBoundsTest
@@ -8289,14 +8631,14 @@ namespace OpenTK.Graphics
public enum ExtTextureMirrorClamp
{
MirrorClampExt = ((int)0X8742),
- MirrorClampToBorderExt = ((int)0X8912),
MirrorClampToEdgeExt = ((int)0X8743),
+ MirrorClampToBorderExt = ((int)0X8912),
}
public enum ExtBlendEquationSeparate
{
- BlendEquationAlphaExt = ((int)0X883d),
BlendEquationRgbExt = ((int)0X8009),
+ BlendEquationAlphaExt = ((int)0X883d),
}
public enum MesaPackInvert
@@ -8306,16 +8648,16 @@ namespace OpenTK.Graphics
public enum MesaYcbcrTexture
{
- YcbcrMesa = ((int)0X8757),
UnsignedShort88Mesa = ((int)0X85ba),
UnsignedShort88RevMesa = ((int)0X85bb),
+ YcbcrMesa = ((int)0X8757),
}
public enum ExtPixelBufferObject
{
- PixelPackBufferBindingExt = ((int)0X88ed),
PixelPackBufferExt = ((int)0X88eb),
PixelUnpackBufferExt = ((int)0X88ec),
+ PixelPackBufferBindingExt = ((int)0X88ed),
PixelUnpackBufferBindingExt = ((int)0X88ef),
}
@@ -8325,17 +8667,17 @@ namespace OpenTK.Graphics
public enum NvFragmentProgram2
{
- MaxProgramCallDepthNv = ((int)0X88f5),
- MaxProgramLoopCountNv = ((int)0X88f8),
MaxProgramExecInstructionsNv = ((int)0X88f4),
+ MaxProgramCallDepthNv = ((int)0X88f5),
MaxProgramIfDepthNv = ((int)0X88f6),
MaxProgramLoopDepthNv = ((int)0X88f7),
+ MaxProgramLoopCountNv = ((int)0X88f8),
}
public enum NvVertexProgram2Option
{
- MaxProgramCallDepthNv = ((int)0X88f5),
MaxProgramExecInstructionsNv = ((int)0X88f4),
+ MaxProgramCallDepthNv = ((int)0X88f5),
}
public enum NvVertexProgram3
@@ -8346,83 +8688,204 @@ namespace OpenTK.Graphics
public enum GenerateMipmapTarget
{
Texture1D = ((int)0X0de0),
+ Texture2D = ((int)0X0de1),
Texture3D = ((int)0X806f),
TextureCubeMap = ((int)0X8513),
- Texture2D = ((int)0X0de1),
}
public enum FramebufferTarget
{
+ ReadFramebuffer = ((int)0X8ca8),
+ DrawFramebuffer = ((int)0X8ca9),
FramebufferExt = ((int)0X8d40),
+ Framebuffer = ((int)0X8D40),
}
public enum RenderbufferTarget
{
RenderbufferExt = ((int)0X8d41),
+ Renderbuffer = ((int)0X8D41),
}
public enum RenderbufferStorage
{
- StencilIndex4Ext = ((int)0X8d47),
+ R3G3B2 = ((int)0X2a10),
+ Alpha4 = ((int)0X803b),
+ Alpha8 = ((int)0X803c),
+ Alpha12 = ((int)0X803D),
+ Alpha16 = ((int)0X803e),
+ Rgb4 = ((int)0X804f),
+ Rgb5 = ((int)0X8050),
+ Rgb8 = ((int)0X8051),
+ Rgb10 = ((int)0X8052),
+ Rgb12 = ((int)0X8053),
+ Rgb16 = ((int)0X8054),
+ Rgba2 = ((int)0X8055),
+ Rgba4 = ((int)0X8056),
+ Rgba8 = ((int)0X8058),
+ Rgb10A2 = ((int)0X8059),
+ Rgba12 = ((int)0X805a),
+ Rgba16 = ((int)0X805b),
+ DepthComponent16 = ((int)0X81a5),
+ DepthComponent24 = ((int)0X81a6),
+ DepthComponent32 = ((int)0X81a7),
+ R8 = ((int)0X8229),
+ R16 = ((int)0X822a),
+ Rg8 = ((int)0X822b),
+ Rg16 = ((int)0X822c),
+ R16f = ((int)0X822d),
+ R32f = ((int)0X822e),
+ Rg16f = ((int)0X822f),
+ Rg32f = ((int)0X8230),
+ R8i = ((int)0X8231),
+ R8ui = ((int)0X8232),
+ R16i = ((int)0X8233),
+ R16ui = ((int)0X8234),
+ R32i = ((int)0X8235),
+ R32ui = ((int)0X8236),
+ Rg8i = ((int)0X8237),
+ Rg8ui = ((int)0X8238),
+ Rg16i = ((int)0X8239),
+ Rg16ui = ((int)0X823a),
+ Rg32i = ((int)0X823b),
+ Rg32ui = ((int)0X823c),
+ Rgba32f = ((int)0X8814),
+ Rgb32f = ((int)0X8815),
+ Rgba16f = ((int)0X881a),
+ Rgb16f = ((int)0X881b),
+ Depth24Stencil8 = ((int)0X88f0),
+ R11fG11fB10f = ((int)0X8c3a),
+ Rgb9E5 = ((int)0X8c3D),
+ Srgb8 = ((int)0X8c41),
+ Srgb8Alpha8 = ((int)0X8c43),
+ DepthComponent32f = ((int)0X8cac),
+ Depth32fStencil8 = ((int)0X8cad),
StencilIndex1Ext = ((int)0X8d46),
- StencilIndex16Ext = ((int)0X8d49),
+ StencilIndex1 = ((int)0X8D46),
+ StencilIndex4Ext = ((int)0X8d47),
+ StencilIndex4 = ((int)0X8D47),
StencilIndex8Ext = ((int)0X8d48),
+ StencilIndex8 = ((int)0X8D48),
+ StencilIndex16Ext = ((int)0X8d49),
+ StencilIndex16 = ((int)0X8D49),
+ Rgba32ui = ((int)0X8D70),
+ Rgb32ui = ((int)0X8D71),
+ Rgba16ui = ((int)0X8D76),
+ Rgb16ui = ((int)0X8D77),
+ Rgba8ui = ((int)0X8D7c),
+ Rgb8ui = ((int)0X8D7D),
+ Rgba32i = ((int)0X8D82),
+ Rgb32i = ((int)0X8D83),
+ Rgba16i = ((int)0X8D88),
+ Rgb16i = ((int)0X8D89),
+ Rgba8i = ((int)0X8D8e),
+ Rgb8i = ((int)0X8D8f),
}
public enum FramebufferErrorCode
{
- FramebufferIncompleteFormatsExt = ((int)0X8cda),
- FramebufferIncompleteMissingAttachmentExt = ((int)0X8cd7),
- FramebufferUnsupportedExt = ((int)0X8cdd),
- FramebufferIncompleteAttachmentExt = ((int)0X8cd6),
+ FramebufferUndefined = ((int)0X8219),
+ FramebufferComplete = ((int)0X8cd5),
FramebufferCompleteExt = ((int)0X8cd5),
+ FramebufferIncompleteAttachment = ((int)0X8cd6),
+ FramebufferIncompleteAttachmentExt = ((int)0X8cd6),
+ FramebufferIncompleteMissingAttachment = ((int)0X8cd7),
+ FramebufferIncompleteMissingAttachmentExt = ((int)0X8cd7),
FramebufferIncompleteDimensionsExt = ((int)0X8cd9),
- FramebufferIncompleteReadBufferExt = ((int)0X8cdc),
+ FramebufferIncompleteFormatsExt = ((int)0X8cda),
+ FramebufferIncompleteDrawBuffer = ((int)0X8cdb),
FramebufferIncompleteDrawBufferExt = ((int)0X8cdb),
+ FramebufferIncompleteReadBuffer = ((int)0X8cdc),
+ FramebufferIncompleteReadBufferExt = ((int)0X8cdc),
+ FramebufferUnsupported = ((int)0X8cdd),
+ FramebufferUnsupportedExt = ((int)0X8cdd),
+ FramebufferIncompleteMultisample = ((int)0X8D56),
}
public enum FramebufferAttachment
{
- ColorAttachment11Ext = ((int)0X8ceb),
- ColorAttachment6Ext = ((int)0X8ce6),
- ColorAttachment8Ext = ((int)0X8ce8),
+ DepthStencilAttachment = ((int)0X821a),
+ ColorAttachment0 = ((int)0X8ce0),
ColorAttachment0Ext = ((int)0X8ce0),
- ColorAttachment3Ext = ((int)0X8ce3),
- ColorAttachment14Ext = ((int)0X8cee),
+ ColorAttachment1 = ((int)0X8ce1),
ColorAttachment1Ext = ((int)0X8ce1),
- ColorAttachment4Ext = ((int)0X8ce4),
- ColorAttachment7Ext = ((int)0X8ce7),
- ColorAttachment9Ext = ((int)0X8ce9),
- ColorAttachment10Ext = ((int)0X8cea),
- DepthAttachmentExt = ((int)0X8d00),
+ ColorAttachment2 = ((int)0X8ce2),
ColorAttachment2Ext = ((int)0X8ce2),
- ColorAttachment12Ext = ((int)0X8cec),
+ ColorAttachment3 = ((int)0X8ce3),
+ ColorAttachment3Ext = ((int)0X8ce3),
+ ColorAttachment4 = ((int)0X8ce4),
+ ColorAttachment4Ext = ((int)0X8ce4),
+ ColorAttachment5 = ((int)0X8ce5),
ColorAttachment5Ext = ((int)0X8ce5),
- ColorAttachment15Ext = ((int)0X8cef),
+ ColorAttachment6 = ((int)0X8ce6),
+ ColorAttachment6Ext = ((int)0X8ce6),
+ ColorAttachment7 = ((int)0X8ce7),
+ ColorAttachment7Ext = ((int)0X8ce7),
+ ColorAttachment8 = ((int)0X8ce8),
+ ColorAttachment8Ext = ((int)0X8ce8),
+ ColorAttachment9 = ((int)0X8ce9),
+ ColorAttachment9Ext = ((int)0X8ce9),
+ ColorAttachment10 = ((int)0X8cea),
+ ColorAttachment10Ext = ((int)0X8cea),
+ ColorAttachment11 = ((int)0X8ceb),
+ ColorAttachment11Ext = ((int)0X8ceb),
+ ColorAttachment12 = ((int)0X8cec),
+ ColorAttachment12Ext = ((int)0X8cec),
+ ColorAttachment13 = ((int)0X8ced),
ColorAttachment13Ext = ((int)0X8ced),
+ ColorAttachment14 = ((int)0X8cee),
+ ColorAttachment14Ext = ((int)0X8cee),
+ ColorAttachment15 = ((int)0X8cef),
+ ColorAttachment15Ext = ((int)0X8cef),
+ DepthAttachmentExt = ((int)0X8d00),
+ DepthAttachment = ((int)0X8D00),
StencilAttachmentExt = ((int)0X8d20),
+ StencilAttachment = ((int)0X8D20),
}
public enum FramebufferParameterName
{
+ FramebufferAttachmentColorEncoding = ((int)0X8210),
+ FramebufferAttachmentComponentType = ((int)0X8211),
+ FramebufferAttachmentRedSize = ((int)0X8212),
+ FramebufferAttachmentGreenSize = ((int)0X8213),
+ FramebufferAttachmentBlueSize = ((int)0X8214),
+ FramebufferAttachmentAlphaSize = ((int)0X8215),
+ FramebufferAttachmentDepthSize = ((int)0X8216),
+ FramebufferAttachmentStencilSize = ((int)0X8217),
+ FramebufferAttachmentObjectType = ((int)0X8cd0),
FramebufferAttachmentObjectTypeExt = ((int)0X8cd0),
- FramebufferAttachmentTextureCubeMapFaceExt = ((int)0X8cd3),
+ FramebufferAttachmentObjectName = ((int)0X8cd1),
FramebufferAttachmentObjectNameExt = ((int)0X8cd1),
- FramebufferAttachmentTexture3DZoffsetExt = ((int)0X8cd4),
+ FramebufferAttachmentTextureLevel = ((int)0X8cd2),
FramebufferAttachmentTextureLevelExt = ((int)0X8cd2),
+ FramebufferAttachmentTextureCubeMapFace = ((int)0X8cd3),
+ FramebufferAttachmentTextureCubeMapFaceExt = ((int)0X8cd3),
+ FramebufferAttachmentTexture3DZoffsetExt = ((int)0X8cd4),
+ FramebufferAttachmentTextureLayer = ((int)0X8cd4),
}
public enum RenderbufferParameterName
{
- RenderbufferHeightExt = ((int)0X8d43),
- RenderbufferInternalFormatExt = ((int)0X8d44),
- RenderbufferAlphaSizeExt = ((int)0X8d53),
- RenderbufferRedSizeExt = ((int)0X8d50),
- RenderbufferBlueSizeExt = ((int)0X8d52),
- RenderbufferStencilSizeExt = ((int)0X8d55),
+ RenderbufferSamples = ((int)0X8cab),
RenderbufferWidthExt = ((int)0X8d42),
- RenderbufferDepthSizeExt = ((int)0X8d54),
+ RenderbufferWidth = ((int)0X8D42),
+ RenderbufferHeightExt = ((int)0X8d43),
+ RenderbufferHeight = ((int)0X8D43),
+ RenderbufferInternalFormatExt = ((int)0X8d44),
+ RenderbufferInternalFormat = ((int)0X8D44),
+ RenderbufferRedSizeExt = ((int)0X8d50),
+ RenderbufferRedSize = ((int)0X8D50),
RenderbufferGreenSizeExt = ((int)0X8d51),
+ RenderbufferGreenSize = ((int)0X8D51),
+ RenderbufferBlueSizeExt = ((int)0X8d52),
+ RenderbufferBlueSize = ((int)0X8D52),
+ RenderbufferAlphaSizeExt = ((int)0X8d53),
+ RenderbufferAlphaSize = ((int)0X8D53),
+ RenderbufferDepthSizeExt = ((int)0X8d54),
+ RenderbufferDepthSize = ((int)0X8D54),
+ RenderbufferStencilSizeExt = ((int)0X8d55),
+ RenderbufferStencilSize = ((int)0X8D55),
}
public enum GremedyStringMarker
@@ -8431,61 +8894,61 @@ namespace OpenTK.Graphics
public enum ExtPackedDepthStencil
{
- TextureStencilSizeExt = ((int)0X88f1),
- Depth24Stencil8Ext = ((int)0X88f0),
DepthStencilExt = ((int)0X84f9),
UnsignedInt248Ext = ((int)0X84fa),
+ Depth24Stencil8Ext = ((int)0X88f0),
+ TextureStencilSizeExt = ((int)0X88f1),
}
public enum ExtStencilClearTag
{
- StencilClearTagValueExt = ((int)0X88f3),
StencilTagBitsExt = ((int)0X88f2),
+ StencilClearTagValueExt = ((int)0X88f3),
}
public enum ExtTextureSrgb
{
- Srgb8Alpha8Ext = ((int)0X8c43),
- Sluminance8Ext = ((int)0X8c47),
- Sluminance8Alpha8Ext = ((int)0X8c45),
- SluminanceExt = ((int)0X8c46),
- CompressedSluminanceAlphaExt = ((int)0X8c4b),
- CompressedSrgbAlphaExt = ((int)0X8c49),
- CompressedSrgbAlphaS3tcDxt5Ext = ((int)0X8c4f),
+ SrgbExt = ((int)0X8c40),
Srgb8Ext = ((int)0X8c41),
SrgbAlphaExt = ((int)0X8c42),
- CompressedSrgbAlphaS3tcDxt3Ext = ((int)0X8c4e),
+ Srgb8Alpha8Ext = ((int)0X8c43),
SluminanceAlphaExt = ((int)0X8c44),
- CompressedSluminanceExt = ((int)0X8c4a),
- SrgbExt = ((int)0X8c40),
- CompressedSrgbS3tcDxt1Ext = ((int)0X8c4c),
+ Sluminance8Alpha8Ext = ((int)0X8c45),
+ SluminanceExt = ((int)0X8c46),
+ Sluminance8Ext = ((int)0X8c47),
CompressedSrgbExt = ((int)0X8c48),
+ CompressedSrgbAlphaExt = ((int)0X8c49),
+ CompressedSluminanceExt = ((int)0X8c4a),
+ CompressedSluminanceAlphaExt = ((int)0X8c4b),
+ CompressedSrgbS3tcDxt1Ext = ((int)0X8c4c),
CompressedSrgbAlphaS3tcDxt1Ext = ((int)0X8c4d),
+ CompressedSrgbAlphaS3tcDxt3Ext = ((int)0X8c4e),
+ CompressedSrgbAlphaS3tcDxt5Ext = ((int)0X8c4f),
}
public enum ExtFramebufferBlit
{
- DrawFramebufferBindingExt = ((int)0X8caa),
+ DrawFramebufferBindingExt = ((int)0X8ca6),
ReadFramebufferExt = ((int)0X8ca8),
- ReadFramebufferBindingExt = ((int)0X8ca6),
DrawFramebufferExt = ((int)0X8ca9),
+ ReadFramebufferBindingExt = ((int)0X8caa),
}
public enum ExtFramebufferMultisample
{
- FramebufferIncompleteMultisampleExt = ((int)0X8d56),
RenderbufferSamplesExt = ((int)0X8cab),
+ FramebufferIncompleteMultisampleExt = ((int)0X8d56),
MaxSamplesExt = ((int)0X8d57),
}
public enum MesaxTextureStack
{
- Texture2DStackMesax = ((int)0X875a),
- Texture2DStackBindingMesax = ((int)0X875e),
- ProxyTexture2DStackMesax = ((int)0X875c),
Texture1DStackMesax = ((int)0X8759),
- Texture1DStackBindingMesax = ((int)0X875d),
+ Texture2DStackMesax = ((int)0X875a),
ProxyTexture1DStackMesax = ((int)0X875b),
+ ProxyTexture2DStackMesax = ((int)0X875c),
+ Texture1DStackBindingMesax = ((int)0X875d),
+ Texture2DStackBindingMesax = ((int)0X875e),
}
public enum ExtTimerQuery
@@ -8505,58 +8968,58 @@ namespace OpenTK.Graphics
public enum NvGpuProgram4
{
- MaxProgramTexelOffsetNv = ((int)0X8905),
- MaxProgramAttribComponentsNv = ((int)0X8908),
- ProgramAttribComponentsNv = ((int)0X8906),
- MaxProgramGenericAttribsNv = ((int)0X8da5),
- ProgramResultComponentsNv = ((int)0X8907),
MinProgramTexelOffsetNv = ((int)0X8904),
+ MaxProgramTexelOffsetNv = ((int)0X8905),
+ ProgramAttribComponentsNv = ((int)0X8906),
+ ProgramResultComponentsNv = ((int)0X8907),
+ MaxProgramAttribComponentsNv = ((int)0X8908),
MaxProgramResultComponentsNv = ((int)0X8909),
+ MaxProgramGenericAttribsNv = ((int)0X8da5),
MaxProgramGenericResultsNv = ((int)0X8da6),
}
public enum NvGeometryProgram4
{
- FramebufferAttachmentTextureLayerExt = ((int)0X8cd4),
+ LinesAdjacencyExt = ((int)0X000a),
LineStripAdjacencyExt = ((int)0X000b),
+ TrianglesAdjacencyExt = ((int)0X000c),
+ TriangleStripAdjacencyExt = ((int)0X000d),
+ ProgramPointSizeExt = ((int)0X8642),
+ GeometryProgramNv = ((int)0X8c26),
+ MaxProgramOutputVerticesNv = ((int)0X8c27),
+ MaxProgramTotalOutputComponentsNv = ((int)0X8c28),
+ MaxGeometryTextureImageUnitsExt = ((int)0X8c29),
+ FramebufferAttachmentTextureLayerExt = ((int)0X8cd4),
+ FramebufferAttachmentLayeredExt = ((int)0X8da7),
FramebufferIncompleteLayerTargetsExt = ((int)0X8da8),
FramebufferIncompleteLayerCountExt = ((int)0X8da9),
- GeometryProgramNv = ((int)0X8c26),
GeometryVerticesOutExt = ((int)0X8dda),
- GeometryOutputTypeExt = ((int)0X8ddc),
- FramebufferAttachmentLayeredExt = ((int)0X8da7),
- LinesAdjacencyExt = ((int)0X000a),
GeometryInputTypeExt = ((int)0X8ddb),
- MaxProgramOutputVerticesNv = ((int)0X8c27),
- MaxGeometryTextureImageUnitsExt = ((int)0X8c29),
- TrianglesAdjacencyExt = ((int)0X000c),
- ProgramPointSizeExt = ((int)0X8642),
- TriangleStripAdjacencyExt = ((int)0X000d),
- MaxProgramTotalOutputComponentsNv = ((int)0X8c28),
+ GeometryOutputTypeExt = ((int)0X8ddc),
}
public enum ExtGeometryShader4
{
- TriangleStripAdjacencyExt = ((int)0X000D),
- MaxGeometryUniformComponentsExt = ((int)0X8ddf),
- MaxGeometryTotalOutputComponentsExt = ((int)0X8de1),
- FramebufferAttachmentTextureLayerExt = ((int)0X8cd4),
- GeometryOutputTypeExt = ((int)0X8Ddc),
- FramebufferAttachmentLayeredExt = ((int)0X8Da7),
- TrianglesAdjacencyExt = ((int)0X000c),
- GeometryInputTypeExt = ((int)0X8Ddb),
- MaxGeometryOutputVerticesExt = ((int)0X8de0),
- GeometryShaderExt = ((int)0X8dd9),
- LineStripAdjacencyExt = ((int)0X000b),
- MaxVaryingComponentsExt = ((int)0X8b4b),
- FramebufferIncompleteLayerTargetsExt = ((int)0X8Da8),
- MaxVertexVaryingComponentsExt = ((int)0X8dde),
- MaxGeometryTextureImageUnitsExt = ((int)0X8c29),
- MaxGeometryVaryingComponentsExt = ((int)0X8ddd),
- ProgramPointSizeExt = ((int)0X8642),
- FramebufferIncompleteLayerCountExt = ((int)0X8Da9),
LinesAdjacencyExt = ((int)0X000a),
+ LineStripAdjacencyExt = ((int)0X000b),
+ TrianglesAdjacencyExt = ((int)0X000c),
+ TriangleStripAdjacencyExt = ((int)0X000D),
+ ProgramPointSizeExt = ((int)0X8642),
+ MaxVaryingComponentsExt = ((int)0X8b4b),
+ MaxGeometryTextureImageUnitsExt = ((int)0X8c29),
+ FramebufferAttachmentTextureLayerExt = ((int)0X8cd4),
+ FramebufferAttachmentLayeredExt = ((int)0X8Da7),
+ FramebufferIncompleteLayerTargetsExt = ((int)0X8Da8),
+ FramebufferIncompleteLayerCountExt = ((int)0X8Da9),
+ GeometryShaderExt = ((int)0X8dd9),
GeometryVerticesOutExt = ((int)0X8Dda),
+ GeometryInputTypeExt = ((int)0X8Ddb),
+ GeometryOutputTypeExt = ((int)0X8Ddc),
+ MaxGeometryVaryingComponentsExt = ((int)0X8ddd),
+ MaxVertexVaryingComponentsExt = ((int)0X8dde),
+ MaxGeometryUniformComponentsExt = ((int)0X8ddf),
+ MaxGeometryOutputVerticesExt = ((int)0X8de0),
+ MaxGeometryTotalOutputComponentsExt = ((int)0X8de1),
}
public enum NvVertexProgram4
@@ -8566,31 +9029,31 @@ namespace OpenTK.Graphics
public enum ExtGpuShader4
{
- SamplerCubeShadowExt = ((int)0X8dc5),
- UnsignedIntSampler1DExt = ((int)0X8dd1),
- UnsignedIntVec2Ext = ((int)0X8dc6),
- UnsignedIntSamplerBufferExt = ((int)0X8dd8),
- UnsignedIntSampler2DRectExt = ((int)0X8dd5),
- IntSampler2DExt = ((int)0X8dca),
- UnsignedIntVec4Ext = ((int)0X8dc8),
Sampler1DArrayExt = ((int)0X8dc0),
- IntSampler3DExt = ((int)0X8dcb),
- UnsignedIntVec3Ext = ((int)0X8dc7),
- IntSampler2DArrayExt = ((int)0X8dcf),
- SamplerBufferExt = ((int)0X8dc2),
- UnsignedIntSampler2DArrayExt = ((int)0X8dd7),
Sampler2DArrayExt = ((int)0X8dc1),
- IntSampler1DExt = ((int)0X8dc9),
- IntSampler2DRectExt = ((int)0X8dcd),
- Sampler2DArrayShadowExt = ((int)0X8dc4),
- UnsignedIntSamplerCubeExt = ((int)0X8dd4),
- UnsignedIntSampler2DExt = ((int)0X8dd2),
- UnsignedIntSampler1DArrayExt = ((int)0X8dd6),
+ SamplerBufferExt = ((int)0X8dc2),
Sampler1DArrayShadowExt = ((int)0X8dc3),
- UnsignedIntSampler3DExt = ((int)0X8dd3),
- IntSamplerBufferExt = ((int)0X8dd0),
- IntSampler1DArrayExt = ((int)0X8dce),
+ Sampler2DArrayShadowExt = ((int)0X8dc4),
+ SamplerCubeShadowExt = ((int)0X8dc5),
+ UnsignedIntVec2Ext = ((int)0X8dc6),
+ UnsignedIntVec3Ext = ((int)0X8dc7),
+ UnsignedIntVec4Ext = ((int)0X8dc8),
+ IntSampler1DExt = ((int)0X8dc9),
+ IntSampler2DExt = ((int)0X8dca),
+ IntSampler3DExt = ((int)0X8dcb),
IntSamplerCubeExt = ((int)0X8dcc),
+ IntSampler2DRectExt = ((int)0X8dcd),
+ IntSampler1DArrayExt = ((int)0X8dce),
+ IntSampler2DArrayExt = ((int)0X8dcf),
+ IntSamplerBufferExt = ((int)0X8dd0),
+ UnsignedIntSampler1DExt = ((int)0X8dd1),
+ UnsignedIntSampler2DExt = ((int)0X8dd2),
+ UnsignedIntSampler3DExt = ((int)0X8dd3),
+ UnsignedIntSamplerCubeExt = ((int)0X8dd4),
+ UnsignedIntSampler2DRectExt = ((int)0X8dd5),
+ UnsignedIntSampler1DArrayExt = ((int)0X8dd6),
+ UnsignedIntSampler2DArrayExt = ((int)0X8dd7),
+ UnsignedIntSamplerBufferExt = ((int)0X8dd8),
}
public enum ExtDrawInstanced
@@ -8599,62 +9062,62 @@ namespace OpenTK.Graphics
public enum ExtPackedFloat
{
- RgbaSignedComponentsExt = ((int)0X8c3c),
R11fG11fB10fExt = ((int)0X8c3a),
UnsignedInt10F11F11FRevExt = ((int)0X8c3b),
+ RgbaSignedComponentsExt = ((int)0X8c3c),
}
public enum ExtTextureArray
{
- FramebufferAttachmentTextureLayerExt = ((int)0X8cd4),
+ CompareRefDepthToTextureExt = ((int)0X884e),
+ MaxArrayTextureLayersExt = ((int)0X88ff),
+ Texture1DArrayExt = ((int)0X8c18),
ProxyTexture1DArrayExt = ((int)0X8c19),
Texture2DArrayExt = ((int)0X8c1a),
ProxyTexture2DArrayExt = ((int)0X8c1b),
TextureBinding1DArrayExt = ((int)0X8c1c),
- MaxArrayTextureLayersExt = ((int)0X88ff),
- Texture1DArrayExt = ((int)0X8c18),
- CompareRefDepthToTextureExt = ((int)0X884e),
TextureBinding2DArrayExt = ((int)0X8c1d),
+ FramebufferAttachmentTextureLayerExt = ((int)0X8cd4),
}
public enum ExtTextureBufferObject
{
TextureBufferExt = ((int)0X8c2a),
- TextureBufferDataStoreBindingExt = ((int)0X8c2d),
- TextureBindingBufferExt = ((int)0X8c2c),
- TextureBufferFormatExt = ((int)0X8c2e),
MaxTextureBufferSizeExt = ((int)0X8c2b),
+ TextureBindingBufferExt = ((int)0X8c2c),
+ TextureBufferDataStoreBindingExt = ((int)0X8c2d),
+ TextureBufferFormatExt = ((int)0X8c2e),
}
public enum ExtTextureCompressionLatc
{
CompressedLuminanceLatc1Ext = ((int)0X8c70),
CompressedSignedLuminanceLatc1Ext = ((int)0X8c71),
- CompressedSignedLuminanceAlphaLatc2Ext = ((int)0X8c73),
CompressedLuminanceAlphaLatc2Ext = ((int)0X8c72),
+ CompressedSignedLuminanceAlphaLatc2Ext = ((int)0X8c73),
}
public enum ExtTextureCompressionRgtc
{
- CompressedSignedRedGreenRgtc2Ext = ((int)0X8dbe),
CompressedRedRgtc1Ext = ((int)0X8dbb),
- CompressedRedGreenRgtc2Ext = ((int)0X8dbd),
CompressedSignedRedRgtc1Ext = ((int)0X8dbc),
+ CompressedRedGreenRgtc2Ext = ((int)0X8dbd),
+ CompressedSignedRedGreenRgtc2Ext = ((int)0X8dbe),
}
public enum ExtTextureSharedExponent
{
Rgb9E5Ext = ((int)0X8c3d),
- TextureSharedSizeExt = ((int)0X8c3f),
UnsignedInt5999RevExt = ((int)0X8c3e),
+ TextureSharedSizeExt = ((int)0X8c3f),
}
public enum NvDepthBufferFloat
{
DepthComponent32fNv = ((int)0X8dab),
- DepthBufferFloatModeNv = ((int)0X8daf),
- Float32UnsignedInt248RevNv = ((int)0X8dad),
Depth32fStencil8Nv = ((int)0X8dac),
+ Float32UnsignedInt248RevNv = ((int)0X8dad),
+ DepthBufferFloatModeNv = ((int)0X8daf),
}
public enum NvFragmentProgram4
@@ -8663,10 +9126,10 @@ namespace OpenTK.Graphics
public enum NvFramebufferMultisampleCoverage
{
- RenderbufferColorSamplesNv = ((int)0X8e10),
- MultisampleCoverageModesNv = ((int)0X8e12),
- MaxMultisampleCoverageModesNv = ((int)0X8e11),
RenderbufferCoverageSamplesNv = ((int)0X8cab),
+ RenderbufferColorSamplesNv = ((int)0X8e10),
+ MaxMultisampleCoverageModesNv = ((int)0X8e11),
+ MultisampleCoverageModesNv = ((int)0X8e12),
}
public enum ExtFramebufferSrgb
@@ -8681,11 +9144,11 @@ namespace OpenTK.Graphics
public enum NvParameterBufferObject
{
- VertexProgramParameterBufferNv = ((int)0X8da2),
- FragmentProgramParameterBufferNv = ((int)0X8da4),
- MaxProgramParameterBufferSizeNv = ((int)0X8da1),
- GeometryProgramParameterBufferNv = ((int)0X8da3),
MaxProgramParameterBufferBindingsNv = ((int)0X8da0),
+ MaxProgramParameterBufferSizeNv = ((int)0X8da1),
+ VertexProgramParameterBufferNv = ((int)0X8da2),
+ GeometryProgramParameterBufferNv = ((int)0X8da3),
+ FragmentProgramParameterBufferNv = ((int)0X8da4),
}
public enum ExtDrawBuffers2
@@ -8694,92 +9157,536 @@ namespace OpenTK.Graphics
public enum NvTransformFeedback
{
- MaxTransformFeedbackSeparateAttribsNv = ((int)0X8c8b),
- ActiveVaryingMaxLengthNv = ((int)0X8c82),
- VertexIdNv = ((int)0X8c7b),
- SeparateAttribsNv = ((int)0X8c8d),
- MaxTransformFeedbackSeparateComponentsNv = ((int)0X8c80),
- TransformFeedbackBufferModeNv = ((int)0X8c7f),
- TransformFeedbackBufferNv = ((int)0X8c8e),
+ BackPrimaryColorNv = ((int)0X8c77),
BackSecondaryColorNv = ((int)0X8c78),
- TransformFeedbackBufferBindingNv = ((int)0X8c8f),
+ TextureCoordNv = ((int)0X8c79),
+ ClipDistanceNv = ((int)0X8c7a),
+ VertexIdNv = ((int)0X8c7b),
+ PrimitiveIdNv = ((int)0X8c7c),
+ GenericAttribNv = ((int)0X8c7d),
+ TransformFeedbackAttribsNv = ((int)0X8c7e),
+ TransformFeedbackBufferModeNv = ((int)0X8c7f),
+ MaxTransformFeedbackSeparateComponentsNv = ((int)0X8c80),
+ ActiveVaryingsNv = ((int)0X8c81),
+ ActiveVaryingMaxLengthNv = ((int)0X8c82),
TransformFeedbackVaryingsNv = ((int)0X8c83),
- RasterizerDiscardNv = ((int)0X8c89),
TransformFeedbackBufferStartNv = ((int)0X8c84),
- InterleavedAttribsNv = ((int)0X8c8c),
TransformFeedbackBufferSizeNv = ((int)0X8c85),
TransformFeedbackRecordNv = ((int)0X8c86),
- PrimitiveIdNv = ((int)0X8c7c),
PrimitivesGeneratedNv = ((int)0X8c87),
- TransformFeedbackAttribsNv = ((int)0X8c7e),
- ActiveVaryingsNv = ((int)0X8c81),
- TextureCoordNv = ((int)0X8c79),
- MaxTransformFeedbackInterleavedAttribsNv = ((int)0X8c8a),
- BackPrimaryColorNv = ((int)0X8c77),
TransformFeedbackPrimitivesWrittenNv = ((int)0X8c88),
- GenericAttribNv = ((int)0X8c7d),
- ClipDistanceNv = ((int)0X8c7a),
+ RasterizerDiscardNv = ((int)0X8c89),
+ MaxTransformFeedbackInterleavedAttribsNv = ((int)0X8c8a),
+ MaxTransformFeedbackSeparateAttribsNv = ((int)0X8c8b),
+ InterleavedAttribsNv = ((int)0X8c8c),
+ SeparateAttribsNv = ((int)0X8c8d),
+ TransformFeedbackBufferNv = ((int)0X8c8e),
+ TransformFeedbackBufferBindingNv = ((int)0X8c8f),
}
public enum ExtBindableUniform
{
- MaxGeometryBindableUniformsExt = ((int)0X8de4),
- UniformBufferExt = ((int)0X8dee),
- MaxFragmentBindableUniformsExt = ((int)0X8de3),
MaxVertexBindableUniformsExt = ((int)0X8de2),
- UniformBufferBindingExt = ((int)0X8def),
+ MaxFragmentBindableUniformsExt = ((int)0X8de3),
+ MaxGeometryBindableUniformsExt = ((int)0X8de4),
MaxBindableUniformSizeExt = ((int)0X8ded),
+ UniformBufferExt = ((int)0X8dee),
+ UniformBufferBindingExt = ((int)0X8def),
}
public enum ExtTextureInteger
{
- Rgb8uiExt = ((int)0X8d7d),
- Rgba32iExt = ((int)0X8d82),
- Luminance16uiExt = ((int)0X8d7a),
- LuminanceAlpha32iExt = ((int)0X8d87),
- Intensity8iExt = ((int)0X8d91),
- Alpha32iExt = ((int)0X8d84),
- Intensity16uiExt = ((int)0X8d79),
- Rgba16uiExt = ((int)0X8d76),
- BgrIntegerExt = ((int)0X8d9a),
- BlueIntegerExt = ((int)0X8d96),
- Alpha32uiExt = ((int)0X8d72),
- Rgb32uiExt = ((int)0X8d71),
- BgraIntegerExt = ((int)0X8d9b),
- Rgba8iExt = ((int)0X8d8e),
- Rgb8iExt = ((int)0X8d8f),
- LuminanceAlpha8iExt = ((int)0X8d93),
- Luminance32iExt = ((int)0X8d86),
- RgbaIntegerExt = ((int)0X8d99),
- LuminanceAlpha32uiExt = ((int)0X8d75),
- Luminance8uiExt = ((int)0X8d80),
- Rgb16iExt = ((int)0X8d89),
- AlphaIntegerExt = ((int)0X8d97),
- Alpha8iExt = ((int)0X8d90),
- Luminance32uiExt = ((int)0X8d74),
- Luminance16iExt = ((int)0X8d8c),
- Alpha16uiExt = ((int)0X8d78),
- Rgba16iExt = ((int)0X8d88),
- Intensity32uiExt = ((int)0X8d73),
- LuminanceAlpha16iExt = ((int)0X8d8d),
- LuminanceAlpha16uiExt = ((int)0X8d7b),
- Rgb32iExt = ((int)0X8d83),
- RgbIntegerExt = ((int)0X8d98),
- Rgba8uiExt = ((int)0X8d7c),
- LuminanceAlphaIntegerExt = ((int)0X8d9d),
- GreenIntegerExt = ((int)0X8d95),
- Intensity8uiExt = ((int)0X8d7f),
- Intensity32iExt = ((int)0X8d85),
- LuminanceIntegerExt = ((int)0X8d9c),
- Luminance8iExt = ((int)0X8d92),
- Alpha8uiExt = ((int)0X8d7e),
Rgba32uiExt = ((int)0X8d70),
- RedIntegerExt = ((int)0X8d94),
- RgbaIntegerModeExt = ((int)0X8d9e),
+ Rgb32uiExt = ((int)0X8d71),
+ Alpha32uiExt = ((int)0X8d72),
+ Intensity32uiExt = ((int)0X8d73),
+ Luminance32uiExt = ((int)0X8d74),
+ LuminanceAlpha32uiExt = ((int)0X8d75),
+ Rgba16uiExt = ((int)0X8d76),
+ Rgb16uiExt = ((int)0X8d77),
+ Alpha16uiExt = ((int)0X8d78),
+ Intensity16uiExt = ((int)0X8d79),
+ Luminance16uiExt = ((int)0X8d7a),
+ LuminanceAlpha16uiExt = ((int)0X8d7b),
+ Rgba8uiExt = ((int)0X8d7c),
+ Rgb8uiExt = ((int)0X8d7d),
+ Alpha8uiExt = ((int)0X8d7e),
+ Intensity8uiExt = ((int)0X8d7f),
+ Luminance8uiExt = ((int)0X8d80),
LuminanceAlpha8uiExt = ((int)0X8d81),
+ Rgba32iExt = ((int)0X8d82),
+ Rgb32iExt = ((int)0X8d83),
+ Alpha32iExt = ((int)0X8d84),
+ Intensity32iExt = ((int)0X8d85),
+ Luminance32iExt = ((int)0X8d86),
+ LuminanceAlpha32iExt = ((int)0X8d87),
+ Rgba16iExt = ((int)0X8d88),
+ Rgb16iExt = ((int)0X8d89),
Alpha16iExt = ((int)0X8d8a),
Intensity16iExt = ((int)0X8d8b),
- Rgb16uiExt = ((int)0X8d77),
+ Luminance16iExt = ((int)0X8d8c),
+ LuminanceAlpha16iExt = ((int)0X8d8d),
+ Rgba8iExt = ((int)0X8d8e),
+ Rgb8iExt = ((int)0X8d8f),
+ Alpha8iExt = ((int)0X8d90),
+ Intensity8iExt = ((int)0X8d91),
+ Luminance8iExt = ((int)0X8d92),
+ LuminanceAlpha8iExt = ((int)0X8d93),
+ RedIntegerExt = ((int)0X8d94),
+ GreenIntegerExt = ((int)0X8d95),
+ BlueIntegerExt = ((int)0X8d96),
+ AlphaIntegerExt = ((int)0X8d97),
+ RgbIntegerExt = ((int)0X8d98),
+ RgbaIntegerExt = ((int)0X8d99),
+ BgrIntegerExt = ((int)0X8d9a),
+ BgraIntegerExt = ((int)0X8d9b),
+ LuminanceIntegerExt = ((int)0X8d9c),
+ LuminanceAlphaIntegerExt = ((int)0X8d9d),
+ RgbaIntegerModeExt = ((int)0X8d9e),
+ }
+
+ public enum GremedyFrameTerminator
+ {
+ }
+
+ public enum NvConditionalRender
+ {
+ QueryWaitNv = ((int)0X8e13),
+ QueryNoWaitNv = ((int)0X8e14),
+ QueryByRegionWaitNv = ((int)0X8e15),
+ QueryByRegionNoWaitNv = ((int)0X8e16),
+ }
+
+ public enum NvPresentVideo
+ {
+ FrameNv = ((int)0X8e26),
+ FieldsNv = ((int)0X8e27),
+ CurrentTimeNv = ((int)0X8e28),
+ NumFillStreamsNv = ((int)0X8e29),
+ PresentTimeNv = ((int)0X8e2a),
+ PresentDurationNv = ((int)0X8e2b),
+ }
+
+ public enum ExtTransformFeedback
+ {
+ TransformFeedbackVaryingMaxLengthExt = ((int)0X8c76),
+ TransformFeedbackBufferModeExt = ((int)0X8c7f),
+ MaxTransformFeedbackSeparateComponentsExt = ((int)0X8c80),
+ TransformFeedbackVaryingsExt = ((int)0X8c83),
+ TransformFeedbackBufferStartExt = ((int)0X8c84),
+ TransformFeedbackBufferSizeExt = ((int)0X8c85),
+ PrimitivesGeneratedExt = ((int)0X8c87),
+ TransformFeedbackPrimitivesWrittenExt = ((int)0X8c88),
+ RasterizerDiscardExt = ((int)0X8c89),
+ MaxTransformFeedbackInterleavedComponentsExt = ((int)0X8c8a),
+ MaxTransformFeedbackSeparateAttribsExt = ((int)0X8c8b),
+ InterleavedAttribsExt = ((int)0X8c8c),
+ SeparateAttribsExt = ((int)0X8c8d),
+ TransformFeedbackBufferExt = ((int)0X8c8e),
+ TransformFeedbackBufferBindingExt = ((int)0X8c8f),
+ }
+
+ public enum ExtDirectStateAccess
+ {
+ ProgramMatrixExt = ((int)0X8e2d),
+ TransposeProgramMatrixExt = ((int)0X8e2e),
+ ProgramMatrixStackDepthExt = ((int)0X8e2f),
+ }
+
+ public enum ExtVertexArrayBgra
+ {
+ Bgra = ((int)0X80e1),
+ }
+
+ public enum ExtTextureSwizzle
+ {
+ TextureSwizzleRExt = ((int)0X8e42),
+ TextureSwizzleGExt = ((int)0X8e43),
+ TextureSwizzleBExt = ((int)0X8e44),
+ TextureSwizzleAExt = ((int)0X8e45),
+ TextureSwizzleRgbaExt = ((int)0X8e46),
+ }
+
+ public enum NvExplicitMultisample
+ {
+ SamplePositionNv = ((int)0X8e50),
+ SampleMaskNv = ((int)0X8e51),
+ SampleMaskValueNv = ((int)0X8e52),
+ TextureBindingRenderbufferNv = ((int)0X8e53),
+ TextureRenderbufferDataStoreBindingNv = ((int)0X8e54),
+ TextureRenderbufferNv = ((int)0X8e55),
+ SamplerRenderbufferNv = ((int)0X8e56),
+ IntSamplerRenderbufferNv = ((int)0X8e57),
+ UnsignedIntSamplerRenderbufferNv = ((int)0X8e58),
+ MaxSampleMaskWordsNv = ((int)0X8e59),
+ }
+
+ public enum NvTransformFeedback2
+ {
+ TransformFeedbackNv = ((int)0X8e22),
+ TransformFeedbackBufferPausedNv = ((int)0X8e23),
+ TransformFeedbackBufferActiveNv = ((int)0X8e24),
+ TransformFeedbackBindingNv = ((int)0X8e25),
+ }
+
+ public enum BlendEquationMode
+ {
+ FuncAdd = ((int)0X8006),
+ Min = ((int)0X8007),
+ Max = ((int)0X8008),
+ FuncSubtract = ((int)0X800a),
+ FuncReverseSubtract = ((int)0X800b),
+ }
+
+ public enum TextureEnvModeCombine
+ {
+ Add = ((int)0X0104),
+ Replace = ((int)0X1e01),
+ Modulate = ((int)0X2100),
+ Subtract = ((int)0X84e7),
+ AddSigned = ((int)0X8574),
+ Interpolate = ((int)0X8575),
+ Dot3Rgb = ((int)0X86ae),
+ Dot3Rgba = ((int)0X86af),
+ }
+
+ public enum TextureEnvModeSource
+ {
+ Texture = ((int)0X1702),
+ Texture0 = ((int)0X84c0),
+ Texture1 = ((int)0X84c1),
+ Texture2 = ((int)0X84c2),
+ Texture3 = ((int)0X84c3),
+ Texture4 = ((int)0X84c4),
+ Texture5 = ((int)0X84c5),
+ Texture6 = ((int)0X84c6),
+ Texture7 = ((int)0X84c7),
+ Texture8 = ((int)0X84c8),
+ Texture9 = ((int)0X84c9),
+ Texture10 = ((int)0X84ca),
+ Texture11 = ((int)0X84cb),
+ Texture12 = ((int)0X84cc),
+ Texture13 = ((int)0X84cd),
+ Texture14 = ((int)0X84ce),
+ Texture15 = ((int)0X84cf),
+ Texture16 = ((int)0X84d0),
+ Texture17 = ((int)0X84d1),
+ Texture18 = ((int)0X84d2),
+ Texture19 = ((int)0X84d3),
+ Texture20 = ((int)0X84d4),
+ Texture21 = ((int)0X84d5),
+ Texture22 = ((int)0X84d6),
+ Texture23 = ((int)0X84d7),
+ Texture24 = ((int)0X84d8),
+ Texture25 = ((int)0X84d9),
+ Texture26 = ((int)0X84da),
+ Texture27 = ((int)0X84db),
+ Texture28 = ((int)0X84dc),
+ Texture29 = ((int)0X84dd),
+ Texture30 = ((int)0X84de),
+ Texture31 = ((int)0X84df),
+ Constant = ((int)0X8576),
+ PrimaryColor = ((int)0X8577),
+ Previous = ((int)0X8578),
+ }
+
+ public enum TextureEnvModeOperandRgb
+ {
+ SrcColor = ((int)0X0300),
+ OneMinusSrcColor = ((int)0X0301),
+ SrcAlpha = ((int)0X0302),
+ OneMinusSrcAlpha = ((int)0X0303),
+ }
+
+ public enum TextureEnvModeOperandAlpha
+ {
+ SrcAlpha = ((int)0X0302),
+ OneMinusSrcAlpha = ((int)0X0303),
+ }
+
+ public enum TextureEnvModeScale
+ {
+ One = ((int)1),
+ Two = ((int)2),
+ Four = ((int)4),
+ }
+
+ public enum TextureUnit
+ {
+ Texture0 = ((int)0X84c0),
+ Texture1 = ((int)0X84c1),
+ Texture2 = ((int)0X84c2),
+ Texture3 = ((int)0X84c3),
+ Texture4 = ((int)0X84c4),
+ Texture5 = ((int)0X84c5),
+ Texture6 = ((int)0X84c6),
+ Texture7 = ((int)0X84c7),
+ Texture8 = ((int)0X84c8),
+ Texture9 = ((int)0X84c9),
+ Texture10 = ((int)0X84ca),
+ Texture11 = ((int)0X84cb),
+ Texture12 = ((int)0X84cc),
+ Texture13 = ((int)0X84cd),
+ Texture14 = ((int)0X84ce),
+ Texture15 = ((int)0X84cf),
+ Texture16 = ((int)0X84d0),
+ Texture17 = ((int)0X84d1),
+ Texture18 = ((int)0X84d2),
+ Texture19 = ((int)0X84d3),
+ Texture20 = ((int)0X84d4),
+ Texture21 = ((int)0X84d5),
+ Texture22 = ((int)0X84d6),
+ Texture23 = ((int)0X84d7),
+ Texture24 = ((int)0X84d8),
+ Texture25 = ((int)0X84d9),
+ Texture26 = ((int)0X84da),
+ Texture27 = ((int)0X84db),
+ Texture28 = ((int)0X84dc),
+ Texture29 = ((int)0X84dd),
+ Texture30 = ((int)0X84de),
+ Texture31 = ((int)0X84df),
+ }
+
+ public enum TextureCompareMode
+ {
+ CompareRefToTexture = ((int)0X884e),
+ CompareRToTexture = ((int)0X884e),
+ }
+
+ public enum FogPointerType
+ {
+ Float = ((int)0X1406),
+ Double = ((int)0X140a),
+ }
+
+ public enum PointParameterName
+ {
+ PointSizeMin = ((int)0X8126),
+ PointSizeMax = ((int)0X8127),
+ PointFadeThresholdSize = ((int)0X8128),
+ PointDistanceAttenuation = ((int)0X8129),
+ PointSpriteCoordOrigin = ((int)0X8ca0),
+ }
+
+ public enum QueryTarget
+ {
+ SamplesPassed = ((int)0X8914),
+ }
+
+ public enum GetQueryParam
+ {
+ QueryCounterBits = ((int)0X8864),
+ CurrentQuery = ((int)0X8865),
+ }
+
+ public enum GetQueryObjectParam
+ {
+ QueryResult = ((int)0X8866),
+ QueryResultAvailable = ((int)0X8867),
+ }
+
+ public enum BufferTarget
+ {
+ ArrayBuffer = ((int)0X8892),
+ ElementArrayBuffer = ((int)0X8893),
+ PixelPackBuffer = ((int)0X88eb),
+ PixelUnpackBuffer = ((int)0X88ec),
+ }
+
+ public enum BufferUsageHint
+ {
+ StreamDraw = ((int)0X88e0),
+ StreamRead = ((int)0X88e1),
+ StreamCopy = ((int)0X88e2),
+ StaticDraw = ((int)0X88e4),
+ StaticRead = ((int)0X88e5),
+ StaticCopy = ((int)0X88e6),
+ DynamicDraw = ((int)0X88e8),
+ DynamicRead = ((int)0X88e9),
+ DynamicCopy = ((int)0X88ea),
+ }
+
+ public enum BufferAccess
+ {
+ ReadOnly = ((int)0X88b8),
+ WriteOnly = ((int)0X88b9),
+ ReadWrite = ((int)0X88ba),
+ }
+
+ public enum BufferParameterName
+ {
+ BufferSize = ((int)0X8764),
+ BufferUsage = ((int)0X8765),
+ BufferAccess = ((int)0X88bb),
+ BufferMapped = ((int)0X88bc),
+ }
+
+ public enum BufferPointer
+ {
+ BufferMapPointer = ((int)0X88bd),
+ }
+
+ public enum ShaderType
+ {
+ FragmentShader = ((int)0X8b30),
+ VertexShader = ((int)0X8b31),
+ GeometryShaderExt = ((int)0X8dd9),
+ }
+
+ public enum ActiveUniformType
+ {
+ Int = ((int)0X1404),
+ Float = ((int)0X1406),
+ FloatVec2 = ((int)0X8b50),
+ FloatVec3 = ((int)0X8b51),
+ FloatVec4 = ((int)0X8b52),
+ IntVec2 = ((int)0X8b53),
+ IntVec3 = ((int)0X8b54),
+ IntVec4 = ((int)0X8b55),
+ Bool = ((int)0X8b56),
+ BoolVec2 = ((int)0X8b57),
+ BoolVec3 = ((int)0X8b58),
+ BoolVec4 = ((int)0X8b59),
+ FloatMat2 = ((int)0X8b5a),
+ FloatMat3 = ((int)0X8b5b),
+ FloatMat4 = ((int)0X8b5c),
+ Sampler1D = ((int)0X8b5d),
+ Sampler2D = ((int)0X8b5e),
+ Sampler3D = ((int)0X8b5f),
+ SamplerCube = ((int)0X8b60),
+ Sampler1DShadow = ((int)0X8b61),
+ Sampler2DShadow = ((int)0X8b62),
+ FloatMat2x3 = ((int)0X8b65),
+ FloatMat2x4 = ((int)0X8b66),
+ FloatMat3x2 = ((int)0X8b67),
+ FloatMat3x4 = ((int)0X8b68),
+ FloatMat4x2 = ((int)0X8b69),
+ FloatMat4x3 = ((int)0X8b6a),
+ Sampler1DArray = ((int)0X8dc0),
+ Sampler2DArray = ((int)0X8dc1),
+ Sampler1DArrayShadow = ((int)0X8dc3),
+ Sampler2DArrayShadow = ((int)0X8dc4),
+ }
+
+ public enum ActiveAttribType
+ {
+ Float = ((int)0X1406),
+ FloatVec2 = ((int)0X8b50),
+ FloatVec3 = ((int)0X8b51),
+ FloatVec4 = ((int)0X8b52),
+ FloatMat2 = ((int)0X8b5a),
+ FloatMat3 = ((int)0X8b5b),
+ FloatMat4 = ((int)0X8b5c),
+ }
+
+ public enum VertexAttribPointerType
+ {
+ Byte = ((int)0X1400),
+ UnsignedByte = ((int)0X1401),
+ Short = ((int)0X1402),
+ UnsignedShort = ((int)0X1403),
+ Int = ((int)0X1404),
+ UnsignedInt = ((int)0X1405),
+ Float = ((int)0X1406),
+ Double = ((int)0X140a),
+ }
+
+ public enum ShaderParameter
+ {
+ ShaderType = ((int)0X8b4f),
+ DeleteStatus = ((int)0X8b80),
+ CompileStatus = ((int)0X8b81),
+ InfoLogLength = ((int)0X8b84),
+ ShaderSourceLength = ((int)0X8b88),
+ }
+
+ public enum ProgramParameter
+ {
+ DeleteStatus = ((int)0X8b80),
+ LinkStatus = ((int)0X8b82),
+ ValidateStatus = ((int)0X8b83),
+ InfoLogLength = ((int)0X8b84),
+ AttachedShaders = ((int)0X8b85),
+ ActiveUniforms = ((int)0X8b86),
+ ActiveUniformMaxLength = ((int)0X8b87),
+ ActiveAttributes = ((int)0X8b89),
+ ActiveAttributeMaxLength = ((int)0X8b8a),
+ }
+
+ public enum VertexAttribParameter
+ {
+ ArrayEnabled = ((int)0X8622),
+ ArraySize = ((int)0X8623),
+ ArrayStride = ((int)0X8624),
+ ArrayType = ((int)0X8625),
+ CurrentVertexAttrib = ((int)0X8626),
+ ArrayNormalized = ((int)0X886a),
+ }
+
+ public enum VertexAttribPointerParameter
+ {
+ ArrayPointer = ((int)0X8645),
+ }
+
+ public enum DrawBuffersEnum
+ {
+ None = ((int)0),
+ FrontLeft = ((int)0X0400),
+ FrontRight = ((int)0X0401),
+ BackLeft = ((int)0X0402),
+ BackRight = ((int)0X0403),
+ Aux0 = ((int)0X0409),
+ Aux1 = ((int)0X040a),
+ Aux2 = ((int)0X040b),
+ Aux3 = ((int)0X040c),
+ }
+
+ public enum PointSpriteCoordOriginParameter
+ {
+ LowerLeft = ((int)0X8ca1),
+ UpperLeft = ((int)0X8ca2),
+ }
+
+ public enum TextureEnvModePointSprite
+ {
+ False = ((int)0),
+ True = ((int)1),
+ }
+
+ public enum ClampColorTarget
+ {
+ ClampVertexColor = ((int)0X891a),
+ ClampFragmentColor = ((int)0X891b),
+ ClampReadColor = ((int)0X891c),
+ }
+
+ public enum ClampColorMode
+ {
+ False = ((int)0),
+ FixedOnly = ((int)0X891d),
+ True = ((int)1),
+ }
+
+ public enum BlitFramebufferFilter
+ {
+ Nearest = ((int)0X2600),
+ Linear = ((int)0X2601),
+ }
+
+ public enum FramebufferAttachmentObjectType
+ {
+ None = ((int)0),
+ Texture = ((int)0X1702),
+ FramebufferDefault = ((int)0X8218),
+ Renderbuffer = ((int)0X8D41),
+ }
+
+ public enum FramebufferAttachmentComponentType
+ {
+ Int = ((int)0X1404),
+ Float = ((int)0X1406),
+ Index = ((int)0X8222),
+ UnsignedNormalized = ((int)0X8c17),
}
}